:root {
    --primary-color: #9f55ff;
    --secondary-color: #431f79;
    --background-color: #0d0c1d;
    --text-color: #e0e0e0;
    --dark-grey: #1a1a2e;
    --glow-effect: 0 0 5px var(--primary-color), 0 0 15px var(--primary-color), 0 0 30px var(--secondary-color);
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

.content-section {
    padding: 6rem 0;
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}
a {
    text-decoration: none;
    color: inherit;
}
/* HEADER & NAV */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(13, 12, 29, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 90%;
    margin: auto;
}

.logo {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 2rem;
    text-decoration: none;
    font-weight: 700;
}

.logo span {
    color: var(--primary-color);
    text-shadow: var(--glow-effect);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* LEGAL SECTION */
.legal-section {
    background: var(--dark-grey);
}

.legal-content {
    max-width: 800px;
    margin: auto;
}

.legal-content h3 {
    font-family: var(--font-primary);
    color: #fff;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.legal-content li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* THANKS SECTION */
.thanks-section {
    background: var(--dark-grey);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: auto;
}

.thanks-content p {
    margin-bottom: 1.5rem;
}

.thanks-content .cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    display: inline-block;
    margin: 1rem 0;
}

.thanks-content .cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.thanks-content ul {
    list-style: none;
    margin: 2rem 0;
}

.thanks-content li {
    margin-bottom: 1rem;
}

.thanks-content li i {
    margin-right: 1rem;
    color: var(--primary-color);
}

/* FOOTER */
footer {
    background: #222;
    color: #aaa;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.footer-logo a span {
    color: var(--primary-color);
    text-shadow: var(--glow-effect);
}

.footer-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-copy {
    font-size: 0.85rem;
    color: #777;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 70px;
        background: var(--dark-grey);
        height: 100vh;
        width: 60%;
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        margin: 30px 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .legal-content h3 {
        font-size: 1.5rem;
    }
}