:root {
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --text: #2d3340;
    --text-muted: #6b7280;
    --accent-blue: #1a2b8f;
    --accent-orange: #FF8717;
    --success: #2fbf71;
    --error: #ff6b6b;
    --cork-light: #d4a574;
    --cork-medium: #c08e5f;
    --cork-dark: #a6754a;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: #fff;
}

/* ===================== */
/* VIEWS */
/* ===================== */
.view {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}



/* ===================== */
/* API KEY MODAL */
/* ===================== */
#apiKeyModal {
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.api-key-modal {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.api-key-modal h2 {
    margin: 0 0 16px;
    font-size: 2rem;
}

.api-key-modal p {
    color: #aaa;
    margin: 0 0 24px;
}

.api-key-modal input {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 16px;
}

.api-key-modal input::placeholder {
    color: #888;
}

.api-key-help {
    font-size: 0.9rem;
    color: #888;
    margin-top: 16px;
}

.api-key-help a {
    color: var(--accent-orange);
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.radio-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.radio-option input {
    width: auto;
    margin: 0;
}

/* ===================== */
/* BUTTONS */
/* ===================== */
.btn-primary {
    background: var(--accent-orange);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 135, 23, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 24px;
}

.btn-new-picture {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    border: none;
    padding: 20px 48px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(255, 135, 23, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-new-picture:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 12px 48px rgba(255, 135, 23, 0.6);
}

/* ===================== */
/* GALLERY */
/* ===================== */
#galleryView {
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(to bottom, var(--cork-light) 0%, var(--cork-medium) 50%, var(--cork-dark) 100%);
    overflow-y: auto;
    /* Enable vertical scroll */
}

.cork-board {
    min-height: 100vh;
    padding: 100px 40px 120px;
    /* Increased top padding to clear header */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.board-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.board-header {
    text-align: center;
    margin-bottom: 40px;
    position: sticky;
    top: 20px;
    z-index: 50;
}

/* Powered by badge */
.powered-by-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    transform: rotate(-3deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.powered-by-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.powered-by-badge img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.board-title {
    font-family: 'Henny Penny', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    background: url('https://static.vecteezy.com/system/resources/previews/004/515/047/large_2x/christmas-seamless-pattern-free-vector.jpg');
    background-size: 300px;
    /* Scale pattern down */
    background-repeat: repeat;
    padding: 16px 40px;
    border-radius: 12px;
    border: 3px solid #d4af37;
    /* Gold border */
    display: inline-block;
    box-shadow: 2px 0px 20px 10px #e1c354, 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 0;
    transform: rotate(-3deg);
    text-shadow:
        2px 2px 0 #000,
        /* Crisp black outline for readability */
        0 0 10px #e1c354,
        /* Golden glow */
        0 0 20px #e1c354;
    /* Stronger golden glow */
    position: relative;
    letter-spacing: 1px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    width: 100%;
}

/* ===================== */
/* GALLERY EMPTY STATE - Premium Christmas Card */
/* ===================== */
.gallery-empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    /* Card dimensions */
    max-width: 420px;
    width: 85%;
    padding: 0;

    /* Glassmorphism card */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 250, 245, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);

    /* Premium shadow stack */
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    overflow: hidden;
}

/* Festive header band with gradient */
.gallery-empty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg,
            #1a472a 0%,
            #2d5a3f 50%,
            #1a472a 100%);
    border-radius: 28px 28px 0 0;
}

/* Inner content wrapper styles via child paragraph */
.gallery-empty p {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 130px 35px 45px;

    /* Typography */
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #374151;
    letter-spacing: 0.01em;
}

/* Decorative snowflakes falling animation */
.gallery-empty::after {
    content: '❄';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(173, 216, 230, 0.6);
    animation: sparkle 2s ease-in-out infinite;
    z-index: 3;
}

/* Gold ornament accents - left */
.gallery-empty p::before {
    content: '🎄';
    position: absolute;
    top: 95px;
    left: 25px;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: sway 4s ease-in-out infinite;
    z-index: 4;
}

/* Gold ornament accents - right */
.gallery-empty p::after {
    content: '🎁';
    position: absolute;
    top: 95px;
    right: 25px;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: sway 4s ease-in-out infinite reverse;
    z-index: 4;
}

/* Sparkle animation for snowflake */
@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1) rotate(15deg);
    }
}

/* Gentle sway for ornaments */
@keyframes sway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.polaroid-card {
    background: #fff;
    padding: 10px 10px 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: rotate(var(--rotation, 0deg));
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 250px;
    border-radius: 2px;
    flex: 0 0 auto;
}

.polaroid-card:hover {
    transform: rotate(var(--rotation, 0deg)) scale(1.1) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.polaroid-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #fff, #b71c1c);
    /* Red pin */
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.polaroid-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: #eee;
}

.string-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ===================== */
/* SCENERY SELECTION */
/* ===================== */
#sceneryView {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    /* Christmassy deep winter night */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding: 40px 20px;
}

.scenery-container {
    text-align: center;
    max-width: 1400px;
    width: 100%;
}

.scenery-container h2 {
    font-size: 3rem;
    margin: 0 0 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scenery-container p {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin: 0 0 48px;
}

.scenery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    /* Bigger blocks */
    gap: 24px;
    margin-bottom: 32px;
}

.scenery-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    /* Ensure consistent height */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.scenery-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.02);
    border-color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.scenery-card.selected {
    background: rgba(255, 135, 23, 0.6);
    border-color: var(--accent-orange);
    box-shadow: 0 0 30px rgba(255, 135, 23, 0.4);
}

.random-scenery-container {
    margin-top: 24px;
}

.random-scenery-button {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.6), rgba(75, 0, 130, 0.6));
    border: 2px solid rgba(138, 43, 226, 0.6);
    border-radius: 16px;
    padding: 20px 40px;
    cursor: pointer;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.random-scenery-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(138, 43, 226, 0.5);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(75, 0, 130, 0.8));
}

.random-icon {
    font-size: 1.6rem;
}

/* ===================== */
/* CAMERA */
/* ===================== */
#cameraView {
    /* Combined background */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./assets/christmas-bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Festive fallback color */
    background-color: #0f3d24;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Removed padding to maximize space */
}

.phone-section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-viewer {
    position: relative;
    /* Responsive sizing logic */
    width: 95vw;
    height: auto;
    max-height: 95vh;
    aspect-ratio: 1907 / 969;
    /* Intrinsinc ratio of the phone image */
}

.phone-viewer img#iphoneBackground {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

#screenFrame {
    position: absolute;
    /* Correct percentages for 1907x969 image */
    left: 12.64%;
    top: 4.13%;
    width: 79.34%;
    height: 91.74%;
    overflow: hidden;
    border-radius: 20px;
    /* Approximate radius scaling */
    background: #000;
}

/* Ensure border radius scales somewhat */
@media (min-width: 1200px) {
    #screenFrame {
        border-radius: 40px;
    }
}

#cameraOverlay,
#overlayCanvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    /* Mirror camera */
}

.shutter-btn {
    position: absolute;
    /* Percentage positioning relative to phone container */
    right: 10%;
    /* Placed on the bezel (bezel is ~8% wide) */
    top: 50%;
    transform: translateY(-50%);
    width: 6.5%;
    /* Slightly larger touch target */
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    /* Slightly more opaque */
    border: 4px solid rgba(255, 255, 255, 0.3);
    /* Thicker border */
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s, background 0.2s;
    z-index: 20;
    /* Ensure it stays on top */
}

.shutter-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.shutter-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Countdown & Confirm */
.countdown {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    /* Transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20vw;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 500;
    pointer-events: none;
}

.confirm-overlay {
    position: absolute;
    /* Relative to screenFrame or phoneViewer? absolute to screenFrame is better */
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 100;
}

.emoji-btn,
.icon-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.emoji-btn:hover,
.icon-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Fallback message */
.fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    padding: 20px;
}

/* ===================== */
/* PROCESSING */
/* ===================== */
#processingView {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.snowflake {
    font-size: 5rem;
    animation: spin-cw 3s linear infinite;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes spin-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.progress-container {
    width: 300px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff8717);
    border-radius: 5px;
    transition: width 0.5s linear;
    box-shadow: 0 0 10px rgba(255, 135, 23, 0.5);
}

/* ===================== */
/* PREVIEW */
/* ===================== */
.preview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    opacity: 0;
    transition: opacity 0.5s;
}

.preview-overlay.show {
    opacity: 1;
}

.preview-polaroid {
    background: #fff;
    padding: 15px 15px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.9) rotate(2deg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.preview-overlay.show .preview-polaroid {
    transform: scale(1) rotate(0deg);
}

.preview-polaroid img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    background: #eee;
}

/* ===================== */
/* FLASH EFFECT */
/* ===================== */
.flash-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    transition: opacity 0.1s;
}

.flash-overlay.flash-active {
    opacity: 1;
}

/* ===================== */
/* DOWNLOAD BUTTONS */
/* ===================== */
.btn-download {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1600;
    box-shadow: 0 8px 24px rgba(255, 135, 23, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 135, 23, 0.6);
}

.btn-close-preview {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.btn-close-preview:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-download-all {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-reset-gallery {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-reset-gallery:hover {
    background: rgba(220, 53, 69, 0.8);
    color: white;
    transform: rotate(90deg);
    border-color: transparent;
}

.btn-install-pwa {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
}

.btn-install-pwa:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-back-floating {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    z-index: 1000;
    backdrop-filter: blur(5px);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back-floating:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}