
        /* --- FONTS --- */
        .boldonse-regular {
            font-family: "Boldonse", system-ui;
            font-weight: 400;
            font-style: normal;
        }

        .akt {
            font-family: "Akt", sans-serif;
            font-optical-sizing: auto;
            font-weight: auto;
        }

        /* --- GLOBAL STYLES & VARIABLES --- */
        :root {
            --bg-color: #f4f3f0;
            --header-bg: #d9d2c9;
            --accent-gold: #c5a059;
            --text-dark: #2c2520;
            --footer-bg: #2b231d;
            --card-bg: #000000;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Georgia', serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            perspective: 1000px;
        }

        /* Ambient background blur overlay when inspecting a game card */
        body::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0);
            backdrop-filter: blur(0px);
            transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
            z-index: 5;
            pointer-events: none;
        }

        body.game-inspected-mode::before {
            background: rgba(5, 10, 12, 0.7);
            backdrop-filter: blur(8px);
            pointer-events: all;
            z-index: 99;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            background: #ffffff;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
        }

        /* --- NAVBAR --- */
        header {
            background-color: var(--header-bg);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: bold;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        nav a {
            text-transform: uppercase;
            font-size: 0.8rem;
            text-decoration: none;
            color: var(--text-dark);
            margin: 0 15px;
            letter-spacing: 1px;
        }

        /* --- HERO SECTION --- */
        .hero {
            background-color: #b5b5b5;
            padding: 80px 40px;
            text-align: left;
            color: white;
        }

        .hero h1 {
            font-size: 2.5rem;
            max-width: 400px;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 0.9rem;
            margin-bottom: 20px;
            max-width: 350px;
            opacity: 0.9;
        }

        .btn {
            background: white;
            color: black;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        /* --- HOROSCOPES / GAME HAND SECTION --- */
        .section-title {
            background-color: #e3ded5;
            text-align: center;
            padding: 15px;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .horoscope-game-area {
            width: 100%;
            height: 420px;
            background: #121c1e; 
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 40px;
            overflow: visible; 
            position: relative;
        }

        .hand-container-arc {
            display: flex;
            justify-content: center;
            position: relative;
            width: 600px;
            height: 250px;
            z-index: 6;
        }

        body.game-inspected-mode .hand-container-arc {
            z-index: 100;
        }

        .game-tarot-item {
            position: absolute;
            bottom: 0;
            width: 200px;
            height: 300px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            box-sizing: border-box;
            font-family: "Boldonse", system-ui;

            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), z-index 0s, opacity 0.4s ease;
            transform-style: preserve-3d;

            --angle: calc(var(--card-index) * 5deg);
            --shift-y: calc(var(--card-index) * var(--card-index) * 3px);
            --shift-x: calc(var(--card-index) * 100px);

            transform: translateX(var(--shift-x)) translateY(var(--shift-y)) rotate(var(--angle));
            transform-origin: bottom center;
            z-index: calc(10 + var(--card-index));
        }

        .game-card-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.35, 1);
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        }

        .game-face-front,
        .game-face-back {
            position: absolute;
            inset: 0;
            border-radius: 12px;
            padding: 16px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            backface-visibility: hidden;
            border: 3px solid #7f8c8d;
            color: white;
            overflow: hidden;
            font-family: "Akt", sans-serif;
        }

        .game-face-front {
            background-size: cover;
            background-position: center;
            z-index: 2;
            transform: rotateY(0deg);
            justify-content: space-between;
        }

        .game-face-back {
            background: linear-gradient(135deg, #1a252f, #11171d);
            border-color: #d35400;
            transform: rotateY(180deg);
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .game-popup-photo-panel {
            position: absolute;
            top: 0;
            left: 100%;
            margin-left: 8px;
            width: 200px;
            height: 300px;
            border-radius: 8px;
            border: 2px solid #e67e22;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            transform: rotateY(180deg);
            backface-visibility: hidden;
            pointer-events: none;
            transition: opacity 0.4s ease;
            opacity: 0;
        }

        .game-tarot-item.cr-is-inspecting .game-popup-photo-panel {
            opacity: 1;
        }

        .game-popup-photo-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .game-back-title-label {
            font-family: "Boldonse", system-ui;
            font-size: 14px;
            text-transform: uppercase;
            color: #e67e22;
            letter-spacing: 1px;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .game-back-description-text {
            font-size: 11px;
            color: #95a5a6;
            font-style: italic;
            line-height: 1.5;
        }

        body:not(.game-inspected-mode) .game-tarot-item:hover,
        body:not(.game-inspected-mode) .game-tarot-item:focus {
            transform: translateX(var(--shift-x)) translateY(-70px) scale(0.90) rotate(0deg) !important;
            z-index: 100 !important;
            outline: none;
        }

        body:not(.game-inspected-mode) .game-tarot-item:hover .game-card-wrapper {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        }

        body:not(.game-inspected-mode) .game-tarot-item:hover .game-face-front {
            border-color: #f1c40f;
        }

        .game-tarot-item.cr-is-inspecting {
            transform: translateX(180px) translateY(-22vh) scale(1.8) rotate(0deg) !important;
            left: calc(50% - 100px);
            z-index: 200 !important;
            cursor: default;
        }

        .game-tarot-item.cr-is-inspecting .game-card-wrapper {
            transform: rotateY(180deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
        }

        body.game-inspected-mode .game-tarot-item:not(.cr-is-inspecting) {
            opacity: 0.2;
            pointer-events: none;
        }

        /* HUD Controls Overlay */
        .game-hud-controls-overlay {
            position: fixed;
            top: 25px;
            right: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 500;
            pointer-events: none;
        }

        .cr-back-dismiss-btn,
        .cr-order-checkout-btn {
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            cursor: pointer;
            border: 2px solid #fff;
            font-family: "Boldonse", system-ui;
        }

        .game-hud-controls-overlay.cr-visible-ui .cr-back-dismiss-btn,
        .game-hud-controls-overlay.cr-visible-ui .cr-order-checkout-btn {
            opacity: 1;
            transform: scale(1);
            pointer-events: all;
        }

        .cr-back-dismiss-btn {
            background: #e74c3c;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 20px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cr-back-dismiss-btn:hover {
            background: #c0392b;
            transform: scale(1.1);
        }

        .cr-order-checkout-btn {
            background: #2ecc71;
            color: white;
            padding: 0 24px;
            height: 45px;
            border-radius: 23px;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cr-order-checkout-btn:hover {
            background: #27ae60;
            transform: scale(1.05);
        }

        /* --- MENU SECTION --- */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 40px;
            justify-items: center;
        }

        .tarot-card {
            background-color: var(--card-bg);
            border: 4px double var(--accent-gold);
            border-radius: 8px;
            width: 260px;
            padding: 20px;
            text-align: center;
            color: white;
            position: relative;
            cursor: pointer;
            transition: transform 0.2s;
            box-shadow: 0 8px 15px rgba(0,0,0,0.3);
        }

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

        .card-num {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .card-art-container {
            border: 1px solid var(--accent-gold);
            padding: 15px 5px;
            margin-bottom: 15px;
            position: relative;
            background: radial-gradient(circle, #2a2015 0%, #000000 100%);
        }

        .drink-image {
            width: 120px;
            height: auto;
            display: block;
            margin: 0 auto;
            filter: drop-shadow(0 0 10px rgba(255,165,0,0.5));
        }

        .card-title {
            font-family: 'Times New Roman', serif;
            font-style: italic;
            color: #ffffff;
            font-size: 1.2rem;
            margin-top: 10px;
            letter-spacing: 1px;
        }

        /* --- CUSTOMIZATION MODAL --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background: #d4d4d4;
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 450px;
            text-align: center;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px; right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .custom-sliders {
            display: flex;
            justify-content: space-around;
            margin: 25px 0;
        }

        .slider-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 30%;
        }

        .bottle-icon {
            width: 50px;
            height: 80px;
            border: 3px solid #333;
            border-radius: 10px 10px 5px 5px;
            position: relative;
            background: #fff;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .bottle-fill {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            background: #c5a059;
            height: 75%; 
            transition: height 0.2s ease;
        }

        .slider-wrapper {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            margin-bottom: 10px;
        }

        .slider-group input[type="range"] {
            transform: rotate(-90deg); 
            width: 90px;
            background: #b5b5b5;
            cursor: pointer;
        }

        .modal-input, .modal-select {
            width: 100%;
            padding: 12px;
            margin: 8px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 0.9rem;
            background: white;
        }

        .order-btn {
            background: #fff;
            color: #000;
            border: 1px solid #ccc;
            width: 100%;
            padding: 12px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            text-transform: uppercase;
        }

        /* --- CHECKOUT VIEW --- */
        .checkout-section {
            padding: 40px;
            background: #fdfdfd;
            border-top: 2px solid #eaeaea;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .checkout-input {
            width: 100%;
            background: #e2e2e2;
            padding: 20px;
            border: 2px dashed #999;
            border-radius: 4px;
            text-align: center;
            font-size: 1.2rem;
            text-transform: uppercase;
            font-family: inherit;
        }
        
        .checkout-input:focus {
            background: #d8d8d8;
            outline: none;
            border-color: var(--accent-gold);
        }

        .receipt-box {
            background: #e2e2e2;
            min-height: 200px;
            padding: 30px;
            text-align: left;
            border-radius: 4px;
            border: 2px dashed #999;
        }

        .receipt-placeholder {
            text-align: center;
            font-size: 1.3rem;
            text-transform: uppercase;
            color: #666;
            margin-top: 50px;
        }

        .receipt-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #ccc;
            font-size: 0.95rem;
        }

        .receipt-item span {
            font-style: italic;
        }

        .receipt-total {
            text-align: right;
            font-size: 1.3rem;
            font-weight: bold;
            margin-top: 20px;
            text-transform: uppercase;
        }

        /* --- TOAST NOTIFICATION POPUP --- */
        .toast-popup-alert {
            position: fixed;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: #11171d;
            color: white;
            border: 2px solid var(--accent-gold);
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            z-index: 2000;
            transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .toast-popup-alert.show-toast {
            top: 30px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--footer-bg);
            color: #d9d2c9;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            font-size: 0.75rem;
        }

        footer h4 {
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 1px;
            color: #ffffff;
        }

        footer ul {
            list-style: none;
        }

        footer ul li {
            margin-bottom: 6px;
            opacity: 0.8;
        }