:root {
    --primary-color: #00ff88;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --secondary-color: #7000ff;
    --bg-dark: #0a0e17;
    --bg-card: #151a25;
    --bg-card-hover: #1c2230;
    --text-main: #ffffff;
    --text-secondary: #a0aec0;
    --gradient-main: linear-gradient(135deg, #00ff88 0%, #00b8ff 100%);
    --gradient-text: linear-gradient(to right, #00ff88, #00b8ff);
    --nav-height: 80px;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Warning Bar --- */
.top-warning-bar {
    background: #000;
    color: #666;
    text-align: center;
    padding: 8px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #222;
}

.top-warning-bar i {
    color: #ffcc00;
    margin-right: 5px;
}

/* --- Navbar --- */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: var(--nav-height);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.brand-logo span {
    color: transparent;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-links-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.menu-link {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.menu-link:hover, .menu-link.active {
    color: var(--primary-color);
}

.cta-button-small {
    background: var(--gradient-main);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow);
}

/* Mobile Nav Triggers */
.nav-hidden-input {
    display: none;
}

.nav-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.nav-burger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
}

/* --- Hero Section --- */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15), transparent 70%);
    z-index: -1;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.update-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.main-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.main-headline span {
    color: transparent;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 90%;
}

.action-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.primary-btn {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    border: 2px solid #fff;
}

.primary-btn:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.secondary-btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-icons {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-icons i {
    color: var(--primary-color);
    margin-right: 8px;
}

.image-frame-abstract {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.float-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite;
}

.float-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.float-card strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

/* --- Stats Bar --- */
.stats-bar {
    background: #0f141e;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Benefits Section --- */
.benefits-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.cards-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.info-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.wide-card {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 30px;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
}

.wide-card .icon-box {
    margin-bottom: 0;
    min-width: 60px;
}

.color-1 { color: #ff0055; }
.color-2 { color: #00ff88; }
.color-3 { color: #00b8ff; }
.color-4 { color: #ffcc00; }
.color-5 { color: #ff0000; }

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Featured Operator --- */
.featured-operator {
    padding: 60px 0;
}

.operator-wrapper {
    background: linear-gradient(to right, #1a202c, #161b25);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
}

.ribbon {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
}

.operator-visual {
    width: 45%;
    position: relative;
}

.operator-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.operator-details {
    padding: 50px;
    width: 55%;
}

.operator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.operator-header h3 {
    font-size: 2rem;
}

.stars-display i {
    color: #ffcc00;
    margin-right: 2px;
}

.operator-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.pros-cons-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.pros-cons-list li {
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pros-cons-list i {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    padding: 4px;
    border-radius: 50%;
}

.cta-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    background: var(--primary-color);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 0 20px var(--primary-glow);
}

.play-btn:hover {
    transform: scale(1.05);
    background: #fff;
}

.terms-text {
    font-size: 0.8rem;
    color: #666;
}

/* --- Mission Section --- */
.mission-section {
    padding: 100px 0;
}

.mission-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.values-list {
    margin-top: 30px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
}

.value-item {
    margin-bottom: 10px;
    color: var(--text-main);
}

.value-item strong {
    color: var(--secondary-color);
}

.mission-img-wrapper {
    flex: 1;
    position: relative;
}

.mission-img-wrapper img {
    border-radius: 20px;
    opacity: 0.8;
}

.badge-exp {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--bg-card);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid var(--secondary-color);
}

/* --- Reviews --- */
.community-feedback {
    padding: 100px 0;
    background: #0f141e;
}

.reviews-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-bubble {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
}

.review-bubble::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
    font-family: serif;
}

.reviewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
}

.date-posted {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #555;
    text-align: right;
}

/* --- Warning Box --- */
.legal-warning-box {
    padding: 50px 0;
}

.warning-content {
    background: rgba(255, 0, 85, 0.05);
    border: 1px solid rgba(255, 0, 85, 0.3);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 2rem;
    color: #ff0055;
}

.warning-text h4 {
    color: #ff0055;
    margin-bottom: 10px;
}

.warning-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.small-disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* --- Footer --- */
.main-footer {
    background: #000;
    padding-top: 80px;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--primary-color);
}

.brand-col p {
    color: #666;
    max-width: 300px;
}

.footer-col h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #666;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom-bar {
    border-top: 1px solid #222;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 0.85rem;
}

.age-restriction span {
    background: #222;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .nav-links-container {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: 0;
        background: var(--bg-card);
        flex-direction: column;
        overflow: hidden;
        transition: height 0.3s ease;
        padding: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 30px;
    }

    .nav-burger {
        display: flex;
    }

    #nav-toggler:checked ~ .nav-links-container {
        height: 100vh;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .action-group, .trust-icons {
        justify-content: center;
    }

    .hero-img {
        transform: none;
        margin-top: 30px;
    }

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

    .wide-card {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .operator-wrapper {
        flex-direction: column;
    }

    .operator-visual, .operator-details {
        width: 100%;
    }

    .operator-details {
        padding: 30px;
    }

    .mission-flex {
        flex-direction: column-reverse;
    }

    .reviews-row {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 576px) {
    .main-headline {
        font-size: 2.2rem;
    }

    .stats-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .pros-cons-list ul {
        grid-template-columns: 1fr;
    }

    .cta-area {
        flex-direction: column;
    }
    
    .play-btn {
        width: 100%;
        text-align: center;
    }
}