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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #0a0a1a;
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

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

.section {
    padding: 100px 0;
    position: relative;
}

/* ======= NAVBAR ======= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo i {
    color: #D4A84B;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #D4A84B;
}

.nav-links a.nav-cta {
    background: linear-gradient(135deg, #E97E50, #D4A84B);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-links a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 126, 80, 0.4);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ======= HERO ======= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 30%, #0D0221 60%, #1a0a2e 100%);
}

.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.3);
    color: #D4A84B;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, #D4A84B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #E97E50, #D4A84B);
    color: #fff;
    box-shadow: 0 4px 20px rgba(233, 126, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(233, 126, 80, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: #D4A84B;
    color: #D4A84B;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 1rem;
}

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

/* ======= SECTION HEADER ======= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: #D4A84B;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ======= WHY WORKS SECTION ======= */
.why-works {
    background: linear-gradient(180deg, #12082a, #0a0a1a);
}

.why-works-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-works-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.why-works-block p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-highlight {
    font-size: 1.15rem !important;
    color: #D4A84B !important;
    font-weight: 500;
}

/* ======= GAMES SECTION ======= */
.games {
    background: linear-gradient(180deg, #0a0a1a, #12082a);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 75, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.game-img {
    width: 198px;
    height: 198px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto 0;
    flex-shrink: 0;
    border: 3px solid rgba(212, 168, 75, 0.2);
    transition: border-color 0.4s ease;
}

.game-card:hover .game-img {
    border-color: rgba(212, 168, 75, 0.5);
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.game-card:first-child .game-img img {
    object-position: center 20%;
}

.game-card:hover .game-img img {
    transform: scale(1.1);
}

.game-info {
    padding: 25px;
    text-align: center;
}

.game-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.game-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ======= ABOUT SECTION ======= */
.about {
    background: linear-gradient(180deg, #12082a, #0a0a1a);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 75, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(233, 126, 80, 0.2), rgba(212, 168, 75, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #D4A84B;
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.about-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ======= VISION SECTION ======= */
.vision {
    background: linear-gradient(135deg, #0a0a1a, #1a0a2e);
}

.vision-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
}

.vision-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 25px;
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vision-features span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-features i {
    color: #D4A84B;
}

.vision-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

/* ======= PRICING ======= */
.pricing {
    background: linear-gradient(180deg, #1a0a2e, #0a0a1a);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 75, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: rgba(212, 168, 75, 0.3);
    background: rgba(212, 168, 75, 0.06);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E97E50, #D4A84B);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-icon {
    font-size: 2rem;
    color: #D4A84B;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4A84B;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-card ul li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.pricing-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #D4A84B;
    font-size: 0.7rem;
}

/* ======= RESULTS SECTION ======= */
.results {
    background: linear-gradient(180deg, #0a0a1a, #12082a);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.result-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 75, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.result-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E97E50, #D4A84B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.result-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.result-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ======= MOBILE CTA ======= */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #E97E50, #D4A84B);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(233, 126, 80, 0.3);
    letter-spacing: 0.5px;
    border: none;
}

/* ======= REVIEWS ======= */
.reviews {
    background: linear-gradient(180deg, #0a0a1a, #12082a);
}

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

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 75, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.review-icon {
    color: rgba(212, 168, 75, 0.3);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    flex-grow: 1;
}

.review-author {
    color: #D4A84B;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 15px;
    text-align: right;
}

/* ======= CONTACT FORM ======= */
.contact {
    background: linear-gradient(180deg, #12082a, #0a0a1a);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 45px 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4A84B;
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4A84B' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-group select option {
    background: #1a0a2e;
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 10px;
}

/* ======= FOOTER ======= */
.footer {
    background: #060612;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-logo i {
    color: #D4A84B;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

.footer h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a,
.footer-services a {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #D4A84B;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #E97E50, #D4A84B);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ======= REVEAL ANIMATION ======= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .games-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vision-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vision-img {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .burger {
        display: flex;
        z-index: 1001;
    }
    .mobile-cta {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
    .section {
        padding: 60px 0;
    }
    .games-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .game-img {
        width: 143px;
        height: 143px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .hero {
        padding: 100px 20px 60px;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .hero-badge {
        font-size: 0.75rem;
    }
}
