/* Splash Screen */
        .splash-screen {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            /*padding-bottom: 8vh;*/
            padding-bottom: 20vh;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .splash-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .splash-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .splash-logo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            animation: splashFadeIn 1.5s ease forwards;
        }

        @keyframes splashFadeIn {
            from { opacity: 0; transform: scale(1.04); }
            to   { opacity: 1; transform: scale(1); }
        }

        .splash-enter-btn {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 52px;
            background: linear-gradient(135deg, #c9a84c 0%, #e8c96e 50%, #c9a84c 100%);
            color: #fff;
            font-family: 'Lora', serif;
            font-size: 1.15rem;
            letter-spacing: 0.1em;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.2);
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            opacity: 0;
            animation: btnAppear 0.6s ease 3s forwards;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        @keyframes btnAppear {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .splash-enter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.3);
        }

        .splash-enter-btn:active {
            transform: translateY(0);
        }
