 
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            font-size: 1.8rem;
            color: white;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #ffdddd;
        }

        .nav-link i {
            margin-right: 0.5rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section with Parallax and Animated Maple Leaves */
        .hero {
            background: url('img/about-banner.jpg') center/cover no-repeat fixed;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero-overlay {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 255, 255, 0.5));
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-container {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 1rem;
            animation: slide-in 1s ease-out;
        }

        .hero-title i {
            color: #ff0000;
            margin-right: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
        }

        .btn-primary:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
        }

        .btn-primary i {
            margin-right: 0.5rem;
        }

        .maple-leaves {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .leaf {
            position: absolute;
            font-size: 4rem;
            color: #ff0000;
            animation: float 8s ease-in-out infinite;
        }

        .leaf-1 { top: 10%; left: 15%; animation-delay: 0s; }
        .leaf-2 { top: 40%; right: 20%; animation-delay: 2s; }
        .leaf-3 { bottom: 15%; left: 30%; animation-delay: 4s; }

        @keyframes slide-in {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        /* Animated Stats */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 1rem 2rem;
            border-radius: 10px;
            text-align: center;
            min-width: 200px;
        }

        .stat-card i {
            font-size: 2rem;
            color: #ff0000;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #ff0000;
        }

        .stat-label {
            font-size: 1rem;
            color: #333;
        }

        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
            font-weight: bold;
        }

        .section-title i {
            color: #ff0000;
            margin-right: 0.5rem;
        }

        /* Welcome Bonuses - 3D Tilt Effect */
        .welcome-bonus {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .tilt-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .tilt-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #ff0000, #cc0000);
        }

        .bonus-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }

        .bonus-title img {
            width: 100px;
            height: auto;
            object-fit: cover;
            margin-right: 10px;
            vertical-align: middle;
        }

        .bonus-offer {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            font-weight: bold;
            margin-bottom: 1rem;
            text-align: center;
        }

        .bonus-terms {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .btn-bonus {
            width: 100%;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 2rem;
        }

        .btn-bonus:hover {
            background: linear-gradient(135deg, #cc0000, #990000);
            transform: translateY(-2px);
        }

        .btn-bonus i {
            margin-right: 0.5rem;
        }

        /* No Deposit - Pop-up Animation */
        .no-deposit {
            padding: 80px 0;
            background: white;
        }

        .pop-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: scale(0);
            transition: transform 0.5s ease;
        }

        .pop-card.visible {
            transform: scale(1);
        }

        /* Free Spins - Carousel Style */
        .free-spins {
            padding: 80px 0;
            background: #f8f9fa;
            position: relative;
        }

        .carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 1rem;
            padding-bottom: 1rem;
        }

        .carousel-card {
            flex: 0 0 300px;
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            scroll-snap-align: start;
        }

        .carousel::-webkit-scrollbar {
            height: 8px;
        }

        .carousel::-webkit-scrollbar-thumb {
            background: #ff0000;
            border-radius: 4px;
        }

        /* Reload Bonuses - Timeline Style */
        .reload-bonus {
            padding: 80px 0;
            background: white;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: #ff0000;
        }

        .timeline-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 45%;
            margin: 1rem;
            position: relative;
            animation: slide-from-side 0.5s ease;
        }

        .timeline-card:nth-child(odd) {
            margin-left: 5%;
        }

        .timeline-card:nth-child(even) {
            margin-left: 50%;
        }

        .timeline-card::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: #ff0000;
            border-radius: 50%;
            left: -36px;
        }

        .timeline-card:nth-child(even)::before {
            left: auto;
            right: -36px;
        }

        @keyframes slide-from-side {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Cashback - Wave Animation */
        .cashback {
            padding: 80px 0;
            background: #f8f9fa;
            position: relative;
        }

        .wave-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            animation: wave 4s infinite;
        }

        @keyframes wave {
            0% { transform: translateX(0); }
            50% { transform: translateX(-25%); }
            100% { transform: translateX(0); }
        }

        /* VIP & Loyalty - Tiered Cards */
        .vip {
            padding: 80px 0;
            background: white;
        }

        .tier-card {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .tier-card:hover {
            transform: scale(1.05);
        }

        /* Bonus Terms - Checklist Style */
        .bonus-terms {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .checklist-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .checklist {
            list-style: none;
            padding-left: 0;
        }

        .checklist li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-left: 1.5rem;
        }

        .checklist li i {
            position: absolute;
            left: 0;
            color: #ff0000;
            font-size: 1.2rem;
        }

        /* Bonus Strategies - Tabbed Interface */
        .bonus-strategies {
            padding: 80px 0;
            background: white;
        }

        .tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            justify-content: center;
        }

        .tab {
            padding: 1rem 2rem;
            background: #f0f0f0;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .tab.active {
            background: #ff0000;
            color: white;
        }

        .tab-content {
            display: none;
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .tab-content.active {
            display: block;
        }

        /* Player Reviews - Quote Bubble Style */
        .reviews {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .quote-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            margin-bottom: 2rem;
        }

        .quote-card::before {
            content: '“';
            font-size: 4rem;
            color: #ff0000;
            position: absolute;
            top: -20px;
            left: 20px;
        }

        .quote-text {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .quote-author {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .quote-rating {
            color: #ffd700;
        }

        /* Bonus FAQ - Accordion */
        .faq {
            padding: 80px 0;
            background: white;
        }

        .accordion {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
        }

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            border-radius: 15px 15px 0 0;
        }

        .accordion-header i {
            margin-right: 0.5rem;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 1.5rem;
            transition: max-height 0.3s ease;
        }

        .accordion.active .accordion-content {
            max-height: 200px;
            padding: 1.5rem;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links, .footer-contact, .footer-responsible {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-link, .responsible-link {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-link:hover, .responsible-link:hover {
            color: #ff0000;
        }

        .footer-link i, .responsible-link i {
            margin-right: 0.5rem;
        }

        .footer-disclaimer {
            border-top: 1px solid #555;
            padding-top: 2rem;
            text-align: center;
            color: #ccc;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: #ff0000;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
            }

            .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(-10px) rotate(-45deg);
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .bonus-grid, .carousel, .timeline {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-card {
                width: 80%;
                margin-left: 15% !important;
            }

            .timeline-card::before {
                left: -36px !important;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .tilt-card, .pop-card, .carousel-card, .wave-card, .tier-card, .checklist-card, .quote-card, .accordion {
                padding: 1.5rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
