:root {
    --primary-violet: #acac5c;
    --accent-violet: #acac5c;
    --dark-background: #000000;
    --card-background: #1A1A1A;
    --light-text: #FFFFFF;
    --secondary-text: #ffffff;
    --border-color: #333333;
    --button-hover-bg: #acac5c;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-background);
    color: var(--light-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    font-size: 2.8em;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    color: var(--accent-violet);
    text-shadow: 0 0 10px rgba(255, 255, 144, 0.4);
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-violet);
    margin: 10px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-violet);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(255, 255, 144, 0.4);
}

.btn-primary:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 144, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-violet);
    border: 2px solid var(--accent-violet);
    box-shadow: 0 2px 10px rgba(255, 255, 144, 0.2);
}

.btn-secondary:hover {
    background-color: var(--accent-violet);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 144, 0.4);
}

header {
    background-color: var(--dark-background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-text);
}

.logo img {
    height: 70px;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px var(--accent-violet));
}

.logo h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5em;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-violet);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-violet);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-background);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-links.active li {
    margin: 10px 0;
    text-align: center;
}

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://zupimages.net/up/26/11/jsxc.png') no-repeat center center/cover;
    filter: brightness(0.6) grayscale(0.2);
    transform: scale(1.05);
    transition: transform 0.5s ease-out;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5em;
    margin-bottom: 15px;
    color: var(--light-text);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--secondary-text);
}

.hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.info-block {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 255, 144, 0.3);
    border-color: var(--primary-violet);
}

.info-block i {
    font-size: 3em;
    color: var(--accent-violet);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 144, 0.6);
}

.info-block h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--accent-violet);
    font-weight: 700;
}

.info-block p {
    color: var(--secondary-text);
    font-size: 1.05em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

.team-member-card {
    background-color: var(--card-background);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 255, 144, 0.5);
    border-color: var(--accent-violet);
}

.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-violet);
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 144, 0.6);
}

.team-member-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    color: var(--light-text);
    margin-bottom: 5px;
}

.team-member-card p {
    color: var(--accent-violet);
    font-size: 1.1em;
    font-weight: 600;
}

.stats-discord-section {
    background-color: var(--card-background);
    padding: 50px;
    margin-bottom: 60px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3.5em;
    color: var(--accent-violet);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2.2em;
    color: var(--light-text);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--secondary-text);
    font-size: 1.1em;
}

.rules-section {
    padding: 80px 0;
    text-align: center;
}

.rules-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.rules-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1em;
    min-width: 180px;
}

footer {
    background-color: var(--dark-background);
    padding: 40px 0;
    text-align: center;
    border-top: 2.5px solid var(--primary-violet);
    color: var(--secondary-text);
    font-size: 0.9em;
}

footer .footer-logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--accent-violet));
    margin-bottom: 20px;
}

footer .footer-links {
    margin-bottom: 20px;
}

footer .footer-links a {
    color: var(--secondary-text);
    text-decoration: none;
    margin: 0 18px;
    transition: color 0.3s ease;
    font-weight: 500;
}

footer .footer-links a:hover {
    color: var(--accent-violet);
}

.social-icons {
    margin-top: 15px;
}
.social-icons a {
    color: var(--secondary-text);
    font-size: 1.8em;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.2s ease;
}
.social-icons a:hover {
    color: var(--accent-violet);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .nav-links {
        margin-left: auto;
    }
    .header-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 20px;
    }
    .logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    .logo h1 {
        font-size: 2em;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 15px;
        background-color: var(--dark-background);
        position: absolute;
        left: 0;
        top: 100%;
        box-shadow: 0 8px 15px rgba(0,0,0,0.6);
        border-top: 1px solid var(--border-color);
        padding: 20px 0;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .hero h1 {
        font-size: 3em;
    }
    .hero p {
        font-size: 1em;
    }
    .hero .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    h2 {
        font-size: 2em;
    }
    .info-block, .team-member-card {
        padding: 20px;
    }
    .info-block h3, .team-member-card h3 {
        font-size: 1.5em;
    }
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
    .rules-buttons {
        flex-direction: column;
        gap: 20px;
    }
    .rules-buttons .btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 0.9em;
    }
    .btn {
        padding: 10px 18px;
        font-size: 0.9em;
    }

}
