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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(180deg, var(--bg1, #0b050c), var(--bg2, #15061a));
    color: var(--white, #fff);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent1, #ff7b00), var(--accent2, #ffb74d));
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.logo span {
    color: white;
    font-weight: 800;
    font-size: 20px;
}

.brand-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: none;
    gap: 8px;
    align-items: center;
    margin-right: 4px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.2s ease;
    color: var(--white, #fff);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.download-btn {
    background: linear-gradient(90deg, var(--accent1, #ff7b00), var(--accent2, #ffb74d));
    padding: 8px 14px;
    border-radius: 10px;
    color: #111;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 80;
}

.mobile-menu.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
}

.mobile-menu-content {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 75%;
    max-width: 300px;
    background: linear-gradient(180deg, #0e0710, #15061a);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.mobile-menu.show .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-content a {
    width: 100%;
    display: block;
    padding: 14px 12px;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.06);
    color: var(--white, #fff);
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
}

.mobile-menu-content a:hover {
    transform: translateX(6px);
    background: linear-gradient(90deg, rgba(255, 123, 0, 0.06), rgba(255, 255, 255, 0.02));
    color: var(--accent2, #ffb74d);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 1rem 3rem;
}

.kicker {
    font-weight: 700;
    color: var(--accent2, #ffb74d);
    background: rgba(255, 123, 0, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin-bottom: 10px;
    font-weight: 900;
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--muted, #c0b5ca);
    font-size: 1rem;
    margin-bottom: 16px;
    max-width: 620px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent1, #ff7b00), var(--accent2, #ffb74d));
    padding: 12px;
    border-radius: 10px;
    color: #111;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.25);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.35);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    color: var(--muted, #c0b5ca);
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Visual Section */
.visual {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem 4rem;
}

.visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.phone-container {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.phone-frame img {
    width: 100%;
    display: block;
}

.withdraw-card {
    background: var(--card, rgba(255, 255, 255, 0.03));
    border-radius: 12px;
    padding: 1rem;
    width: 90%;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.withdraw-card h4 {
    margin-bottom: 8px;
    font-weight: 800;
    color: white;
}

.feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feed-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 0;
}

.feed-item:last-child {
    border-bottom: 0;
}

.feed-item .right {
    color: var(--accent2, #ffb74d);
    font-weight: 700;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--card, rgba(255, 255, 255, 0.03));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent2, #ffb74d);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted, #c0b5ca);
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
}

/* Features Section */
.features-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card, rgba(255, 255, 255, 0.03));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent1, #ff7b00);
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted, #c0b5ca);
    font-size: 0.9rem;
}

/* How to Play Section */
.how-to-play {
    background: var(--card, rgba(255, 255, 255, 0.03));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent1, #ff7b00), var(--accent2, #ffb74d));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--muted, #c0b5ca);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card, rgba(255, 255, 255, 0.03));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent1, #ff7b00), var(--accent2, #ffb74d));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #111;
    margin-right: 1rem;
}

.testimonial-info .name {
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.rating {
    color: #ffd700;
}

.star {
    font-size: 1rem;
}

.testimonial-text {
    color: var(--muted, #c0b5ca);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-amount {
    font-weight: 700;
    color: var(--accent2, #ffb74d);
}

/* Screenshots Section */
.screenshots {
    padding: 3rem 0;
    background: var(--card, rgba(255, 255, 255, 0.03));
}

.slider-container {
    position: relative;
    max-width: 28rem;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.slider-nav {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

input[type="radio"][name="slider"] {
    display: none;
}

input[type="radio"][name="slider"]:nth-of-type(1):checked ~ .slider {
    transform: translateX(0);
}

input[type="radio"][name="slider"]:nth-of-type(2):checked ~ .slider {
    transform: translateX(-100%);
}

input[type="radio"][name="slider"]:nth-of-type(3):checked ~ .slider {
    transform: translateX(-200%);
}

input[type="radio"][name="slider"]:nth-of-type(1):checked ~ .slider-nav .nav-dot:nth-of-type(1) {
    background: var(--accent1, #ff7b00);
}

input[type="radio"][name="slider"]:nth-of-type(2):checked ~ .slider-nav .nav-dot:nth-of-type(2) {
    background: var(--accent1, #ff7b00);
}

input[type="radio"][name="slider"]:nth-of-type(3):checked ~ .slider-nav .nav-dot:nth-of-type(3) {
    background: var(--accent1, #ff7b00);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card, rgba(255, 255, 255, 0.03));
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 1.5rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question .faq-icon {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--muted, #c0b5ca);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg1, #0b050c);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: var(--white, #fff);
}

.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer p {
    color: white;
    margin-bottom: 0.5rem;
}

.admin-link {
    color: var(--accent1, #ff7b00);
    font-weight: bold;
    transition: color 0.3s ease;
}

.admin-link:hover {
    color: var(--accent2, #ffb74d);
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .social-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: row;
        max-width: none;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .visual-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .phone-frame {
        width: 300px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}