:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #2C3E50;
    --accent: #3498DB;
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    --dark: #1A1A2E;
    --darker: #0F0F1E;
    --light: #ECF0F1;
    --text: #FFFFFF;
    --text-muted: #BDC3C7;
    --border: rgba(255, 107, 53, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #0f0f1e;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* General Section */
.section {
    padding: 6rem 0;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInScale 1s ease forwards;
}

.hero-logo img {
    max-width: 400px;
    width: 90%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    opacity: 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-donate {
    background: linear-gradient(135deg, var(--success) 0%, #229954 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* Enhanced Donation Section */
.donate-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff6b35" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.donate-content {
    background: rgba(26, 26, 46, 0.95);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.donate-header {
    margin-bottom: 2rem;
}

.donate-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.donate-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.amount-card {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-card:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.amount-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.amount-label {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid #ff6b35;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #ff6b35;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.donate-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.donate-highlight {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.donate-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.donate-secondary {
    background: transparent;
    color: #ff6b35;
    padding: 1rem 2rem;
    border: 2px solid #ff6b35;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.donate-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.donate-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.donate-footer p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.donate-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid #27ae60;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.section-light {
    background: linear-gradient(135deg, #2C3E50 0%, var(--dark) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cards - Ultra Basic & Compact */
.content-card {
    background: #1a1a2e;
    border: 2px solid #ff6b35;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.content-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

/* Feature Grid - Compact */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: #1a1a2e;
    border: 2px solid #ff6b35;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: static;
}

.feature-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Launcher Cards - Compact */
.launcher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.launcher-card {
    background: #1a1a2e;
    border: 2px solid #ff6b35;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: static;
}

.launcher-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.launcher-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #2980B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.launcher-card:hover .launcher-icon {
    transform: scale(1.1) rotate(5deg);
}

.launcher-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: white;
}

.launcher-card p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.launcher-steps {
    text-align: left;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Rules Styling - Compact */
.rules-container {
    background: #1a1a2e;
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

/* Scroll indicator */
.rules-container::after {
    content: '↓ Scroll for more rules';
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: #ff6b35;
    font-size: 0.8rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    pointer-events: none;
    z-index: 10;
}

.rules-container:hover::after {
    opacity: 0.3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.rules-container h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.rules-container h3:first-child {
    margin-top: 0;
}

.rules-container h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.rules-container ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.rules-container li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.rules-container li:last-child {
    border-bottom: none;
}

.rules-container li::before {
    content: '▸';
    color: #ff6b35;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.rules-container p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ccc;
}

.rules-container strong {
    color: var(--primary);
    font-weight: 600;
}

/* Custom scrollbar for rules */
.rules-container::-webkit-scrollbar {
    width: 12px;
}

.rules-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin: 10px 0;
}

.rules-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b35, #e55a2b);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.rules-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e55a2b, #d44a1b);
    background-clip: content-box;
}

.rules-container::-webkit-scrollbar-corner {
    background: transparent;
}

/* Events Section - Using Content Cards */
.event-container {
    margin: 2rem 0;
}

.event-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
}

.event-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #e74c3c);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.event-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.event-time {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.event-content {
    padding: 0;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.event-content h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 168, 204, 0.1);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.event-content li:last-child {
    border-bottom: none;
}

/* Donators */

/* Donator Cards - Compact */
.donator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.donator-card {
    background: #1a1a2e;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
}

.donator-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.donator-card.vip {
    background: rgba(255, 215, 0, 0.15);
    border-color: #f39c12;
}

.donator-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.vip-badge {
    background: linear-gradient(135deg, var(--warning) 0%, #E67E22 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}

/* Discord Block - Compact */
.discord-block {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    background: #1a1a2e;
    border: 2px solid #ff6b35;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.discord-info h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.discord-info p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.discord-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.discord-info li {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.discord-widget iframe {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 15, 30, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .launcher-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .discord-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .event-container {
        padding: 1rem;
        margin: 1rem 0;
    }

    .event-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-section {
        padding: 1.5rem;
    }

    .event-intro-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .event-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .event-intro {
        padding: 1.5rem;
    }

    .donator-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .rules-container {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .rules-container h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.5rem;
    }

    .rules-container h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem;
    }

    .rules-container ul {
        padding-left: 1rem;
    }

    .rules-container li {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .discord-widget iframe {
        width: 100%;
        max-width: 400px;
    }

    .event-container {
        padding: 1.5rem;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-section {
        padding: 1.5rem;
    }

    .event-title {
        font-size: 1.8rem;
    }

    .event-intro {
        padding: 1.5rem;
    }

    .launcher-card {
        padding: 1.5rem;
    }

    .step {
        padding: 0.75rem 0;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .donator-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .launcher-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .rules-container {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .rules-container h3 {
        font-size: 1.1rem;
    }

    .rules-container h4 {
        font-size: 1rem;
    }

    .rules-container ul {
        padding-left: 0.5rem;
    }

    .rules-container li {
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .event-container {
        padding: 0.5rem;
        margin: 0.5rem 0;
    }

    .event-header {
        padding: 1.5rem 1rem 1rem;
        border-radius: 12px 12px 0 0;
    }

    .event-content {
        padding: 0;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }

    .event-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .event-content li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
        line-height: 1.4;
    }

    .event-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .event-time {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .donator-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Ensure content cards have proper width on mobile */
    .content-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }

    .discord-info h3 {
        font-size: 1.2rem;
    }

    .discord-info p {
        font-size: 0.95rem;
    }

    .discord-info ul {
        padding-left: 0.5rem;
    }

    .discord-info li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .launcher-card h3 {
        font-size: 1.2rem;
    }

    .launcher-card p {
        font-size: 0.9rem;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .step span {
        font-size: 0.85rem;
    }

    .donator-card {
        text-align: center;
        padding: 1rem 0.5rem;
    }

    .donator-icon {
        font-size: 1.2rem;
    }

    .vip-badge {
        font-size: 0.7rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo img {
        width: 40px;
        height: 40px;
    }

    .footer-social a {
        margin: 0 0.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.donate-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.donate-cta span {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

.donate-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white !important;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    transition: all 0.2s ease;
}

.donate-cta a:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
    background: linear-gradient(135deg, #E55A2B 0%, #FF6B35 100%);
}

/* Custom scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--darker);
}
