* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Additional protection styles */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

:root {
    /* Light Theme Color Palette */
    --primary-gold: #b8860b;
    --secondary-gold: #996515;
    --light-gold: rgba(184, 134, 11, 0.9);
    --dark-gold: #c8960c;
    --text-primary: #1a1a1a;
    --text-secondary: #444444;
    --background-dark: #f8f7f2;
    --background-darker: #ffffff;
    --accent-gold: rgba(184, 134, 11, 0.08);
    /* extra tokens */
    --card-bg: #ffffff;
    --card-border: rgba(184, 134, 11, 0.18);
    --section-alt: #fdf9f0;
    --shadow-gold: rgba(184, 134, 11, 0.15);
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f8f7f2;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
}

/* ── Google Font assignments ── */
/* Berkshire Swash  → logo, hero h1, main section headings */
/* Metamorphous     → sub-headings, card titles, step titles */
/* Syne Mono        → gift code, monospace values, badges */

.logo-text,
.hero h1,
.section > h2,
.mobile-frames-section > h2 {
    font-family: 'Berkshire Swash', serif;
    letter-spacing: 0.5px;
}

.feature-card h3,
.game-card h3,
.security-card h3,
.testimonial-card h3,
.bonus-card-body h3,
.step h3,
.faq-item h3,
.section h3 {
    font-family: 'Metamorphous', serif;
}

.giftcode-value,
.footer-nav h4 {
    font-family: 'Syne Mono', monospace;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
    z-index: 1;
}

.floating-coin {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    top: 20%;
    left: -50px;
    animation-delay: 0s;
}

.floating-diamond {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transform: rotate(45deg);
    top: 50%;
    left: -40px;
    animation-delay: 5s;
}

.floating-star {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    top: 80%;
    left: -30px;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translateX(-100px) translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(360deg);
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.97);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #b8860b, #c8960c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Golden Buttons */
.golden-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #b8860b, #996515);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.golden-btn:hover {
    background: linear-gradient(135deg, #996515, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
    animation: none;
    color: #ffffff;
}

.golden-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.golden-btn:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
    }
    50% {
        box-shadow: 0 8px 35px rgba(184, 134, 11, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
    }
}

/* Carousel Styles */
.carousel-section {
    position: relative;
    padding: 4rem 0;
    background: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(184,134,11,0.1);
    border-bottom: 1px solid rgba(184,134,11,0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: visible;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    width: 700px;
    height: 400px;
    left: 50%;
    transition: all 0.5s ease;
    opacity: 0;
    border-radius: 15px;
    overflow: hidden;
    transform-origin: center center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
}

.carousel-slide.current-slide {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    z-index: 5;
}

.carousel-slide.prev {
    opacity: 0.7;
    transform: translateX(-110%) scale(0.85);
    z-index: 4;
}

.carousel-slide.next {
    opacity: 0.7;
    transform: translateX(10%) scale(0.85);
    z-index: 4;
}

.carousel-slide.prev-hidden {
    opacity: 0.3;
    transform: translateX(-170%) scale(0.7);
    z-index: 3;
}

.carousel-slide.next-hidden {
    opacity: 0.3;
    transform: translateX(70%) scale(0.7);
    z-index: 3;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-primary);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background: rgba(255,215,0,0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-button {
    left: 2%;
}

.next-button {
    right: 2%;
}

.carousel-button svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .carousel-slide {
        width: 550px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 1.2rem 0;
        min-height: auto;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel {
        height: 280px;
        overflow: hidden;
    }

    .carousel-slide {
        width: min(360px, calc(100vw - 2rem));
        max-width: calc(100vw - 2rem);
        height: 220px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h3 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.8rem;
    }

    .header {
        padding: 0.4rem 0;
    }

    .logo-img {
        height: 34px;
    }

    .header-content {
        padding: 0 0.75rem;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .header-nav-btns {
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0.4rem;
    }
}

/* Content Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #b8860b, #c8960c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(184, 134, 11, 0.18);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 134, 11, 0.5);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.12);
}

.feature-card h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.game-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.18);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
    border-color: rgba(184, 134, 11, 0.5);
    box-shadow: 0 12px 36px rgba(184, 134, 11, 0.15);
}

.game-card h3 {
    color: var(--primary-gold);
}

.game-card p {
    color: var(--text-secondary);
}

.game-card strong {
    color: #996515;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.07), rgba(200, 150, 12, 0.05));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(184, 134, 11, 0.3);
    animation: breathe 3s ease-in-out infinite alternate;
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 20px rgba(184, 134, 11, 0.1);
    }
    100% {
        box-shadow: 0 0 40px rgba(184, 134, 11, 0.25);
    }
}

.bonus-highlight h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.steps {
    counter-reset: step-counter;
}

.step {
    counter-increment: step-counter;
    background: #fff;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 15px;
    border-left: 5px solid #b8860b;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    position: relative;
}

.step::before {
    content: counter(step-counter);
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #b8860b, #c8960c);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step h3 {
    color: var(--primary-gold);
}

.step p {
    color: var(--text-secondary);
}

.legitimacy-proof {
    background: linear-gradient(135deg, rgba(34, 180, 90, 0.07), rgba(34, 180, 90, 0.03));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(34, 180, 90, 0.25);
    margin: 2rem 0;
}

.legitimacy-proof h3 {
    color: var(--primary-gold) !important;
}

.legitimacy-proof ul {
    color: var(--text-secondary);
}

.legitimacy-proof ul li::before {
    color: var(--primary-gold);
}

.testimonial {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #b8860b;
    border: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.testimonial strong {
    color: var(--primary-gold);
}

.cta-section {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(200, 150, 12, 0.05));
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin: 3rem 0;
    border: 1px solid rgba(184, 134, 11, 0.2);
    animation: breathe 4s ease-in-out infinite alternate;
}

.cta-section h2 {
    color: var(--primary-gold);
}

.cta-section p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: left;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 220px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-nav h4 {
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--primary-gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0.75rem 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-brand p { max-width: 100%; }
}

.disclaimer {
    background: rgba(184, 134, 11, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    margin: 2rem 0;
    font-size: 0.9rem;
}

.disclaimer strong {
    color: var(--primary-gold);
}

/* Mobile Frame Styles */
.mobile-frames-section {
    position: relative;
    padding: 5rem 2rem 8rem;
    background: linear-gradient(180deg, #fdf9f0 60%, #f0ead8 100%);
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-frames-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    width: 100%;
}

.mobile-frame {
    position: relative;
    width: 200px;
    height: 420px;
    flex-shrink: 0;
    background: #0a0a0a;
    border-radius: 30px;
    padding: 3px;
    border: 2px solid #111;
    outline: 1px solid rgba(255,255,255,0.08);
    overflow: visible;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    /* ground shadow */
    filter: drop-shadow(0 28px 18px rgba(0,0,0,0.38)) drop-shadow(0 6px 6px rgba(0,0,0,0.22));
}

/* Thin frame — no notch or home bar */
.mobile-frame::before {
    display: none;
}

/* Bottom ground reflection */
.mobile-frame::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 10%;
    width: 80%;
    height: 22px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.mobile-frame-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
}

.mobile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center top;
    display: block;
}

/* Alternating tilt — fan layout, all in one row */
.mobile-frame:nth-child(1) {
    transform: rotate(-6deg) translateY(12px);
}
.mobile-frame:nth-child(2) {
    transform: rotate(-3deg) translateY(5px);
}
.mobile-frame:nth-child(3) {
    transform: rotate(0deg) translateY(0px);
}
.mobile-frame:nth-child(4) {
    transform: rotate(3deg) translateY(5px);
}
.mobile-frame:nth-child(5) {
    transform: rotate(6deg) translateY(12px);
}
.mobile-frame:nth-child(6) {
    transform: rotate(9deg) translateY(20px);
}

/* Hover — lift and straighten */
.mobile-frame:hover {
    transform: rotate(0deg) translateY(-18px) scale(1.06) !important;
    filter: drop-shadow(0 40px 24px rgba(0,0,0,0.45)) drop-shadow(0 8px 8px rgba(0,0,0,0.28));
    z-index: 10;
}

.mobile-frame:hover img {
    transform: scale(1.06);
}

.mobile-frame-title {
    position: absolute;
    bottom: -38px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.mobile-frame:hover .mobile-frame-title {
    opacity: 1;
    transform: translateY(0);
}

/* Screen reflection effect */
.mobile-frame-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.13) 0%,
        rgba(255,255,255,0.04) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
    border-radius: 28px 28px 0 0;
}

/* Bottom fade on each screen */
.mobile-frame-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
    z-index: 2;
    border-radius: 0 0 28px 28px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .mobile-frames-grid {
        gap: 1rem;
    }
    
    .mobile-frame {
        width: 165px;
        height: 348px;
        border-radius: 26px;
    }

    .mobile-frame-content,
    .mobile-frame img {
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-frames-section {
        padding: 3rem 0 6rem;
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .mobile-frames-grid {
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding: 2rem 1.5rem 3rem;
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
    }
    
    .mobile-frame {
        width: 140px;
        height: 295px;
        border-radius: 22px;
    }

    .mobile-frame-content,
    .mobile-frame img {
        border-radius: 20px;
    }
}

/* Floating Logo Animation */
.floating-logo {
    display: none;
}

.floating-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating-logo:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: float-path-1 25s linear infinite;
}

.floating-logo:nth-child(2) {
    top: 75%;
    right: 15%;
    animation: float-path-2 30s linear infinite;
    animation-delay: -5s;
}

.floating-logo:nth-child(3) {
    top: 45%;
    left: 25%;
    animation: float-path-3 22s linear infinite;
    animation-delay: -10s;
}

.floating-logo:nth-child(4) {
    top: 25%;
    right: 25%;
    animation: float-path-4 28s linear infinite;
    animation-delay: -15s;
}

@keyframes float-path-1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(200px, 100px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(100px, 200px) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(-100px, 100px) rotate(270deg) scale(0.8);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

@keyframes float-path-2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0.8);
    }
    25% {
        transform: translate(-150px, -100px) rotate(-90deg) scale(1);
    }
    50% {
        transform: translate(-200px, 0) rotate(-180deg) scale(1.2);
    }
    75% {
        transform: translate(-150px, 100px) rotate(-270deg) scale(1);
    }
    100% {
        transform: translate(0, 0) rotate(-360deg) scale(0.8);
    }
}

@keyframes float-path-3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1.2);
    }
    33% {
        transform: translate(150px, -100px) rotate(120deg) scale(1);
    }
    66% {
        transform: translate(100px, 150px) rotate(240deg) scale(0.8);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1.2);
    }
}

@keyframes float-path-4 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0.9);
    }
    33% {
        transform: translate(-120px, 80px) rotate(-120deg) scale(1.1);
    }
    66% {
        transform: translate(-80px, -120px) rotate(-240deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(-360deg) scale(0.9);
    }
}

/* Hover effect for floating logos */
.floating-logo:hover {
    animation-play-state: paused;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Add smooth motion blur effect */
.floating-logo {
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .floating-logo {
        width: 30px;
        height: 30px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--background-darker);
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* =========================================================
   NEW STYLES: 66 Lottery Updates
   ========================================================= */

/* Hero with slide10.jpg Background */
.hero-with-slide {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
}

.hero-image-area {
    position: relative;
    width: 80%;
    max-width: 1400px;
    height: 80vh;
    min-height: 420px;
    margin: 0 auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
}

.hero-mobile-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroSlideShow 22s linear infinite;
    border-radius: 20px;
}

/* First slide starts fully visible immediately */
.hero-slide-img:first-child {
    opacity: 1;
}

@keyframes heroSlideShow {
    0%, 9.09%  { opacity: 1; }
    11.36%, 100% { opacity: 0; }
}

/* Remove dark overlay — image is fully visible, bottom shadow only */
.hero-with-slide::after {
    display: none;
}

.hero-image-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(248, 247, 242, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}

/* Today's Gift Code bar */
.hero-giftcode-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #b8860b, #c8960c);
    padding: 0.85rem 2rem;
    text-align: center;
}

.giftcode-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.giftcode-value {
    background: #ffffff;
    color: #b8860b;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: 50px;
    letter-spacing: 2px;
    font-family: monospace;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.giftcode-copy-btn {
    border: 1px solid #b8860b;
    background: #fff7e0;
    color: #8a6500;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 10px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}

.giftcode-copy-btn:hover,
.giftcode-copy-btn:focus-visible {
    background: #b8860b;
    color: #fff;
    outline: none;
}

.giftcode-copy-status {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 68px;
    text-align: center;
}

.giftcode-claim {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 4px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.giftcode-claim:hover {
    background: #fff;
    color: #b8860b;
}

@media (max-width: 480px) {
    .hero-giftcode-bar {
        gap: 0.6rem;
        padding: 0.75rem 1rem;
    }
    .giftcode-label { font-size: 0.9rem; }
    .giftcode-value { font-size: 0.95rem; letter-spacing: 1px; }
    .giftcode-copy-btn { font-size: 0.76rem; padding: 4px 8px; }
    .giftcode-copy-status { font-size: 0.75rem; min-width: 54px; }
    .giftcode-claim { font-size: 0.85rem; }
}

.hero-text-area {
    background: #f8f7f2;
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 3px solid rgba(184, 134, 11, 0.2);
}

.hero-with-slide .hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Header Login & Register Buttons */
.header-nav-btns {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.header-login-btn {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.header-login-btn:hover {
    background: var(--primary-gold);
    color: var(--background-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.header-register-btn {
    padding: 10px 24px !important;
    font-size: 1rem !important;
    margin: 0 !important;
}

@media (max-width: 600px) {
    .header {
        padding: 0.35rem 0;
    }

    .header-content {
        padding: 0 0.6rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .header-nav-btns {
        width: auto;
        flex-wrap: nowrap;
        gap: 0.35rem;
    }

    .header-login-btn {
        padding: 6px 10px;
        font-size: 0.78rem;
    }
    .header-register-btn {
        padding: 6px 10px !important;
        font-size: 0.78rem !important;
    }
}

/* =========================================================
   Bonus Showcase Section
   ========================================================= */
.bonus-showcase-section {
    background: #fdf9f0;
    border-top: 2px solid rgba(184, 134, 11, 0.15);
    border-bottom: 2px solid rgba(184, 134, 11, 0.15);
}

.bonus-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.bonus-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bonus-card.bonus-visible,
.bonus-card[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Override AOS default so our custom animation works with it */
[data-aos].bonus-card {
    opacity: 0;
    transform: translateY(30px);
}
[data-aos].bonus-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease-out;
}

.bonus-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 50px rgba(184, 134, 11, 0.15);
    border-color: rgba(184, 134, 11, 0.5);
}

/* Bonus Image Wrap */
.bonus-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    cursor: pointer;
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
    aspect-ratio: 1 / 1;
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.3s ease,
                filter 0.25s ease;
    filter: brightness(0.92) saturate(1.1);
}

.bonus-img-wrap:hover .bonus-img {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.25);
}

/* Fade-in shimmer overlay on image */
.bonus-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(212, 175, 55, 0.08) 100%
    );
    pointer-events: none;
}

/* Bonus Card Body */
.bonus-card-body {
    padding: 1.4rem;
}

.bonus-card-body h3 {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.bonus-card-body p {
    font-size: 0.93rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bonus-cta-btn {
    display: inline-block;
    padding: 9px 22px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.4px;
}

.bonus-cta-btn:hover {
    background: linear-gradient(135deg, #ffe566, var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.5);
}

/* Staggered fade-in for bonus grid on scroll */
@keyframes bonusFadeInUp {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive: bonus grid */
@media (max-width: 768px) {
    .bonus-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .bonus-card-body h3 {
        font-size: 1.05rem;
    }
    .header-nav-btns {
        gap: 0.5rem;
    }
}

@media (min-width: 900px) {
    .bonus-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Smooth scroll behaviour */
html {
    scroll-behavior: smooth;
} 

/* Security & Trust Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.security-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(184, 134, 11, 0.14);
    border-color: var(--primary-gold);
}

.security-card h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.security-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.security-card ul {
    list-style: none;
    padding: 0;
}

.security-card ul li {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    padding: 0.5rem 0.75rem;
    background: rgba(184, 134, 11, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.18;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(184, 134, 11, 0.12);
    border-color: rgba(184, 134, 11, 0.4);
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.user-info strong {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.rating {
    color: #e6a817;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.earnings {
    color: #1a7a3c;
    font-weight: bold;
    font-size: 0.9rem;
    background: rgba(34, 180, 90, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.12);
}

.faq-item h3 {
    background: linear-gradient(135deg, #b8860b, #996515);
    color: #ffffff;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #996515, #b8860b);
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    background: #fdfaf4;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(184,134,11,0.12);
}

.comparison-table th {
    background: linear-gradient(135deg, #b8860b, #996515);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    color: var(--text-secondary);
}

.comparison-table tr:hover {
    background: rgba(184, 134, 11, 0.04);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Game Features */
.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.game-features span {
    background: linear-gradient(135deg, #b8860b, #996515);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-item p {
        padding: 1rem;
    }
    
    .game-features {
        justify-content: center;
    }
}

/* Hero image-area & text-area responsive */
@media (max-width: 768px) {
    .hero {
        margin-top: 44px;
    }

    .hero-image-area {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        min-height: unset;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-mobile-image {
        display: block;
        height: auto;
        object-fit: contain;
        border-radius: 0;
    }

    .hero-slide-img {
        display: none;
    }

    .hero-slide-img {
        background-size: contain;
        background-position: center center;
        background-color: #111;
        border-radius: 0;
    }

    .hero-image-area::after {
        border-radius: 0;
        height: 60px;
    }

    .hero-text-area {
        padding: 2rem 1rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}