<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&amp;display=swap');
        
        :root {
            --primary: #009c3b;
            --secondary: #ffdf00;
            --dark-green: #006228;
            --light-green: #00d455;
            --dark: #1a1a1a;
            --light: #ffffff;
            --yellow-accent: #fff44f;
            --card-bg: rgba(255, 255, 255, 0.95);
            --gradient: linear-gradient(135deg, var(--primary), var(--dark-green));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            background-image: url('https://via.placeholder.com/1920x1080/006228/006228?text=');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: var(--gradient);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .logo::before {
            content: '';
            display: inline-block;
            width: 28px;
            height: 28px;
            background-color: var(--secondary);
            border-radius: 50%;
            margin-right: 12px;
            box-shadow: 0 0 15px rgba(255, 223, 0, 0.5);
        }
        
        .btn-tropical {
            background-color: var(--secondary);
            color: var(--dark-green);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            display: inline-block;
        }
        
        .btn-tropical:hover {
            background-color: var(--yellow-accent);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://via.placeholder.com/1920x1080/009c3b/009c3b?text=');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/100x100/ffdf00/ffdf00?text=') repeat;
            opacity: 0.05;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        .tropical-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark-green);
            font-size: 14px;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 20px;
            margin-bottom: 15px;
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .slots-section {
            padding: 80px 0;
            position: relative;
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        .slots-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/200x200/009c3b/009c3b?text=') repeat;
            opacity: 0.03;
            z-index: 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--dark);
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }
        
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .slot-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(0, 156, 59, 0.1);
        }
        
        .slot-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .slot-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .slot-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .slot-card:hover .slot-img img {
            transform: scale(1.1);
        }
        
        .slot-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            color: var(--dark-green);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            z-index: 10;
        }
        
        .slot-content {
            padding: 25px;
        }
        
        .slot-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        
        .slot-text {
            color: var(--dark);
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .slot-features {
            display: flex;
            margin-bottom: 20px;
        }
        
        .slot-feature {
            display: flex;
            align-items: center;
            margin-right: 15px;
            font-size: 13px;
            color: var(--dark);
            opacity: 0.7;
        }
        
        .slot-feature::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .slot-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .slot-rtp {
            font-weight: 700;
            color: var(--dark-green);
            font-size: 14px;
        }
        
        .btn-small {
            padding: 8px 15px;
            font-size: 12px;
        }
        
        .jackpot-section {
            background: var(--gradient);
            padding: 80px 0;
            color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .jackpot-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(255, 223, 0, 0.1);
            top: -150px;
            left: -150px;
        }
        
        .jackpot-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(255, 223, 0, 0.1);
            bottom: -150px;
            right: -150px;
        }
        
        .jackpot-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .jackpot-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .jackpot-amount {
            font-size: 72px;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 30px;
            text-shadow: 0 0 10px rgba(255, 223, 0, 0.5);
        }
        
        .bonus-section {
            padding: 80px 0;
            background-color: var(--light);
            position: relative;
        }
        
        .bonus-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url('https://via.placeholder.com/150x150/ffdf00/ffdf00?text=') repeat;
            opacity: 0.03;
            z-index: 0;
        }
        
        .bonus-content {
            display: flex;
            align-items: center;
            background-color: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }
        
        .bonus-img {
            flex: 1;
            min-height: 400px;
            background-image: url('https://via.placeholder.com/600x400/009c3b/009c3b?text=');
            background-size: cover;
            background-position: center;
        }
        
        .bonus-text {
            flex: 1;
            padding: 40px;
        }
        
        .bonus-text h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark-green);
            margin-bottom: 20px;
        }
        
        .bonus-text p {
            margin-bottom: 25px;
            color: var(--dark);
            opacity: 0.8;
        }
        
        .bonus-list {
            margin-bottom: 30px;
        }
        
        .bonus-list-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .bonus-list-item::before {
            content: 'âœ“';
            display: inline-block;
            width: 25px;
            height: 25px;
            background-color: var(--primary);
            color: var(--light);
            border-radius: 50%;
            margin-right: 15px;
            text-align: center;
            line-height: 25px;
            font-weight: 700;
            font-size: 14px;
        }
        
        .content-section {
            padding: 80px 0;
            background-color: rgba(255, 255, 255, 0.9);
            position: relative;
        }
        
        .content-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url('https://via.placeholder.com/150x150/009c3b/009c3b?text=') repeat;
            opacity: 0.03;
            z-index: 0;
        }
        
        .content {
            background-color: var(--light);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 1;
        }
        
        .footer {
            background-color: var(--dark-green);
            color: var(--light);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--secondary);
            bottom: 0;
            left: 0;
            border-radius: 1.5px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .hero {
                height: auto;
                padding: 80px 0;
            }
            
            .hero-content {
                text-align: center;
                margin: 0 auto;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .bonus-content {
                flex-direction: column;
            }
            
            .bonus-img {
                min-height: 200px;
                width: 100%;
            }
            
            .jackpot-amount {
                font-size: 48px;
            }
        }</pre></body></html>