.hero-visual { display: none; }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #4CAF50;
    --secondary-green: #66BB6A;
    --accent-green: #81C784;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --card-bg: rgba(76, 175, 80, 0.12);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --text-accent: #64B5F6;
    --gradient-primary: linear-gradient(135deg, #4CAF50, #66BB6A, #81C784);
    --gradient-secondary: linear-gradient(135deg, #2E7D32, #4CAF50);
    --shadow-primary: 0 6px 24px rgba(76, 175, 80, 0.25);
    --shadow-secondary: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 15px rgba(76, 175, 80, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Media defaults: make media scale nicely */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2e1a 50%, #0a0a0a 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 70%;
    left: 60%;
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* Quote Banner */
.quote-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    padding: 0.5rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
    animation: slideDown 0.8s ease-out;
}

.quote-text {
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

.logo-img:hover {
    transform: rotate(360deg) scale(1.15);
    box-shadow: var(--shadow-primary);
    border-color: var(--accent-green);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(100%);
    transition: var(--transition);
}

.nav-link:hover::before {
    transform: translateY(0);
}

.nav-link:hover {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 2rem;
    padding-top: 100px; /* Account for navbar */
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

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

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(76, 175, 80, 0.5); }
    to { text-shadow: 0 0 50px rgba(76, 175, 80, 0.8), 0 0 70px rgba(76, 175, 80, 0.3); }
}

.hero-quote {
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.quote-text-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    background: linear-gradient(135deg, #4CAF50, #66BB6A, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    background-color: rgba(76, 175, 80, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    font-weight: 300;
    line-height: 1.5;
}

/* Hero: Team chips and CTAs */
.team-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: var(--shadow-secondary);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.chip:hover {
    transform: translateY(-2px);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-primary);
}

.chip-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

.chip-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.chip-name {
    font-weight: 700;
}

.chip-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero expanded member cards */
.hero-members {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-members {
        grid-template-columns: repeat(3, 1fr);
    }
}

.member-card.hero {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    display: flex;
    gap: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-secondary);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.member-card.hero .member-avatar .avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    object-fit: cover;
}

.member-card.hero .member-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* Staggered animation */
.member-card.hero:nth-child(1) { transition-delay: 0.1s; }
.member-card.hero:nth-child(2) { transition-delay: 0.25s; }
.member-card.hero:nth-child(3) { transition-delay: 0.4s; }

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.btn {
    position: relative;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    min-height: 56px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

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

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

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    animation: floatCard 6s ease-in-out infinite;
    min-width: 140px;
    box-shadow: var(--shadow-secondary);
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-primary);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
    transform: rotate(45deg);
}

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

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
}

.section-quote {
    margin: 1.5rem 0;
    text-align: center;
}

.quote-text-medium {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary-green);
    border-radius: 15px;
    background-color: rgba(76, 175, 80, 0.08);
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.15);
    display: inline-block;
    animation: pulse 3s ease-in-out infinite;
}

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

.section-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Members Section */
.members {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.member-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-green);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    transition: var(--transition);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-card:hover .member-avatar {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.member-card:hover .avatar-image {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.member-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.member-instagram:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.member-instagram i {
    font-size: 1.1rem;
    color: #E4405F;
    text-shadow: 0 0 8px rgba(228, 64, 95, 0.4);
}

.instagram-username {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.member-role {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.member-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.skill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Gaming Section */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-secondary);
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.game-image-container {
    position: relative;
    height: 180px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-image {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
    text-align: center;
    letter-spacing: 0.5px;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: center;
    font-size: 0.9rem;
    flex: 1;
}

.game-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: auto;
}

.stat {
    text-align: center;
    padding: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-accent);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 8px rgba(100, 181, 246, 0.4);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Development Section */
.development {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.tech-icon {
    margin-bottom: 1.5rem;
}

.tech-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.tech-card:hover .tech-image {
    transform: scale(1.05);
}

.tech-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.tech-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
    flex: 1;
}

.tech-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-top: auto;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0;
    transition: width 2s ease-out;
}

.progress-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--primary-green);
    min-width: 35px;
    font-size: 0.9rem;
}

/* Discord Section */
.discord {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.12) 0%, rgba(88, 101, 242, 0.08) 100%);
}

.discord-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.discord-icon {
    font-size: 3.5rem;
    color: #7289da;
    text-shadow: 0 0 15px rgba(114, 137, 218, 0.4);
}

.discord-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #7289da;
    letter-spacing: -1px;
    text-shadow: 0 0 15px rgba(114, 137, 218, 0.3);
}

.discord-quote {
    margin: 1.5rem 0;
    text-align: center;
}

.discord-quote .quote-text-medium {
    background: linear-gradient(135deg, #7289da, #5865f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: #7289da;
    background-color: rgba(114, 137, 218, 0.08);
    box-shadow: 0 3px 10px rgba(114, 137, 218, 0.15);
}

.discord-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.discord-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(114, 137, 218, 0.08);
    border: 1px solid rgba(114, 137, 218, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    transition: var(--transition);
    box-shadow: var(--shadow-secondary);
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(114, 137, 218, 0.2);
}

.feature i {
    font-size: 1.3rem;
    color: #7289da;
    width: 20px;
    text-shadow: 0 0 8px rgba(114, 137, 218, 0.4);
}

.btn-discord {
    background: linear-gradient(45deg, #7289da, #5865f2);
    color: #fff;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.5);
}

.discord-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(114, 137, 218, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(114, 137, 218, 0.15);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-secondary);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(114, 137, 218, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: #7289da;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(114, 137, 218, 0.4);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #7289da;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 8px rgba(114, 137, 218, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    box-shadow: var(--shadow-glow);
}

.footer-logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.footer-quote {
    margin-bottom: 1rem;
    text-align: center;
}

.quote-text-small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-green);
    border-radius: 10px;
    background-color: rgba(76, 175, 80, 0.05);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
    display: inline-block;
}

.footer-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-note {
    color: var(--primary-green);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        z-index: 1001;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2.5rem 1.5rem;
        transform: translateY(-100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-card {
        min-width: 120px;
        padding: 1.5rem;
    }
    
    .floating-card i {
        font-size: 2rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }
    
    .discord-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .discord-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .members-grid,
    .games-showcase,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 0 1.5rem;
        padding-top: 84px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        min-width: 100px;
        padding: 1rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .quote-text-large {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }
    
    .quote-text-medium {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .quote-text-small {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .quote-text {
        font-size: 0.9rem;
    }
    
    .members-grid,
    .games-showcase,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-card,
    .game-card,
    .tech-card {
        padding: 2rem;
    }
    
    .discord-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Selection */
::selection {
    background: var(--primary-green);
    color: #000;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

a {
    text-decoration: none;
}