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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

.img-desktop {
    display: block;
}

.img-mobile {
    display: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px 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;
    height: 70px;
}

.nav-logo h2 {
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.nav-logo img {
    width: 100%;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #ff6b35;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-cta {
    background: linear-gradient(45deg, #ff6b35, #f7941d);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.poker-symbol {
    position: absolute;
    font-size: 60px;
    color: rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.poker-symbol:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.poker-symbol:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.poker-symbol:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.poker-symbol:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.poker-symbol:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.poker-symbol:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-container {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    line-height: 1;
}

.animated-card {
    font-size: 6rem;
    animation: cardFlip 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes cardFlip {
    0%, 100% {
        transform: rotateY(0deg) scale(1);
    }
    25% {
        transform: rotateY(90deg) scale(1.1);
    }
    50% {
        transform: rotateY(180deg) scale(1);
    }
    75% {
        transform: rotateY(270deg) scale(1.1);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 40px;
    font-weight: 500;
    width: 100%;
    max-width: 1000px;
}

.hero-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-links a {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.hero-links a:first-child {
    background: linear-gradient(45deg, #ff6b35, #f7941d);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-links a:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-links a:last-child {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-links a:last-child:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Gaming App Section */
.gaming-app {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gaming-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Tier Info Section */
.tier-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.tier-info .section-header h2,
.tier-info .section-header p {
    color: white;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
}

.tier-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.player-tier {
    border-color: #17a2b8;
}

.member-tier {
    border-color: #28a745;
}

.super-tier {
    border-color: #ff6b35;
}

.tier-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.player-tier .tier-badge {
    background: #17a2b8;
}

.member-tier .tier-badge {
    background: #28a745;
}

.super-tier .tier-badge {
    background: #ff6b35;
}

.tier-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.tier-benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tier-description {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Downline System Section */
.downline-system {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.downline-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.step-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.step-card:nth-child(even) {
    transform: translateX(30px);
}

.step-card:nth-child(even).animate-in {
    transform: translateX(0);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7941d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-family: 'Space Grotesk', sans-serif;
}

.step-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.step-visual {
    margin-top: 20px;
}

.step-visual img {
    width: 100%;
    padding-right: 175px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.player-box {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    margin: 5px;
    text-align: center;
    min-width: 120px;
}

.super-player {
    background: linear-gradient(45deg, #ff6b35, #f7941d);
    color: white;
}

.player {
    background: #17a2b8;
    color: white;
}

.active {
    color: white;
}

.inactive {
    background: #6c757d;
    color: white;
}

.connection-line {
    width: 2px;
    height: 30px;
    background: #ddd;
    margin: 10px auto;
}

.player-hierarchy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player-hierarchy.complex .downline-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Tutorial Section */
.tutorial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.tutorial-section .section-header h2,
.tutorial-section .section-header p {
    color: white;
}

.section-header img {
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
    border-radius: 10px;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.tutorial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tutorial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.tutorial-card:hover {
    transform: translateY(-10px);
}

.tutorial-video {
    aspect-ratio: 16/9;
    position: relative;
}

.tutorial-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tutorial-content {
    padding: 30px;
}

.tutorial-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
}

.tutorial-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Featured Games Section */
.featured-games {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.game-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon img {
    width: 100%;
    max-width: 40px;
}

.game-image {
    font-size: 4rem;
    margin-bottom: 20px;
    height: 160px;
}

.game-image img {
    width: 100%;
    max-width: 110px;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-family: 'Space Grotesk', sans-serif;
}

.game-info p {
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.faq-section .section-header h2,
.faq-section .section-header p {
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Join Section */
.join-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7941d 100%);
    color: white;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.join-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.join-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.join-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #ff6b35;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ff6b35;
}

.character-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.character {
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}

.character.char1 {
    animation-delay: 0s;
}

.character.char2 {
    animation-delay: 0.5s;
}

.character.char3 {
    animation-delay: 1s;
}

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

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

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

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 4rem;
        flex-direction: column;
        gap: 20px;
    }

    .animated-card {
        font-size: 4rem;
    }

    .hero-links {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .gaming-stats {
        grid-template-columns: 1fr;
    }

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

    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .tutorial-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .join-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .animated-card {
        font-size: 3rem;
    }

    .container {
        padding: 0 15px;
    }

    .step-card,
    .tutorial-card,
    .game-card,
    .stat-card {
        margin: 0 10px;
    }
}

/* Live Dealer Features */
.live-dealer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.dealer-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.dealer-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.dealer-feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Game Action Button */
.game-action {
    margin-top: 20px;
}

.game-btn {
    background: linear-gradient(45deg, #ff6b35, #f7941d);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* Active Navigation Link */
.nav-link.active {
    color: #ff6b35 !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Animation delays for staggered effects */
.stat-card:nth-child(1) { transition-delay: 0.1s; }
.stat-card:nth-child(2) { transition-delay: 0.2s; }
.stat-card:nth-child(3) { transition-delay: 0.3s; }
.stat-card:nth-child(4) { transition-delay: 0.4s; }
.stat-card:nth-child(5) { transition-delay: 0.5s; }
.stat-card:nth-child(6) { transition-delay: 0.6s; }

.tier-card:nth-child(1) { transition-delay: 0.1s; }
.tier-card:nth-child(2) { transition-delay: 0.2s; }
.tier-card:nth-child(3) { transition-delay: 0.3s; }

.dealer-feature:nth-child(1) { transition-delay: 0.1s; }
.dealer-feature:nth-child(2) { transition-delay: 0.2s; }
.dealer-feature:nth-child(3) { transition-delay: 0.3s; }
.dealer-feature:nth-child(4) { transition-delay: 0.4s; }

.game-card:nth-child(1) { transition-delay: 0.1s; }
.game-card:nth-child(2) { transition-delay: 0.2s; }
.game-card:nth-child(3) { transition-delay: 0.3s; }
.game-card:nth-child(4) { transition-delay: 0.4s; }
.game-card:nth-child(5) { transition-delay: 0.5s; }
.game-card:nth-child(6) { transition-delay: 0.6s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }

/*4d Result Stylesheet
/* Additional styles for 4D Results */
        .fourD-hero {
            background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3f51b5 100%);
        }
        
        .fourD-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .fourD-symbols {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }
        
        .number-symbol {
            position: absolute;
            font-size: 60px;
            color: rgba(0, 0, 0, 0.12);
            animation: float4D 7s ease-in-out infinite;
            font-weight: bold;
        }
        
        .number-symbol:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .number-symbol:nth-child(2) { top: 20%; right: 12%; animation-delay: 1.2s; }
        .number-symbol:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 2.4s; }
        .number-symbol:nth-child(4) { bottom: 20%; right: 18%; animation-delay: 3.6s; }
        .number-symbol:nth-child(5) { top: 50%; left: 5%; animation-delay: 4.8s; }
        .number-symbol:nth-child(6) { top: 60%; right: 8%; animation-delay: 6s; }
        
        @keyframes float4D {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.12; }
            50% { transform: translateY(-25px) rotate(360deg); opacity: 0.2; }
        }
        
        .animated-4d-pill {
            font-size: 6rem;
            animation: fourDPillSpin 3.5s ease-in-out infinite;
            display: inline-block;
        }
        
        @keyframes fourDPillSpin {
            0%, 100% { transform: rotateX(0deg) scale(1); }
            25% { transform: rotateX(90deg) scale(1.05); }
            50% { transform: rotateX(180deg) scale(1); }
            75% { transform: rotateX(270deg) scale(1.05); }
        }
        
        .results-table {
            width: 100%;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            margin: 20px 0;
        }
        
        .results-table th,
        .results-table td {
            padding: 18px 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        
        .results-table th {
            background: linear-gradient(45deg, #3f51b5, #5c6bc0);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .results-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .winning-number {
            font-weight: 700;
            font-size: 1.3rem;
            color: #ff6b35;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .prize-amount {
            font-weight: 600;
            color: #28a745;
            font-size: 1.1rem;
        }
        
        .provider-logo {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: inline-block;
            margin-right: 10px;
            vertical-align: middle;
        }
        
        .provider-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .provider-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .provider-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .provider-card .game-image {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .testimonial-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-30px);
            margin-bottom: 30px;
        }
        
        .testimonial-card.animate-in {
            opacity: 1;
            transform: translateX(0);
        }
        
        .testimonial-card:nth-child(even) {
            transform: translateX(30px);
        }
        
        .testimonial-card:nth-child(even).animate-in {
            transform: translateX(0);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b35, #f7941d);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-right: 15px;
        }
        
        .testimonial-info h4 {
            margin: 0;
            color: #1a1a2e;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .testimonial-info p {
            margin: 5px 0 0 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        .testimonial-content {
            font-style: italic;
            color: #555;
            line-height: 1.7;
            position: relative;
        }
        
        .testimonial-content::before {
            content: '"';
            font-size: 4rem;
            color: #ff6b35;
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.3;
        }
        
        .how-to-play {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .play-step {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s ease;
        }
        
        .play-step.animate-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .play-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-number {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #3f51b5, #5c6bc0);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a1a2e;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .step-content p {
            color: #666;
            line-height: 1.7;
        }


    @media (max-width: 768px) { 
        .step-visual img {
            width: 100%;
            padding-right: 0;
            margin-top: 50px;
            margin-bottom: 30px;
        }

        .step-card {
            padding: 20px;
        }

        .img-desktop {
    display: none;
}

.img-mobile {
    display: block;
}

    }