* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00ff41;
    --secondary-green: #00cc33;
    --dark-green: #003d14;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    letter-spacing: 0.2rem;
}

.logo-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 0.3rem;
    margin-top: -0.3rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.gang-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gang-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    color: var(--primary-green);
    transition: all 0.3s ease;
    text-decoration: none;
}

.gang-social-link:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
}

.gang-social-link svg {
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.5));
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
}

.glitch {
    position: relative;
    color: var(--primary-green);
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.5),
        0 0 20px rgba(0, 255, 65, 0.3),
        0 0 30px rgba(0, 255, 65, 0.2);
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-top: 0.5rem;
}

.members-section {
    padding: 6rem 0;
    min-height: 100vh;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    letter-spacing: 0.3rem;
}

.title-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member-card {
    background: linear-gradient(145deg, var(--dark-gray), var(--medium-gray));
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.member-card:hover::before {
    left: 100%;
}

.member-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.member-avatar-container {
    position: relative;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--dark-gray);
    background-color: #747f8d;
}

.status-indicator.online {
    background-color: #43b581;
    box-shadow: 0 0 10px #43b581;
}

.status-indicator.idle {
    background-color: #faa61a;
    box-shadow: 0 0 10px #faa61a;
}

.status-indicator.dnd {
    background-color: #f04747;
    box-shadow: 0 0 10px #f04747;
}

.member-info {
    flex: 1;
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.member-discord {
    font-size: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-tag {
    color: var(--primary-green);
}

.member-role {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 65, 0.1));
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 1rem;
}

.member-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    color: var(--primary-green);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 255, 65, 0.15);
    border-color: var(--primary-green);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
}

.social-link svg {
    filter: drop-shadow(0 0 3px rgba(0, 255, 65, 0.4));
}

.member-activity {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.activity-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
}

.activity-text {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 500;
}

.loading {
    text-align: center;
    padding: 4rem;
    font-size: 1.5rem;
    color: var(--primary-green);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: linear-gradient(145deg, var(--dark-gray), var(--medium-gray));
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
}

.about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid rgba(0, 255, 65, 0.3);
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
}

.about-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.about-card-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-card-title,
.about-card-text {
    direction: rtl;
    text-align: center;
}

.footer {
    background: var(--dark-gray);
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

.footer-subtitle {
    font-size: 0.9rem;
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .gang-social {
        order: 2;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .title-line {
        width: 50px;
    }
}
