/* ============================================
   ScrapNode - Communaute Page Styles (Redesign)
   Matches index.html premium design language
   ============================================ */

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* --------------------------------------------------------------------------
   Page Header — Hero-like treatment
   -------------------------------------------------------------------------- */

.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    animation: floatOrb 8s ease-in-out infinite;
}

.page-header::before {
    width: 350px;
    height: 350px;
    background: rgba(88, 101, 242, 0.1);
    top: -80px;
    left: -60px;
}

.page-header::after {
    width: 300px;
    height: 300px;
    background: rgba(230, 126, 34, 0.08);
    bottom: -40px;
    right: -60px;
    animation-delay: -4s;
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -3px;
    line-height: 1.05;
}

.page-header h1 .gradient-text {
    background: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #E67E22 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.page-header p {
    font-size: 1.35rem;
    color: #95A5A6;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */

.stats-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(52, 73, 94, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 73, 94, 0.4);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 126, 34, 0.4);
    box-shadow: 0 15px 45px rgba(230, 126, 34, 0.12);
}

.stat-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.08);
}

.stat-card:nth-child(1) .stat-icon { background: linear-gradient(135deg, #E67E22, #D35400); }
.stat-card:nth-child(2) .stat-icon { background: linear-gradient(135deg, #3498DB, #2980B9); }
.stat-card:nth-child(3) .stat-icon { background: linear-gradient(135deg, #2ECC71, #27AE60); }
.stat-card:nth-child(4) .stat-icon { background: linear-gradient(135deg, #9B59B6, #8E44AD); }

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #E67E22;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #7F8C8D;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Scroll reveal + stagger */
.stat-card.scroll-hidden { opacity: 0; transform: translateY(25px); }
.stat-card.scroll-hidden.revealed { opacity: 1; transform: translateY(0); }
.stat-card:nth-child(1) { transition-delay: 0s; }
.stat-card:nth-child(2) { transition-delay: 0.08s; }
.stat-card:nth-child(3) { transition-delay: 0.16s; }
.stat-card:nth-child(4) { transition-delay: 0.24s; }

/* --------------------------------------------------------------------------
   Discord Section
   -------------------------------------------------------------------------- */

.discord-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.discord-card {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(114, 137, 218, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 28px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    transition: all 0.4s ease;
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.1);
}

.discord-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ECF0F1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.discord-content h2 span {
    color: #5865F2;
}

.discord-content p {
    color: #BDC3C7;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.discord-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 35px;
}

.discord-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discord-feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(88, 101, 242, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.discord-feature:hover .discord-feature-icon {
    transform: scale(1.08);
}

.discord-feature span {
    color: #ECF0F1;
    font-weight: 500;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.55);
}

.btn-discord svg {
    width: 24px;
    height: 24px;
}

/* Discord Preview */
.discord-preview {
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 20px;
    padding: 28px;
}

.discord-preview-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(52, 73, 94, 0.3);
    margin-bottom: 18px;
}

.discord-preview-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E67E22, #D35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.discord-preview-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ECF0F1;
}

.discord-preview-info p {
    color: #2ECC71;
    font-size: 0.85rem;
    margin: 0;
}

.discord-channels {
    list-style: none;
}

.discord-channels li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 8px;
    color: #7F8C8D;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 0.95rem;
}

.discord-channels li:hover {
    background: rgba(88, 101, 242, 0.08);
    color: #ECF0F1;
}

.discord-channels li.category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5D6D7E;
    padding: 18px 14px 8px;
    cursor: default;
}

.discord-channels li.category:hover {
    background: transparent;
    color: #5D6D7E;
}

/* Scroll reveal for discord */
.discord-card.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.discord-card.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Social Section
   -------------------------------------------------------------------------- */

.social-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ECF0F1;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

/* Social Cards */
.social-card {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(52, 73, 94, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 73, 94, 0.4);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Top gradient bar — animated */
.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-card.instagram::before {
    background: linear-gradient(90deg, #833AB4, #E1306C, #F77737);
}

.social-card.tiktok::before {
    background: linear-gradient(90deg, #00F2EA, #FF0050);
}

.social-card.youtube::before {
    background: linear-gradient(90deg, #FF0000, #282828);
}

.social-card:hover {
    transform: translateY(-8px);
}

.social-card.instagram:hover {
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 20px 60px rgba(225, 48, 108, 0.12);
}

.social-card.tiktok:hover {
    border-color: rgba(255, 0, 80, 0.4);
    box-shadow: 0 20px 60px rgba(255, 0, 80, 0.12);
}

.social-card.youtube:hover {
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.12);
}

.social-card-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-card:hover .social-card-icon {
    transform: scale(1.08);
}

.social-card.instagram .social-card-icon {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.social-card.tiktok .social-card-icon {
    background: linear-gradient(135deg, #00F2EA, #FF0050);
}

.social-card.youtube .social-card-icon {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-card-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.social-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ECF0F1;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.social-card p {
    color: #95A5A6;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-link {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid;
}

.social-card.instagram .social-link {
    border-color: #E1306C;
    color: #E1306C;
}

.social-card.instagram .social-link:hover {
    background: #E1306C;
    color: white;
    transform: translateY(-2px);
}

.social-card.tiktok .social-link {
    border-color: #FF0050;
    color: #FF0050;
}

.social-card.tiktok .social-link:hover {
    background: #FF0050;
    color: white;
    transform: translateY(-2px);
}

.social-card.youtube .social-link {
    border-color: #FF0000;
    color: #FF0000;
}

.social-card.youtube .social-link:hover {
    background: #FF0000;
    color: white;
    transform: translateY(-2px);
}

/* Scroll reveal + stagger */
.social-card.scroll-hidden { opacity: 0; transform: translateY(25px); }
.social-card.scroll-hidden.revealed { opacity: 1; transform: translateY(0); }
.social-grid .social-card:nth-child(1) { transition-delay: 0s; }
.social-grid .social-card:nth-child(2) { transition-delay: 0.1s; }
.social-grid .social-card:nth-child(3) { transition-delay: 0.2s; }

/* --------------------------------------------------------------------------
   Events Section
   -------------------------------------------------------------------------- */

.events-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.events-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.events-intro p {
    color: #95A5A6;
    font-size: 1.15rem;
    line-height: 1.7;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

/* Event Cards */
.event-card {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5), rgba(52, 73, 94, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 73, 94, 0.4);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Left accent bar — animated on hover */
.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.event-card:hover::before {
    transform: scaleY(1);
}

.event-card.pvp::before { background: #E74C3C; }
.event-card.build::before { background: #3498DB; }
.event-card.race::before { background: #2ECC71; }
.event-card.special::before { background: #9B59B6; }

.event-card:hover {
    transform: translateX(4px);
    border-color: rgba(52, 73, 94, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.event-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.event-card.pvp .event-badge {
    background: rgba(231, 76, 60, 0.15);
    color: #E74C3C;
}

.event-card.build .event-badge {
    background: rgba(52, 152, 219, 0.15);
    color: #3498DB;
}

.event-card.race .event-badge {
    background: rgba(46, 204, 113, 0.15);
    color: #2ECC71;
}

.event-card.special .event-badge {
    background: rgba(155, 89, 182, 0.15);
    color: #9B59B6;
}

.event-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ECF0F1;
    margin-bottom: 10px;
}

.event-card p {
    color: #95A5A6;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Scroll reveal + stagger */
.event-card.scroll-hidden { opacity: 0; transform: translateY(20px); }
.event-card.scroll-hidden.revealed { opacity: 1; transform: translateY(0); }
.events-grid .event-card:nth-child(1) { transition-delay: 0s; }
.events-grid .event-card:nth-child(2) { transition-delay: 0.08s; }
.events-grid .event-card:nth-child(3) { transition-delay: 0.16s; }
.events-grid .event-card:nth-child(4) { transition-delay: 0.24s; }

/* --------------------------------------------------------------------------
   Team Section
   -------------------------------------------------------------------------- */

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.08), rgba(211, 84, 0, 0.04));
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 28px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-intro h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ECF0F1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.team-intro p {
    color: #95A5A6;
    font-size: 1.15rem;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 95px;
    height: 95px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    border: 3px solid;
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.08);
}

.team-card.founder .team-avatar {
    background: linear-gradient(135deg, #E67E22, #D35400);
    border-color: #E67E22;
}

.team-card.mod .team-avatar {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    border-color: #3498DB;
}

.team-card.support .team-avatar {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-color: #2ECC71;
}

.team-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ECF0F1;
    margin-bottom: 5px;
}

.team-role {
    color: #7F8C8D;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.team-card.founder .team-role { color: #E67E22; }
.team-card.mod .team-role { color: #3498DB; }
.team-card.support .team-role { color: #2ECC71; }

/* Scroll reveal */
.team-section.scroll-hidden { opacity: 0; transform: translateY(30px); }
.team-section.scroll-hidden.revealed { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   CTA Section — Animated gradient border (like index)
   -------------------------------------------------------------------------- */

.cta-section {
    max-width: 900px;
    margin: 80px auto 100px;
    padding: 60px 40px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.97), rgba(15, 20, 25, 0.93));
    border: 2px solid transparent;
    transition: transform 0.3s;
    isolation: isolate;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg, #5865F2, #E67E22, #5865F2, #2ECC71);
    background-size: 300% 300%;
    z-index: -1;
    animation: borderGlow 4s ease infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.97), rgba(15, 20, 25, 0.93));
    z-index: -1;
}

.cta-section:hover {
    transform: scale(1.01);
}

.cta-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ECF0F1;
    margin-bottom: 18px;
    letter-spacing: -2px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #BDC3C7;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Buttons — Harmonized
   -------------------------------------------------------------------------- */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.55);
}

.btn-secondary {
    background: transparent;
    color: #ECF0F1;
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #34495E;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #E67E22;
    color: #E67E22;
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Footer Social
   -------------------------------------------------------------------------- */

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Scroll Reveal — Global classes
   -------------------------------------------------------------------------- */

.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cta-section.scroll-hidden {
    opacity: 0;
    transform: translateY(30px) scale(1);
}

.cta-section.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   Responsive — 1024px
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 4rem;
    }

    .discord-content h2 {
        font-size: 2.5rem;
    }

    .section-title,
    .team-intro h2 {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   Responsive — 768px
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .page-header {
        padding: 70px 24px 60px;
    }

    .page-header::before,
    .page-header::after {
        display: none;
    }

    .page-header h1 {
        font-size: 2.8rem;
        letter-spacing: -2px;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .discord-card {
        grid-template-columns: 1fr;
        padding: 35px 24px;
    }

    .discord-content h2 {
        font-size: 2rem;
    }

    .discord-features {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title,
    .team-intro h2 {
        font-size: 2.2rem;
    }

    .cta-section {
        margin-left: 16px;
        margin-right: 16px;
        padding: 40px 24px;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .team-section {
        padding: 40px 24px;
    }
}

/* --------------------------------------------------------------------------
   Responsive — 480px
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .page-header p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-discord {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-section h2,
    .section-title,
    .team-intro h2 {
        font-size: 1.8rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card:hover {
        transform: translateX(2px);
    }
}
