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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
            color: #ffffff;
            line-height: 1.6;
        }

        /* Header */
        .header {
            background: rgba(0, 0, 0, 0.8);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: #00d4aa;
        }

        .logo-placeholder {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #00d4aa, #00a885);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(45deg, #00d4aa, #00a885);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #00d4aa;
            border: 2px solid #00d4aa;
        }

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

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 168, 133, 0.1));
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4aa, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .bonus-highlight {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            text-align: center;
        }

        .bonus-highlight h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .bonus-more-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .bonus-more-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        .bonus-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 1rem;
        }

        .bonus-details.expanded {
            max-height: 500px;
        }

        .bonus-details-content {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 1rem;
            text-align: left;
        }

        .bonus-steps {
            margin-bottom: 1.5rem;
        }

        .bonus-steps h4 {
            color: #00d4aa;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .bonus-step {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            gap: 0.75rem;
        }

        .step-number {
            background: #00d4aa;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .bonus-terms {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
        }

        .bonus-terms h4 {
            color: #ff6b6b;
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .bonus-terms ul {
            list-style: none;
            padding: 0;
        }

        .bonus-terms li {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            padding-left: 1rem;
            position: relative;
        }

        .bonus-terms li:before {
            content: "•";
            color: #00d4aa;
            position: absolute;
            left: 0;
        }

        .hero-image {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(45deg, #00d4aa, #00a885);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        /* Games Section */
        .games-section {
            padding: 4rem 0;
            background: rgba(0, 0, 0, 0.3);
        }

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

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #00d4aa;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .game-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .game-card:hover {
            transform: translateY(-5px);
        }

        .game-image {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(45deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: white;
        }

        .game-info {
            padding: 1rem;
            text-align: center;
        }

        .game-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .game-provider {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Promotions Section */
        .promotions-section {
            padding: 4rem 0;
        }

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

        .promo-card {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 142, 0.1));
            border: 1px solid rgba(255, 107, 107, 0.3);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
        }

        .promo-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ff6b6b;
        }

        .promo-amount {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #00d4aa;
        }

        /* Banking Section */
        .banking-section {
            padding: 4rem 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .banking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .banking-table {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .banking-table h3 {
            color: #00d4aa;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .payment-method {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .payment-method:last-child {
            border-bottom: none;
        }

        /* Pay'n'Play Section */
        .paynplay-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 168, 133, 0.1));
        }

        .paynplay-content {
            text-align: center;
        }

        .paynplay-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #00d4aa;
        }

        .paynplay-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem auto;
            opacity: 0.9;
        }

        /* Responsible Gaming Section */
        .responsible-section {
            padding: 4rem 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .responsible-content {
            text-align: center;
        }

        .responsible-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .responsible-links a {
            color: #00d4aa;
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border: 1px solid #00d4aa;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .responsible-links a:hover {
            background: #00d4aa;
            color: white;
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 3rem 0 2rem 0;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-info {
            opacity: 0.8;
            line-height: 1.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .hero-content h1 {
                font-size: 2rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }

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

        @media (max-width: 480px) {
            .games-grid {
                grid-template-columns: 1fr;
            }

            .nav-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }
        }