/* -------------------------------------------------------------
   GAMING FRANCOPHONE - SITE VITRINE / LANDING PAGE
   Theme: Official Slate, Indigo (#667eea) and Violet (#9f7aea)
------------------------------------------------------------- */

/* Custom Properties (Site Colors Matching official Gatsby template) */
:root {
    --bg-color: #1a202c;
    --card-bg: rgba(45, 55, 72, 0.7);
    --card-bg-solid: #2d3748;
    --card-border: rgba(226, 232, 240, 0.1);
    --text-color: #cbd5e0;
    --text-light: #edf2f7;
    --text-muted: #718096;
    
    --primary-color: #667eea;
    --primary-light: #a3bffa;
    --primary-dark: #434190;
    --primary-glow: rgba(102, 126, 234, 0.35);
    
    --secondary-color: #9f7aea;
    --secondary-light: #d6bcfa;
    --secondary-dark: #553c9a;
    --secondary-glow: rgba(159, 122, 234, 0.3);
    
    --success-color: #48bb78;
    --success-glow: rgba(72, 187, 120, 0.4);
    
    --discord-blurple: #5865F2;
    --discord-dark: #313338;
    --discord-sidebar: #2B2D31;
    --discord-server-list: #1E1F22;
    --discord-input: #383A40;
    --discord-text: #dbdee1;
    --discord-text-muted: #949ba4;
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom Cursor */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: linear-gradient(rgba(26, 32, 44, 0.88), rgba(26, 32, 44, 0.96)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Selection */
::selection {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--card-bg-solid);
    border-radius: 4px;
    border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Background Decorative Glowing Orbs */
.glow-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    transition: var(--transition);
}
.glow-1 {
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}
.glow-2 {
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
}
.glow-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 80%);
}

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    transition-timing-function: ease-out;
}
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}
.custom-cursor.hover {
    width: 60px;
    height: 60px;
    border-color: var(--secondary-color);
    background-color: rgba(159, 122, 234, 0.1);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-cyan {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-glow);
}

/* Header & Navigation */
.header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    background-color: rgba(26, 32, 44, 0.7);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-glow);
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
}

.server-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(45, 55, 72, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--success-glow);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(72, 187, 120, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1.75rem;
    border-radius: 9999px;
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
    background-color: var(--text-light);
    color: var(--bg-color);
    border-color: var(--text-light);
    box-shadow: 0 6px 20px rgba(237, 242, 247, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-muted);
}
.btn-secondary:hover {
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
}

/* Sections Base */
section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    color: var(--text-color);
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 80vh;
    padding-top: 4rem;
}

.hero-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    padding: 0.4rem 1rem;
    background-color: rgba(102, 126, 234, 0.15);
    border: 1px solid var(--primary-color);
    color: var(--primary-light);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.25rem;
    width: 100%;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Glassmorphism Card Info in Hero */
.hero-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: var(--transition);
}
.hero-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 25px 50px var(--primary-glow);
}

.card-header {
    padding: 1rem 1.5rem;
    background-color: rgba(45, 55, 72, 0.5);
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dots {
    display: flex;
    gap: 0.4rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background-color: var(--danger-color); }
.dot.yellow { background-color: #dd6b20; }
.dot.green { background-color: var(--success-color); }

.tab-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.05);
    padding-bottom: 0.8rem;
}
.stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-val {
    font-weight: 600;
    color: var(--text-light);
}

.status-online {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--success-color);
}
.status-online i {
    font-size: 0.6rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Values Grid */
.grid {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(159, 122, 234, 0.2);
    box-shadow: 0 15px 30px var(--secondary-glow);
    background: rgba(45, 55, 72, 0.85);
}
.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    display: inline-block;
}
.value-card:hover .value-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.game-card {
    background-color: rgba(45, 55, 72, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.game-card:hover {
    border-color: var(--primary-color);
    background-color: var(--card-bg-solid);
    box-shadow: 0 10px 25px var(--primary-glow);
    transform: scale(1.03);
}

.game-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.game-card:hover .game-icon {
    color: var(--secondary-light);
    transform: rotate(5deg);
}

.game-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.game-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}
.game-tag.simulation { background-color: rgba(49, 130, 206, 0.2); color: #63b3ed; }
.game-tag.fps { background-color: rgba(229, 62, 62, 0.2); color: #feb2b2; }
.game-tag.sandbox { background-color: rgba(72, 187, 120, 0.2); color: #9ae6b4; }
.game-tag.action { background-color: rgba(214, 158, 46, 0.2); color: #fbd38d; }
.game-tag.racing { background-color: rgba(159, 122, 234, 0.2); color: #d6bcfa; }

.game-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* Discord Interface Mockup styling */
.discord-mockup-section {
    width: 100%;
}

.discord-mockup {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    height: 520px;
    background-color: var(--discord-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
}

.discord-sidebar {
    background-color: var(--discord-sidebar);
    border-right: 1px solid rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.discord-server-header {
    height: 48px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.discord-server-stats {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.server-stat-item {
    font-size: 0.82rem;
    color: var(--discord-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.server-stat-item i {
    font-size: 0.75rem;
    color: var(--discord-text-muted);
}

.discord-channels {
    flex: 1;
    padding: 0.75rem 0.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.channel-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--discord-text-muted);
    padding: 0.5rem 0.5rem 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.channel {
    padding: 0.45rem 0.5rem;
    border-radius: 4px;
    color: var(--discord-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.channel:hover {
    background-color: rgba(78, 80, 88, 0.3);
    color: var(--discord-text);
}
.channel.active {
    background-color: rgba(78, 80, 88, 0.6);
    color: var(--text-light);
    font-weight: 500;
}

.discord-chat {
    display: flex;
    flex-direction: column;
    background-color: var(--discord-dark);
}

.chat-header {
    height: 48px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-header-icons {
    display: flex;
    gap: 1rem;
    color: var(--discord-text-muted);
}
.chat-header-icons i:hover {
    color: var(--discord-text);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.message {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    flex-shrink: 0;
    position: relative;
}
.avatar.admin { background-color: var(--primary-color); }
.avatar.user1 { background-color: #e53e3e; }
.avatar.user2 { background-color: var(--secondary-color); }

.avatar.status-online::after,
.avatar.status-idle::after,
.avatar.status-dnd::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--discord-dark);
}
.avatar.status-online::after { background-color: var(--success-color); }
.avatar.status-idle::after { background-color: #dd6b20; }
.avatar.status-dnd::after { background-color: var(--danger-color); }

.message-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.username {
    font-weight: 600;
    color: var(--text-light);
}
.username.admin {
    color: var(--primary-light);
}
.username.staff {
    color: var(--secondary-light);
}

.bot-tag {
    font-size: 0.65rem;
    font-weight: 700;
    background-color: var(--discord-blurple);
    color: var(--text-light);
    padding: 0.1rem 0.25rem;
    border-radius: 3px;
    margin-left: 0.3rem;
    text-transform: uppercase;
}

.timestamp {
    font-size: 0.75rem;
    color: var(--discord-text-muted);
    margin-left: 0.5rem;
}

.welcome-box {
    background-color: rgba(45, 55, 72, 0.4);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.welcome-box h4 {
    color: var(--text-light);
    font-family: var(--font-display);
}
.welcome-box p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--discord-text);
}

.channel-mention {
    color: #c9cdfb;
    background-color: rgba(88, 101, 242, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-weight: 500;
}

.mention {
    color: var(--primary-light);
    background-color: rgba(102, 126, 234, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-weight: 500;
}

.chat-input-area {
    padding: 0 1rem 1.5rem 1rem;
}

.chat-input-wrapper {
    background-color: var(--discord-input);
    border-radius: 8px;
    height: 44px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--discord-text-muted);
}
.chat-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--discord-text);
    font-size: 0.9rem;
}
.chat-input-wrapper input::placeholder {
    color: var(--discord-text-muted);
}

.discord-members {
    background-color: var(--discord-sidebar);
    padding: 1rem 0.5rem;
    border-left: 1px solid rgba(0,0,0,0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-group {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--discord-text-muted);
    padding: 0 0.5rem;
    letter-spacing: 0.5px;
}

.member {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}
.member:hover {
    background-color: rgba(78, 80, 88, 0.3);
}

.member-info {
    display: flex;
    flex-direction: column;
}

.member-name {
    color: var(--discord-text-muted);
    font-weight: 500;
}
.member:hover .member-name {
    color: var(--text-light);
}
.member-name.admin { color: var(--primary-light) !important; }
.member-name.staff { color: var(--secondary-light) !important; }

.member-status {
    font-size: 0.7rem;
    color: var(--discord-text-muted);
}

/* Call To Action Section */
.cta-section {
    background: radial-gradient(circle at top right, rgba(159, 122, 234, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(102, 126, 234, 0.1), transparent),
                var(--card-bg-solid);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.invite-card {
    background-color: rgba(26, 32, 44, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 600px;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.invite-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.invite-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.invite-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-color);
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.indicator.online { background-color: var(--success-color); }
.indicator.members { background-color: var(--text-muted); }

/* Footer */
.footer {
    border-top: 1px solid var(--card-border);
    padding: 3rem 0;
    margin-top: auto;
    background-color: #151922;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Clipboard Copy Notification (Toast) */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--success-color);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 25px var(--success-glow);
    z-index: 1000;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Animations Scroll Reveal styling */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 868px) {
    .discord-mockup {
        grid-template-columns: 200px 1fr;
    }
    .discord-members {
        display: none;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        align-items: center;
    }
    .cta-group {
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .discord-mockup {
        grid-template-columns: 1fr;
    }
    .discord-sidebar {
        display: none;
    }
    .games-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    .invite-card {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .btn {
        width: 100%;
    }
}
