        :root {
            --gold: #D4A855;
            --gold-light: #E8C97A;
            --brown-dark: #2C1810;
            --brown-medium: #5C3D2E;
            --brown-light: #8B5A2B;
            --sand: #E6D5B8;
            --sand-light: #F5EBD8;
            --rust: #A0522D;
            --cream: #FFF8E7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vollkorn', Georgia, serif;
            background-color: var(--sand);
            color: var(--brown-dark);
            line-height: 1.8;
            font-size: 18px;
        }

        /* Western texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 1000;
        }

        /* Header */
        header {
            background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 4px solid var(--gold);
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Rye', cursive;
            font-size: 28px;
            color: var(--brown-dark);
            box-shadow: 0 2px 10px rgba(212, 168, 85, 0.5);
        }

        .logo-text {
            font-family: 'Rye', cursive;
            font-size: 24px;
            color: var(--gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: var(--sand);
            text-decoration: none;
            font-family: 'Special Elite', cursive;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--gold);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 28px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(180deg, rgba(44, 24, 16, 0.7) 0%, rgba(92, 61, 46, 0.8) 100%),
                linear-gradient(90deg, var(--brown-dark) 0%, var(--rust) 50%, var(--brown-dark) 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(212, 168, 85, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(212, 168, 85, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Animated dust particles */
        .dust-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(212, 168, 85, 0.4);
            border-radius: 50%;
            animation: float-dust 15s infinite ease-in-out;
        }

        @keyframes float-dust {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
            25% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
            50% { transform: translateY(-200px) translateX(-30px); opacity: 0.4; }
            75% { transform: translateY(-150px) translateX(80px); opacity: 0.5; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .game-logo-container {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .game-logo-image {
            max-width: 400px;
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            border: 4px solid var(--gold);
            display: block;
        }

        .hero h1 {
            font-family: 'Rye', cursive;
            font-size: 52px;
            color: var(--gold);
            text-shadow: 4px 4px 8px rgba(0,0,0,0.6);
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 22px;
            color: var(--sand-light);
            margin-bottom: 15px;
            font-style: italic;
        }

        .hero-developer {
            color: var(--gold-light);
            font-family: 'Special Elite', cursive;
            font-size: 16px;
            margin-bottom: 30px;
        }

        /* Hero Play Button */
        .hero-play-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 50px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--brown-dark);
            font-family: 'Rye', cursive;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            margin: 30px 0 40px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(212, 168, 85, 0.6), 0 0 20px rgba(212, 168, 85, 0.3);
            position: relative;
            overflow: hidden;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(212, 168, 85, 0.6), 0 0 20px rgba(212, 168, 85, 0.3);
            }
            50% {
                box-shadow: 0 10px 50px rgba(212, 168, 85, 0.8), 0 0 30px rgba(212, 168, 85, 0.5);
            }
        }

        .hero-play-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }

        .hero-play-btn:hover::before {
            left: 100%;
        }

        .hero-play-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(212, 168, 85, 0.8), 0 0 40px rgba(212, 168, 85, 0.6);
        }

        .hero-play-btn:active {
            transform: translateY(-2px) scale(1.02);
        }

        .hero-play-btn .btn-icon {
            font-size: 28px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .hero-play-btn .btn-text {
            letter-spacing: 1px;
        }

        .hero-play-btn .btn-arrow {
            font-size: 26px;
            transition: transform 0.3s ease;
        }

        .hero-play-btn:hover .btn-arrow {
            transform: translateX(5px);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-box {
            background: rgba(44, 24, 16, 0.8);
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 20px 30px;
            min-width: 150px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 168, 85, 0.3);
        }

        .stat-value {
            font-family: 'Rye', cursive;
            font-size: 28px;
            color: var(--gold);
        }

        .stat-label {
            font-size: 13px;
            color: var(--sand);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        /* Western divider */
        .western-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 40px 0;
        }

        .divider-line {
            width: 150px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--brown-light), transparent);
        }

        .divider-star {
            font-size: 24px;
            color: var(--gold);
        }

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section styling */
        section {
            padding: 60px 0;
        }

        .section-title {
            font-family: 'Rye', cursive;
            font-size: 38px;
            color: var(--brown-dark);
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title::after {
            content: '★';
            display: block;
            font-size: 20px;
            color: var(--gold);
            margin-top: 10px;
        }

        /* Content cards */
        .content-card {
            background: var(--cream);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 30px rgba(44, 24, 16, 0.1);
            border: 2px solid var(--sand);
            position: relative;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 30px;
            right: 30px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            border-radius: 2px;
        }

        .content-card h3 {
            font-family: 'Rye', cursive;
            font-size: 26px;
            color: var(--brown-medium);
            margin-bottom: 20px;
        }

        .content-card p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .content-card img {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 30px auto;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(44, 24, 16, 0.2);
            border: 2px solid var(--sand);
        }

        /* Official Game Promo Block */
        .official-game-block {
            background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
            border-radius: 15px;
            padding: 35px;
            margin: 35px 0;
            display: flex;
            align-items: center;
            gap: 30px;
            border: 3px solid var(--gold);
            box-shadow: 0 8px 30px rgba(44, 24, 16, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .official-game-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(212, 168, 85, 0.4);
        }

        .official-game-logo {
            flex-shrink: 0;
            width: 180px;
            height: auto;
        }

        .official-game-logo img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--gold);
            margin: 0;
        }

        .official-game-content {
            flex: 1;
        }

        .official-game-content h4 {
            font-family: 'Rye', cursive;
            font-size: 24px;
            color: var(--gold);
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .official-game-content p {
            color: var(--sand-light);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
            text-align: left;
        }

        .official-game-link {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--brown-dark);
            font-family: 'Rye', cursive;
            font-size: 18px;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 168, 85, 0.4);
            font-weight: 600;
        }

        .official-game-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 168, 85, 0.6);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        }

        @media (max-width: 768px) {
            .official-game-block {
                flex-direction: column;
                text-align: center;
                padding: 25px;
            }

            .official-game-logo {
                width: 140px;
            }

            .official-game-content h4 {
                font-size: 20px;
            }

            .official-game-content p {
                text-align: center;
                font-size: 15px;
            }
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .feature-card {
            background: linear-gradient(145deg, var(--cream) 0%, var(--sand-light) 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 2px solid var(--sand);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 168, 85, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(44, 24, 16, 0.2);
            border-color: var(--gold);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 5px 20px rgba(212, 168, 85, 0.4);
        }

        .feature-card h4 {
            font-family: 'Rye', cursive;
            font-size: 20px;
            color: var(--brown-dark);
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--brown-medium);
            line-height: 1.6;
        }

        /* Screenshots Gallery */
        .screenshots-section {
            background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
            margin: 60px -20px;
            padding: 60px 20px;
            position: relative;
        }

        .screenshots-section .section-title {
            color: var(--gold);
        }

        .screenshots-section .section-title::after {
            color: var(--gold-light);
        }

        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .screenshot-placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--brown-medium) 0%, var(--brown-dark) 100%);
            border: 3px solid var(--gold);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--sand);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .screenshot-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 168, 85, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .screenshot-placeholder:hover::before {
            left: 100%;
        }

        .screenshot-placeholder:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 40px rgba(212, 168, 85, 0.3);
        }

        .screenshot-icon {
            font-size: 48px;
            margin-bottom: 15px;
            opacity: 0.6;
        }

        .screenshot-label {
            font-family: 'Special Elite', cursive;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .screenshot-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--gold);
            color: var(--brown-dark);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Rye', cursive;
            font-size: 14px;
        }

        /* Symbols Section */
        .symbols-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .symbol-card {
            background: var(--cream);
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            border: 2px solid var(--sand);
            transition: all 0.3s ease;
        }

        .symbol-card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 25px rgba(44, 24, 16, 0.15);
        }

        .symbol-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-medium) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .symbol-card h5 {
            font-family: 'Special Elite', cursive;
            font-size: 16px;
            color: var(--brown-dark);
            margin-bottom: 8px;
        }

        .symbol-card p {
            font-size: 13px;
            color: var(--brown-medium);
        }

        .symbol-multiplier {
            display: inline-block;
            background: var(--gold);
            color: var(--brown-dark);
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 700;
            margin-top: 10px;
        }

        /* Info Table */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: var(--cream);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(44, 24, 16, 0.1);
        }

        .info-table th,
        .info-table td {
            padding: 18px 25px;
            text-align: left;
            border-bottom: 1px solid var(--sand);
        }

        .info-table th {
            background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
            color: var(--gold);
            font-family: 'Special Elite', cursive;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .info-table tr:hover td {
            background: rgba(212, 168, 85, 0.1);
        }

        .info-table td:first-child {
            font-weight: 600;
            color: var(--brown-dark);
        }

        /* Tips Section */
        .tips-list {
            display: grid;
            gap: 20px;
            margin-top: 30px;
        }

        .tip-item {
            background: var(--cream);
            border-radius: 12px;
            padding: 25px 30px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            border-left: 4px solid var(--gold);
            transition: all 0.3s ease;
        }

        .tip-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(44, 24, 16, 0.1);
        }

        .tip-number {
            width: 40px;
            height: 40px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Rye', cursive;
            color: var(--brown-dark);
            font-size: 18px;
            flex-shrink: 0;
        }

        .tip-content h4 {
            font-family: 'Rye', cursive;
            font-size: 18px;
            color: var(--brown-dark);
            margin-bottom: 8px;
        }

        .tip-content p {
            font-size: 15px;
            color: var(--brown-medium);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--cream);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 2px solid var(--sand);
            transition: border-color 0.3s ease;
        }

        .faq-item.active {
            border-color: var(--gold);
        }

        .faq-question {
            width: 100%;
            padding: 22px 25px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Vollkorn', Georgia, serif;
            font-size: 17px;
            font-weight: 600;
            color: var(--brown-dark);
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(212, 168, 85, 0.1);
        }

        .faq-icon {
            font-size: 22px;
            color: var(--gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 25px 22px;
            color: var(--brown-medium);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* Interactive Demo Button */
        .demo-section {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(145deg, var(--cream) 0%, var(--sand-light) 100%);
            border-radius: 20px;
            margin: 40px 0;
            border: 3px solid var(--gold);
            position: relative;
            overflow: hidden;
        }

        .demo-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 168, 85, 0.1) 0%, transparent 70%);
            animation: pulse-bg 4s ease-in-out infinite;
        }

        @keyframes pulse-bg {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .demo-section h3 {
            font-family: 'Rye', cursive;
            font-size: 32px;
            color: var(--brown-dark);
            margin-bottom: 20px;
            position: relative;
        }

        .demo-section p {
            font-size: 18px;
            color: var(--brown-medium);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .demo-btn {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--brown-dark);
            font-family: 'Rye', cursive;
            font-size: 20px;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(212, 168, 85, 0.5);
            position: relative;
            overflow: hidden;
        }

        .demo-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .demo-btn:hover::before {
            left: 100%;
        }

        .demo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(212, 168, 85, 0.6);
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--brown-dark) 0%, #1a0f0a 100%);
            color: var(--sand);
            padding: 60px 20px 30px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Rye', cursive;
            font-size: 32px;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .footer-warning {
            background: rgba(212, 168, 85, 0.1);
            border: 1px solid var(--gold);
            border-radius: 10px;
            padding: 20px 30px;
            margin: 30px auto;
            max-width: 800px;
        }

        .footer-warning h4 {
            color: var(--gold);
            font-family: 'Special Elite', cursive;
            margin-bottom: 10px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-warning p {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .footer-info-section {
            margin: 40px 0 30px;
        }

        .footer-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }

        .footer-info-item {
            background: rgba(212, 168, 85, 0.05);
            border: 1px solid rgba(212, 168, 85, 0.2);
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .footer-info-item:hover {
            background: rgba(212, 168, 85, 0.1);
            border-color: rgba(212, 168, 85, 0.4);
        }

        .footer-info-item h4 {
            color: var(--gold);
            font-family: 'Special Elite', cursive;
            font-size: 16px;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-info-item p {
            font-size: 13px;
            line-height: 1.6;
            opacity: 0.9;
            color: var(--sand-light);
        }

        .footer-links-section {
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid rgba(212, 168, 85, 0.2);
            border-bottom: 1px solid rgba(212, 168, 85, 0.2);
        }

        .footer-links-section a {
            color: var(--gold);
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links-section a:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }

        .footer-links-section span {
            color: var(--sand);
            opacity: 0.5;
            margin: 0 5px;
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(212, 168, 85, 0.2);
            font-size: 14px;
            opacity: 0.7;
        }

        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }

        /* Cookie Consent Banner */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
            border-top: 3px solid var(--gold);
            padding: 20px;
            z-index: 10000;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: slideUp 0.5s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .cookie-consent-content {
            max-width: 1200px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .cookie-consent-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-consent-text h4 {
            color: var(--gold);
            font-family: 'Special Elite', cursive;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .cookie-consent-text p {
            color: var(--sand-light);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .cookie-consent-text a {
            color: var(--gold-light);
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .cookie-consent-text a:hover {
            color: var(--gold);
        }

        .cookie-consent-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-family: 'Special Elite', cursive;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cookie-btn-accept {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--brown-dark);
            box-shadow: 0 4px 15px rgba(212, 168, 85, 0.4);
        }

        .cookie-btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 168, 85, 0.6);
        }

        .cookie-btn-decline {
            background: transparent;
            color: var(--sand-light);
            border: 2px solid var(--sand);
        }

        .cookie-btn-decline:hover {
            background: rgba(230, 213, 184, 0.1);
            border-color: var(--gold-light);
            color: var(--gold-light);
        }

        /* Fixed Play Button */
        .fixed-play-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--brown-dark);
            font-family: 'Rye', cursive;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 8px 30px rgba(212, 168, 85, 0.6), 0 0 20px rgba(212, 168, 85, 0.3);
            transition: all 0.4s ease;
            z-index: 100;
            animation: pulse-glow-fixed 2s ease-in-out infinite;
        }

        @keyframes pulse-glow-fixed {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(212, 168, 85, 0.6), 0 0 20px rgba(212, 168, 85, 0.3);
            }
            50% {
                box-shadow: 0 8px 40px rgba(212, 168, 85, 0.8), 0 0 30px rgba(212, 168, 85, 0.5);
            }
        }

        .fixed-play-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 40px rgba(212, 168, 85, 0.8), 0 0 40px rgba(212, 168, 85, 0.6);
        }

        .fixed-play-btn .btn-icon {
            font-size: 22px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .fixed-play-btn .btn-text {
            letter-spacing: 0.5px;
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--brown-dark);
            box-shadow: 0 5px 20px rgba(44, 24, 16, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cookie-consent-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-consent-text {
                min-width: 100%;
            }

            .cookie-consent-buttons {
                width: 100%;
                justify-content: center;
            }

            .cookie-btn {
                flex: 1;
                min-width: 120px;
            }

            .footer-info-grid {
                grid-template-columns: 1fr;
            }

            .footer-info-item {
                text-align: center;
            }

            .footer-links-section {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .footer-links-section span {
                display: none;
            }

            .fixed-play-btn {
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                padding: 14px 24px;
                font-size: 16px;
                gap: 8px;
            }

            .fixed-play-btn:hover {
                transform: translateX(-50%) translateY(-5px) scale(1.05);
            }

            .fixed-play-btn .btn-icon {
                font-size: 18px;
            }

            .fixed-play-btn .btn-text {
                display: inline-block;
            }

            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-play-btn {
                padding: 16px 35px;
                font-size: 18px;
                margin: 25px 0 30px;
            }

            .hero-play-btn .btn-icon {
                font-size: 22px;
            }

            .hero-play-btn .btn-arrow {
                font-size: 20px;
            }

            .hero-stats {
                gap: 15px;
            }

            .stat-box {
                padding: 15px 20px;
                min-width: 120px;
            }

            .section-title {
                font-size: 28px;
            }

            .content-card {
                padding: 25px;
            }

            .tip-item {
                flex-direction: column;
                text-align: center;
            }

            .tip-number {
                margin: 0 auto;
            }

            .game-logo-image {
                max-width: 280px;
            }
        }