/*
Theme Name: Fortunatos Slots v 1.0
Theme URI: https://fortunatos.io
Author: Fortunatos
Author URI: https://fortunatos.io
Description: Classic theme converted from static HTML landing.
Version: 1.0.0
Text Domain: fortunatos-slots
*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Enhanced smooth scrolling */
        * {
            scroll-behavior: smooth;
        }

        /* Smooth transitions for all interactive elements */
        a, button, .btn {
            transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
            min-height: 100vh;
        }

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

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }



        .header-cta {
            display: flex;
            align-items: center;
        }

        .header-play-btn {
            padding: 10px 20px;
            font-size: 0.9rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .header-play-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #2c3e50;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        /* Desktop styles - ensure navigation is visible */
        @media (min-width: 769px) {
            .nav-menu {
                display: flex !important;
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: none;
                box-shadow: none;
                padding: 0;
                flex-direction: row;
            }
        }

        .nav-menu a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: #e74c3c;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #2c3e50;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #f8f9fa 25%, 
                #e9ecef 50%, 
                #dee2e6 75%, 
                #f1f3f4 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(241, 196, 15, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
                radial-gradient(circle at 30% 30%, rgba(231, 76, 60, 0.05) 0%, transparent 50%),
                linear-gradient(45deg, 
                    rgba(231, 76, 60, 0.03) 0%, 
                    rgba(241, 196, 15, 0.05) 25%, 
                    rgba(255, 255, 255, 0.2) 50%, 
                    rgba(231, 76, 60, 0.03) 75%, 
                    rgba(241, 196, 15, 0.05) 100%);
            background-size: 600px 600px, 400px 400px, 800px 800px, 300px 300px, 100% 100%;
            background-position: 0% 0%, 100% 100%, 50% 50%, 20% 80%, 0% 0%;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(231,76,60,0.1)"/><circle cx="8" cy="8" r="1" fill="rgba(241,196,15,0.1)"/><circle cx="22" cy="22" r="1.5" fill="rgba(255,255,255,0.3)"/><circle cx="15" cy="8" r="0.8" fill="rgba(231,76,60,0.08)"/><circle cx="8" cy="22" r="0.8" fill="rgba(241,196,15,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>');
            background-size: 80px 80px;
            opacity: 0.4;
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
        }


        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-left {
            text-align: left;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            color: #34495e;
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image {
            position: relative;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        /* Casino Slot Machine */
        .casino-slot-machine {
            background: linear-gradient(145deg, #2c3e50, #34495e);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 3px solid #e74c3c;
            position: relative;
            overflow: hidden;
        }

        .casino-slot-machine::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shine 3s infinite;
        }

        .slot-screen {
            background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 2px solid #e74c3c;
            display: flex;
            justify-content: space-around;
            align-items: center;
            min-height: 120px;
        }

        .slot-reel {
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            width: 60px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid #dee2e6;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
            animation: slotSpin 2s ease-in-out infinite;
        }

        .slot-reel:nth-child(2) {
            animation-delay: 0.3s;
        }

        .slot-reel:nth-child(3) {
            animation-delay: 0.6s;
        }

        .slot-buttons {
            display: flex;
            justify-content: center;
        }

        .spin-button {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .spin-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

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

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            min-width: 180px;
        }

        .btn-primary {
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            color: #fff;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
        }

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

        .btn-secondary:hover {
            background: #e74c3c;
            color: #fff;
        }

        /* Casino Cards - BACK TO ORIGINAL DESIGN */
        .casinos-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.8);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 3rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

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

        .casino-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .casino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .casino-card:hover::before {
            left: 100%;
        }

        .casino-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .casino-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
        }

        .casino-logo {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(231, 76, 60, 0.2);
        }

        .casino-logo img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
        }

        /* Fallback for Elite Casino (no image provided) */
        .casino-elite-logo::before {
            content: '👑';
            color: #e74c3c;
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .casino-info h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .rating {
            color: #f39c12;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .casino-right {
            flex: 2;
        }

        .bonus-info {
            background: rgba(241, 196, 15, 0.1);
            border: 1px solid #f1c40f;
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .bonus-amount {
            font-size: 1.3rem;
            font-weight: bold;
            color: #e67e22;
            margin-bottom: 0.5rem;
        }

        .bonus-text {
            color: #34495e;
            font-size: 0.9rem;
        }

        .casino-features {
            list-style: none;
            margin-bottom: 1rem;
        }

        .casino-features li {
            color: #34495e;
            margin-bottom: 0.3rem;
            padding-left: 1.2rem;
            position: relative;
            font-size: 0.9rem;
        }

        .casino-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }

        .casino-button {
            text-align: center;
            margin-top: 1rem;
        }

        .casino-button .btn {
            width: 80%;
            max-width: 200px;
            padding: 12px 20px;
            font-size: 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin: 0 auto;
            display: block;
        }

        .casino-button .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.6);
        }

        .features-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

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

        .features-row-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .feature-card-wide {
            min-height: 200px;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Feature Icon Styles */
        .security-icon {
            background: linear-gradient(45deg, #27ae60, #2ecc71);
            color: #fff;
        }

        .security-icon::before {
            content: '🔒';
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .big-wins-icon {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            color: #fff;
        }

        .big-wins-icon::before {
            content: '💰';
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .mobile-icon {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: #fff;
        }

        .mobile-icon::before {
            content: '📱';
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .bonuses-icon {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: #fff;
        }

        .bonuses-icon::before {
            content: '🎁';
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .fast-payouts-icon {
            background: linear-gradient(45deg, #9b59b6, #8e44ad);
            color: #fff;
        }

        .fast-payouts-icon::before {
            content: '⚡';
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .game-variety-icon {
            background: linear-gradient(45deg, #1abc9c, #16a085);
            color: #fff;
        }

        .game-variety-icon::before {
            content: '🎮';
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .feature-card h3 {
            color: #2c3e50;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #34495e;
            line-height: 1.6;
        }

        /* How to Play Section */
        .how-to-play {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.8);
        }

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

        .step {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            position: relative;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            margin: 0 auto 1rem;
        }

        .step h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .step p {
            color: #34495e;
            line-height: 1.6;
        }

        /* Game Info Section */
        .game-info-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .game-info-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .game-info-block {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #e74c3c;
        }

        .game-info-title {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .game-info-subtitle {
            color: #e74c3c;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            border-bottom: 2px solid #e74c3c;
            padding-bottom: 0.5rem;
        }

        .game-info-text {
            color: #34495e;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .difficulty-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .difficulty-table th {
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            color: #fff;
            padding: 1rem;
            font-weight: 600;
            text-align: left;
        }

        .difficulty-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            color: #34495e;
        }

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

        .pros-cons-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }

        .pros-block, .cons-block {
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
        }

        .pros-block {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
            border-left: 5px solid #27ae60;
        }

        .cons-block {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
            border-left: 5px solid #e74c3c;
        }

        .pros-cons-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .pros-block .pros-cons-title {
            color: #27ae60;
        }

        .cons-block .pros-cons-title {
            color: #e74c3c;
        }

        .pros-cons-list {
            list-style: none;
            padding: 0;
        }

        .pros-cons-list li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: #34495e;
            line-height: 1.6;
        }

        .pros-cons-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cons-block .pros-cons-list li::before {
            content: '✗';
            color: #e74c3c;
        }

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

        .casino-item {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: #fff;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
            transition: transform 0.3s ease;
        }

        .casino-item:hover {
            transform: translateY(-2px);
        }

        /* Text Block Section */
        .text-block-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.8);
        }

        .text-block {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            margin: 0 auto;
        }

        .text-content p {
            color: #34495e;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .text-content p:last-child {
            margin-bottom: 0;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.6);
        }

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

        .faq-item {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(231, 76, 60, 0.05);
        }

        .faq-question h3 {
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: #e74c3c;
            transition: transform 0.3s ease;
        }

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

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 200px;
        }

        .faq-answer p {
            color: #34495e;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: rgba(44, 62, 80, 0.95);
            padding: 3rem 0 1rem;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .footer-section h3 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: #e74c3c;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            color: #bdc3c7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .btn-primary:hover {
            animation: pulse 0.6s ease-in-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
                position: relative;
            }

            .logo {
                text-align: center;
                width: 100%;
                position: relative;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 0;
                top: 0;
            }

            .nav-menu {
                display: none;
                position: fixed;
                top: 100%;
                left: 0;
                right: 0;
                width: 100vw;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem 1rem;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-20px);
                transition: all 0.3s ease;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                display: flex;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nav-menu a {
                padding: 1rem;
                text-align: center;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                font-size: 1.1rem;
                font-weight: 500;
            }

            .nav-menu a:last-child {
                border-bottom: none;
            }

            .header-cta {
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .header-play-btn {
                padding: 12px 24px;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-left {
                text-align: center;
            }

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

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

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .casino-slot-machine {
                padding: 1.5rem;
            }

            .slot-screen {
                padding: 1rem;
                min-height: 100px;
            }

            .slot-reel {
                width: 50px;
                height: 70px;
                font-size: 1.5rem;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

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

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

            .casino-left {
                margin-bottom: 1rem;
            }

            .casino-features li {
                padding-left: 1.5rem;
                text-align: left;
            }

            .casino-features li::before {
                left: 0.2rem;
            }

            .features-row-1 {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .features-row-2 {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .feature-card-wide {
                min-height: auto;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .text-block {
                padding: 2rem;
            }

            .text-content p {
                font-size: 1rem;
            }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.5);
        }