:root {
    --bg-dark: #050301;
    --primary: #ff9100;
    --secondary: #ff5400;
    --glass-bg: rgba(255, 145, 0, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Panton', 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(5, 3, 1, 0.7), rgba(5, 3, 1, 0.9)), url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}


.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.2em;
    margin-bottom: -0.2em;
}

.navbar {
    position: fixed; 
    top: 1.5rem; 
    left: 50%; 
    transform: translateX(-50%);
    width: 90%; 
    max-width: 1100px;
    z-index: 100;
    padding: 0.8rem 2rem;
    background: rgba(5, 3, 1, 0.6);
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 145, 0, 0.2);
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.navbar.scrolled {
    background: rgba(5, 3, 1, 0.9);
    border-color: rgba(255, 145, 0, 0.4);
    box-shadow: 0 10px 40px rgba(255, 145, 0, 0.15);
}

.nav-container {
    display: flex; justify-content: space-between; align-items: center;
}

.logo img {
    height: 45px;
    transition: transform 0.3s ease;
}
.logo:hover img {
    transform: scale(1.05);
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-center a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.3rem;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-center a:hover::after {
    width: 100%;
}

.nav-center a:hover {
    opacity: 1;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 145, 0, 0.3);
}

.hamburger {
    display: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: var(--primary);
}

.btn-store {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white; 
    border: none; 
    padding: 0.7rem 1.8rem;
    border-radius: 30px; 
    cursor: pointer; 
    font-family: var(--font-main);
    font-weight: 700; 
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 145, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-store:hover {
    transform: translateY(-3px); 
    box-shadow: 0 10px 30px rgba(255, 145, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 800px;
    font-weight: 400;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 145, 0, 0.2);
}

.btn-glass:hover {
    background: rgba(255, 145, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 145, 0, 0.4);
    border-color: rgba(255, 145, 0, 0.6);
    color: var(--secondary);
}

.ip-box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 145, 0, 0.5);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 0 15px rgba(255, 145, 0, 0.4);
    transition: all 0.3s ease;
}

.ip-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 145, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.ip-box-text {
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
}

.ip-box-text strong {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-copy-ip {
    background: white;
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.btn-copy-ip:hover {
    background: var(--secondary);
    box-shadow: 0 0 20px var(--secondary);
    transform: scale(1.05);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
    animation: floatCharacter 6s ease-in-out infinite;
}

@keyframes floatCharacter {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.online {
    background: #00f5d4;
    box-shadow: 0 0 10px #00f5d4;
}

.dot.offline {
    background: #ff006e;
    box-shadow: 0 0 10px #ff006e;
}

.features {
    padding: 4rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.team-section {
    padding: 2rem 2rem 8rem; max-width: 1200px; margin: 0 auto; position: relative; z-index: 10;
}
.team-container {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem;
    justify-items: center;
}
.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px; padding: 3rem 2rem;
    box-shadow: var(--glass-shadow);
    text-align: center; width: 100%; max-width: 350px;
    transition: transform 0.4s ease;
}
.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
}
.team-avatar {
    width: 120px; height: 120px; border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.1);
}
.team-card h3 {
    color: white; font-size: 1.8rem; margin-bottom: 0.5rem;
}
.team-role {
    color: var(--primary); font-weight: 600; font-size: 1.1rem;
    text-transform: uppercase; letter-spacing: 1px;
}

.footer {
    padding: 2rem 2rem;
    background: transparent;
    position: relative;
    z-index: 10;
    margin-top: 5rem;
}

.footer-cta {
    background: linear-gradient(135deg, rgba(255, 145, 0, 0.1), rgba(255, 84, 0, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 145, 0, 0.2);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 145, 0, 0.4) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.footer-cta h2 {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.footer-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.brand-col p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 400px;
    line-height: 1.8;
}

.footer-col h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 1rem;
}

.links-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s;
    display: inline-block;
}

.links-col ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    color: white;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 145, 0, 0.3);
}

.footer-ip-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    color: white;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.text-page {
    padding: 8rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.text-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--glass-shadow);
    color: var(--text-muted);
}

.text-card h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -1px;
}

.rules-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-weight: 300;
}

.rules-section.accordion-item {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rules-section.accordion-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 145, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    color: var(--secondary);
    font-size: 1.6rem;
    margin: 0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    margin-left: auto;
    transition: transform 0.4s ease;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.rules-section.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 1.5rem;
    opacity: 0;
}

.rules-section.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 1;
}

.rules-section ul {
    padding-left: 0;
    list-style: none;
}

.rules-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--glass-border);
}

.rules-section li strong {
    color: white;
    margin-right: 5px;
}

.staff-note {
    font-style: italic;
    color: var(--primary);
    margin-top: 1rem;
}

.rules-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn-glass {
        width: 100%;
        justify-content: center;
    }

    .ip-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .brand-col p {
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .nav-center,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-center.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 1, 8, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-right.mobile-active {
        display: block;
        position: absolute;
        top: calc(100% + 200px);
        left: 0;
        width: 100%;
        text-align: center;
        padding-bottom: 1.5rem;
        background: rgba(3, 1, 8, 0.95);
        border-bottom: 1px solid var(--glass-border);
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}