/*
    Most of the CSS for this game was designed by DeepSeek AI.
    Credit: DeepSeek AI for CSS design and contribution.
*/

#screensaverMessage {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    transform: translateY(0);
    color: #92400e !important;
}

#screensaver {
    background-color: #fefce8 !important;
}

#screensaver .text-yellow-600,
#screensaverMessage.text-yellow-600,
.screensaver-container .text-yellow-600 {
    color: #92400e !important;
}

#screensaver .text-gray-600,
.screensaver-container .text-gray-600 {
    color: #4b5563 !important;
}

.dark #screensaver .text-yellow-600,
.dark #screensaverMessage.text-yellow-600,
.dark .screensaver-container .text-yellow-600,
#screensaver.dark .text-yellow-600 {
    color: #92400e !important;
}

.dark #screensaver .text-gray-600,
.dark .screensaver-container .text-gray-600,
#screensaver.dark .text-gray-600 {
    color: #4b5563 !important;
}

.skin-jungle #screensaver .text-yellow-600,
.skin-jungle #screensaverMessage.text-yellow-600,
.skin-jungle .screensaver-container .text-yellow-600,
#screensaver.skin-jungle .text-yellow-600 {
    color: #92400e !important;
}

.skin-neon #screensaver .text-yellow-600,
.skin-neon #screensaverMessage.text-yellow-600,
.skin-neon .screensaver-container .text-yellow-600,
#screensaver.skin-neon .text-yellow-600 {
    color: #92400e !important;
}

.skin-mono #screensaver .text-yellow-600,
.skin-mono #screensaverMessage.text-yellow-600,
.skin-mono .screensaver-container .text-yellow-600,
#screensaver.skin-mono .text-yellow-600 {
    color: #92400e !important;
}

.skin-jungle #screensaver .text-gray-600,
.skin-jungle .screensaver-container .text-gray-600,
#screensaver.skin-jungle .text-gray-600 {
    color: #4b5563 !important;
}

.skin-neon #screensaver .text-gray-600,
.skin-neon .screensaver-container .text-gray-600,
#screensaver.skin-neon .text-gray-600 {
    color: #4b5563 !important;
}

.skin-mono #screensaver .text-gray-600,
.skin-mono .screensaver-container .text-gray-600,
#screensaver.skin-mono .text-gray-600 {
    color: #4b5563 !important;
}


.screensaver-sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: background 0.8s ease;
    isolation: isolate;
    z-index: 1;
}

.screensaver-sky::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 180, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
    animation: fadeGradient 8s ease-in-out infinite;
}

@keyframes fadeGradient {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.screensaver-sky .sky-icon {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    line-height: 1;
    animation: skyFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
    z-index: 2;
}

.screensaver-sky .sky-element {
    position: absolute;
    opacity: 0.65;
    filter: blur(0.2px);
    animation: skyDrift 14s ease-in-out infinite;
    z-index: -1;
}

.screensaver-sky .sky-element.cloud {
    width: 120px;
    height: 50px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 999px;
}

.screensaver-sky .sky-element.cloud::after,
.screensaver-sky .sky-element.cloud::before {
    content: '';
    position: absolute;
    background: inherit;
    width: 80px;
    height: 40px;
    border-radius: inherit;
    top: -18px;
}

.screensaver-sky .sky-element.cloud::after {
    left: 15px;
}

.screensaver-sky .sky-element.cloud::before {
    right: 15px;
}

.screensaver-sky .sky-element.star {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: starTwinkle 2.4s ease-in-out infinite;
}

.screensaver-sky .sky-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0.5;
    filter: blur(20px);
    z-index: -2;
}

.sky-theme-morning {
    background: linear-gradient(180deg, #fde68a 0%, #f59e0b 50%, #f97316 80%, #fef3c7 100%);
}

.sky-theme-morning .sky-glow {
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.4), transparent 70%);
}

.sky-theme-afternoon {
    background: linear-gradient(180deg, #dbeafe 0%, #93c5fd 50%, #60a5fa 80%, #fef3c7 100%);
}

.sky-theme-afternoon .sky-glow {
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.3), transparent 70%);
}

.sky-theme-evening {
    background: linear-gradient(180deg, #fde047 0%, #fb923c 40%, #8b5cf6 70%, #f5d0fe 100%);
}

.sky-theme-evening .sky-glow {
    background: radial-gradient(circle at 50% 20%, rgba(255, 200, 100, 0.3), transparent 70%);
}

.sky-theme-night {
    background: linear-gradient(180deg, #1e3a8a 0%, #0f172a 60%, #020617 85%, #020617 100%);
}


.sky-theme-morning {
    filter: brightness(1.15) contrast(1.05);
}

.sky-theme-afternoon {
    filter: brightness(1.1) contrast(1.02);
}

.sky-theme-evening {
    filter: brightness(0.95) contrast(1.08);
}

.sky-theme-night {
    filter: brightness(0.7) contrast(1.1);
}

.sky-theme-night .sky-element.star {
    animation-duration: 3s;
}

.cloud-1 {
    top: 18%;
    left: -10%;
    animation-duration: 18s;
}

.cloud-2 {
    top: 5%;
    right: -15%;
    opacity: 0.55;
    animation-duration: 22s;
}

.cloud-3 {
    bottom: 30%;
    left: 10%;
    transform: scale(0.8);
    animation-duration: 16s;
}

.cloud-4 {
    top: 25%;
    left: 40%;
    opacity: 0.5;
    transform: scale(0.7);
    animation-duration: 20s;
}

.cloud-5 {
    bottom: 20%;
    right: 5%;
    opacity: 0.6;
    transform: scale(0.9);
    animation-duration: 24s;
}

.cloud-6 {
    top: 40%;
    left: 60%;
    opacity: 0.45;
    transform: scale(0.75);
    animation-duration: 19s;
}

.cloud-7 {
    bottom: 45%;
    right: 30%;
    opacity: 0.55;
    transform: scale(0.85);
    animation-duration: 21s;
}

.star-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0.4s;
}

.star-2 {
    top: 35%;
    right: 20%;
    animation-delay: 1.2s;
}

.star-3 {
    top: 10%;
    right: 45%;
    animation-delay: 1.8s;
}

.star-4 {
    bottom: 28%;
    left: 35%;
    animation-delay: 0.9s;
}

.star-5 {
    bottom: 18%;
    right: 30%;
    animation-delay: 1.6s;
}

.star-6 {
    top: 15%;
    left: 10%;
    animation-delay: 0.2s;
}

.star-7 {
    top: 25%;
    right: 10%;
    animation-delay: 0.8s;
}

.star-8 {
    top: 8%;
    left: 50%;
    animation-delay: 2.1s;
}

.star-9 {
    top: 40%;
    left: 15%;
    animation-delay: 1.4s;
}

.star-10 {
    top: 30%;
    right: 35%;
    animation-delay: 0.6s;
}

.star-11 {
    bottom: 40%;
    left: 50%;
    animation-delay: 1.9s;
}

.star-12 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.1s;
}

.star-13 {
    top: 12%;
    left: 70%;
    animation-delay: 2.3s;
}

.star-14 {
    bottom: 35%;
    left: 60%;
    animation-delay: 0.5s;
}

.star-15 {
    bottom: 15%;
    left: 20%;
    animation-delay: 1.7s;
}

.screensaver-sky .sky-moon-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(248, 250, 252, 0.35);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation: skyGlowPulse 5s ease-in-out infinite;
    opacity: 0;
    z-index: 2;
}

.sky-theme-night .sky-moon-ring {
    opacity: 1;
}

.screensaver-sky .sky-sun-rays {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    opacity: 0;
    z-index: 1;
}

.sky-theme-morning .sky-sun-rays {
    opacity: 0.4;
    animation: sunRaysRotate 10s linear infinite;
}

.screensaver-sky .sky-sun-rays::before,
.screensaver-sky .sky-sun-rays::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3), transparent);
    transform-origin: center bottom;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.screensaver-sky .sky-sun-rays::before {
    transform: translate(-50%, -100%) rotate(0deg);
}

.screensaver-sky .sky-sun-rays::after {
    transform: translate(-50%, -100%) rotate(90deg);
}

.sky-theme-morning .sky-icon::before,
.sky-theme-morning .sky-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 45px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    transform-origin: center bottom;
    border-radius: 2px;
    z-index: -1;
}

.sky-theme-morning .sky-icon::before {
    transform: translate(-50%, -100%) rotate(45deg);
}

.sky-theme-morning .sky-icon::after {
    transform: translate(-50%, -100%) rotate(-45deg);
}

.screensaver-sky .sky-shooting-star {
    position: absolute;
    width: 3px;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.6), transparent);
    opacity: 0;
    z-index: 3;
    transform-origin: bottom center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
}

.sky-theme-night .sky-shooting-star {
    opacity: 1;
}

.screensaver-sky .sky-shooting-star::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 12px white, 0 0 24px rgba(255, 255, 255, 0.8);
    animation: starGlow 0.5s ease-in-out infinite alternate;
}

.screensaver-sky .sky-shooting-star::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3), transparent);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.screensaver-sky .sky-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
    animation: sparkleFloat 4s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.sky-theme-morning .sky-sparkle {
    background: rgba(255, 255, 200, 0.9);
    box-shadow: 0 0 6px rgba(255, 255, 200, 0.8);
}

.sky-theme-afternoon .sky-sparkle {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.sky-theme-evening .sky-sparkle {
    background: rgba(255, 200, 150, 0.9);
    box-shadow: 0 0 6px rgba(255, 200, 150, 0.8);
}

.sky-theme-night .sky-sparkle {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 255, 255, 1);
}

.screensaver-sky .sky-icon {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.sky-theme-morning .sky-icon {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 30px rgba(255, 200, 0, 0.5));
}

.sky-theme-evening .sky-icon {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 30px rgba(255, 150, 0, 0.5));
}

.sky-theme-night .sky-icon {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 25px rgba(255, 255, 200, 0.4));
}

.sparkle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.sparkle-3 {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

.sparkle-4 {
    bottom: 30%;
    right: 40%;
    animation-delay: 1.5s;
}

.sparkle-5 {
    top: 25%;
    left: 70%;
    animation-delay: 0.5s;
}

.shooting-star-1 {
    top: -10%;
    left: 20%;
    animation: shootingStarFall 2.5s ease-out infinite;
    animation-delay: 0s;
}

.shooting-star-2 {
    top: -10%;
    right: 15%;
    animation: shootingStarFall 3s ease-out infinite;
    animation-delay: 1.5s;
}

.shooting-star-3 {
    top: -10%;
    left: 60%;
    animation: shootingStarFall 2.8s ease-out infinite;
    animation-delay: 3s;
}

@keyframes skyDrift {
    0% {
        transform: translateX(-25px);
    }

    50% {
        transform: translateX(25px);
    }

    100% {
        transform: translateX(-25px);
    }
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes skyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes skyGlowPulse {

    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.55;
        transform: scale(1.05);
    }
}

@keyframes sunRaysRotate {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes shootingStarFall {
    0% {
        opacity: 0;
        transform: translateY(0) scaleY(0.5);
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(110vh) scaleY(1.2);
    }
}

@keyframes starGlow {
    0% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 12px white, 0 0 24px rgba(255, 255, 255, 0.8);
    }

    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.2);
        box-shadow: 0 0 16px white, 0 0 32px rgba(255, 255, 255, 1);
    }
}

@keyframes sparkleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

#screensaver {
    overflow: hidden;
    cursor: pointer;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.44), transparent 26%),
        linear-gradient(180deg, #fefce8 0%, #fef3c7 55%, #d9f99d 100%) !important;
}

body.screensaver-active {
    overflow: hidden;
}

#screensaver::before,
#screensaver::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

#screensaver::before {
    top: 0;
    height: 23vh;
    z-index: 4;
    background:
        radial-gradient(ellipse at 6% -10%, rgba(21, 128, 61, 0.72) 0 36%, transparent 37%),
        radial-gradient(ellipse at 22% -18%, rgba(22, 101, 52, 0.62) 0 34%, transparent 35%),
        radial-gradient(ellipse at 47% -22%, rgba(20, 83, 45, 0.54) 0 34%, transparent 35%),
        radial-gradient(ellipse at 73% -14%, rgba(21, 128, 61, 0.66) 0 35%, transparent 36%),
        radial-gradient(ellipse at 96% -10%, rgba(22, 101, 52, 0.7) 0 36%, transparent 37%);
    filter: drop-shadow(0 18px 28px rgba(20, 83, 45, 0.18));
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
    animation: screensaverCanopySway 13s ease-in-out infinite;
}

#screensaver::after {
    bottom: 0;
    height: 28vh;
    z-index: 5;
    background:
        radial-gradient(ellipse at 20% 104%, rgba(20, 83, 45, 0.86) 0 22%, transparent 23%),
        radial-gradient(ellipse at 55% 112%, rgba(22, 101, 52, 0.8) 0 28%, transparent 29%),
        radial-gradient(ellipse at 88% 106%, rgba(21, 128, 61, 0.72) 0 24%, transparent 25%),
        linear-gradient(180deg, rgba(254, 243, 199, 0) 0%, rgba(187, 247, 208, 0.38) 48%, rgba(74, 222, 128, 0.34) 100%);
}

#screensaverBananas {
    z-index: 6;
}

.screensaver-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(94vw, 940px);
    padding: clamp(18px, 3vw, 32px);
    text-align: center;
}

.screensaver-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(230px, 31vw, 380px);
    aspect-ratio: 1;
    margin-bottom: clamp(12px, 2.4vw, 24px);
}

.screensaver-spotlight {
    position: absolute;
    inset: 9%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.7), rgba(254, 240, 138, 0.3) 38%, transparent 68%),
        conic-gradient(from 20deg, rgba(250, 204, 21, 0.22), transparent 18%, rgba(45, 212, 191, 0.14), transparent 43%, rgba(250, 204, 21, 0.18), transparent 74%);
    filter: blur(2px);
    animation: screensaverSpotlightPulse 5.5s ease-in-out infinite;
}

.screensaver-shadow {
    position: absolute;
    bottom: 13%;
    width: 58%;
    height: 11%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(69, 26, 3, 0.32), rgba(69, 26, 3, 0.08) 58%, transparent 72%);
    filter: blur(6px);
    animation: screensaverShadowPulse 4.8s ease-in-out infinite;
}

.screensaver-monkey {
    position: relative;
    z-index: 2;
    width: clamp(180px, 25vw, 310px) !important;
    height: clamp(180px, 25vw, 310px) !important;
    margin: 0 !important;
    animation: screensaverMonkeyFloat 4.8s ease-in-out infinite !important;
    filter: drop-shadow(0 26px 26px rgba(69, 26, 3, 0.22)) drop-shadow(0 0 24px rgba(254, 240, 138, 0.34));
}

.screensaver-message {
    max-width: min(94vw, 900px);
    margin: 0;
    color: #78350f !important;
    font-size: clamp(1.35rem, 2.8vw, 2.15rem) !important;
    font-weight: 800 !important;
    line-height: 1.12;
    letter-spacing: 0;
    text-shadow: 0 2px 0 rgba(255, 251, 235, 0.8), 0 18px 36px rgba(120, 53, 15, 0.18);
}

.screensaver-wake-message {
    margin-top: 12px !important;
    color: #14532d !important;
    font-size: clamp(0.88rem, 1.5vw, 1.08rem) !important;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.screensaver-wake-message::before,
.screensaver-wake-message::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 10px 1px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.7);
    animation: sparkleFloat 3.2s ease-in-out infinite;
}

.screensaver-wake-message::after {
    animation-delay: 1.4s;
}

.screensaver-sky {
    background-color: #fde68a;
}

.screensaver-sky::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 34%, rgba(255, 255, 255, 0.22), transparent 15%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 13%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(20, 83, 45, 0.06));
}

.screensaver-sky::after {
    top: 0;
    bottom: auto;
    height: 100%;
    background:
        linear-gradient(to bottom, transparent 0%, transparent 52%, rgba(255, 251, 235, 0.48) 76%, rgba(187, 247, 208, 0.76) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(34, 197, 94, 0.38), transparent 62%);
    animation: fadeGradient 10s ease-in-out infinite;
}

.sky-theme-morning {
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.48), transparent 16%),
        linear-gradient(180deg, #a7f3d0 0%, #fde68a 46%, #fb923c 72%, #bbf7d0 100%);
}

.sky-theme-afternoon {
    background:
        radial-gradient(circle at 54% 16%, rgba(255, 255, 255, 0.42), transparent 15%),
        linear-gradient(180deg, #7dd3fc 0%, #bae6fd 42%, #fde68a 72%, #bbf7d0 100%);
}

.sky-theme-evening {
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.32), transparent 16%),
        linear-gradient(180deg, #8b5cf6 0%, #fb7185 36%, #f59e0b 70%, #bbf7d0 100%);
}

.sky-theme-night {
    background:
        radial-gradient(circle at 50% 18%, rgba(125, 211, 252, 0.18), transparent 18%),
        linear-gradient(180deg, #172554 0%, #312e81 44%, #0f172a 78%, #064e3b 100%);
}

.screensaver-sky .sky-glow {
    z-index: 0;
    opacity: 0.75;
    filter: blur(44px);
}

.screensaver-sky .sky-orb {
    position: absolute;
    top: clamp(56px, 13vh, 140px);
    left: 50%;
    width: clamp(74px, 9vw, 120px);
    height: clamp(74px, 9vw, 120px);
    z-index: 3;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: skyFloat 6.8s ease-in-out infinite;
}

.sky-theme-morning .sky-orb {
    background: radial-gradient(circle at 35% 35%, #fff7ad 0 18%, #facc15 42%, #f97316 76%);
    box-shadow: 0 0 34px rgba(250, 204, 21, 0.72), 0 0 96px rgba(251, 146, 60, 0.44);
}

.sky-theme-afternoon .sky-orb {
    background: radial-gradient(circle at 35% 35%, #fff7ad 0 16%, #fde047 46%, #f59e0b 82%);
    box-shadow: 0 0 38px rgba(253, 224, 71, 0.7), 0 0 92px rgba(14, 165, 233, 0.34);
}

.sky-theme-evening .sky-orb {
    background: radial-gradient(circle at 34% 32%, #fde68a 0 15%, #fb7185 48%, #7c3aed 86%);
    box-shadow: 0 0 38px rgba(251, 113, 133, 0.62), 0 0 96px rgba(124, 58, 237, 0.42);
}

.sky-theme-night .sky-orb {
    background: radial-gradient(circle at 42% 34%, #f8fafc 0 26%, #c7d2fe 62%, #60a5fa 100%);
    box-shadow: 0 0 34px rgba(199, 210, 254, 0.58), 0 0 96px rgba(96, 165, 250, 0.32);
}

.sky-theme-night .sky-orb::after {
    content: '';
    position: absolute;
    top: 8%;
    left: 20%;
    width: 86%;
    height: 86%;
    border-radius: 50%;
    background: #172554;
}

.screensaver-sky .sky-sun-rays {
    top: clamp(18px, 7vh, 86px);
    width: clamp(150px, 22vw, 260px);
    height: clamp(150px, 22vw, 260px);
    z-index: 2;
}

.sky-theme-morning .sky-sun-rays,
.sky-theme-afternoon .sky-sun-rays,
.sky-theme-evening .sky-sun-rays {
    opacity: 0.34;
    animation: sunRaysRotate 18s linear infinite;
}

.screensaver-sky .sky-element {
    z-index: 2;
    opacity: 0.78;
    filter: blur(0.1px) drop-shadow(0 14px 24px rgba(255, 255, 255, 0.18));
}

.screensaver-sky .sky-element.cloud {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 235, 0.58));
    box-shadow: inset 0 -10px 18px rgba(255, 255, 255, 0.22), 0 16px 32px rgba(120, 53, 15, 0.08);
}

.screensaver-sky .sky-sparkle {
    z-index: 4;
}

.screensaver-banana {
    position: absolute;
    display: block;
    width: clamp(32px, 4vw, 58px);
    height: clamp(32px, 4vw, 58px);
    background: url('../assets/images/banana.png') center / contain no-repeat;
    opacity: 0.34;
    filter: drop-shadow(0 8px 16px rgba(120, 53, 15, 0.18));
    animation: screensaverBananaDrift 12s ease-in-out infinite;
}

.banana-drift-1 {
    top: 19%;
    left: 13%;
    animation-delay: 0s;
}

.banana-drift-2 {
    top: 30%;
    right: 14%;
    transform: rotate(18deg);
    animation-delay: 1.1s;
}

.banana-drift-3 {
    bottom: 27%;
    left: 18%;
    transform: rotate(-18deg) scale(0.86);
    animation-delay: 2.4s;
}

.banana-drift-4 {
    bottom: 22%;
    right: 20%;
    transform: rotate(25deg) scale(0.92);
    animation-delay: 3.1s;
}

.banana-drift-5 {
    top: 13%;
    right: 32%;
    transform: rotate(-12deg) scale(0.74);
    animation-delay: 4s;
}

.banana-drift-6 {
    top: 44%;
    left: 8%;
    transform: rotate(20deg) scale(0.68);
    animation-delay: 5.2s;
}

.banana-drift-7 {
    top: 45%;
    right: 8%;
    transform: rotate(-22deg) scale(0.7);
    animation-delay: 6.5s;
}

@keyframes screensaverMonkeyFloat {

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

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes screensaverSpotlightPulse {

    0%,
    100% {
        opacity: 0.82;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes screensaverShadowPulse {

    0%,
    100% {
        opacity: 0.72;
        transform: scaleX(0.94);
    }

    50% {
        opacity: 0.48;
        transform: scaleX(1.08);
    }
}

@keyframes screensaverCanopySway {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-12px);
    }
}

@keyframes screensaverBananaDrift {

    0%,
    100% {
        opacity: 0.24;
        margin-top: 0;
    }

    50% {
        opacity: 0.44;
        margin-top: -18px;
    }
}

@media (max-width: 640px) {
    #screensaver::before {
        height: 18vh;
    }

    #screensaver::after {
        height: 22vh;
    }

    .screensaver-content {
        width: 100%;
        padding: 18px;
    }

    .screensaver-stage {
        width: min(76vw, 280px);
        margin-bottom: 10px;
    }

    .screensaver-message {
        font-size: clamp(1.15rem, 7vw, 1.65rem) !important;
        line-height: 1.18;
    }

    .screensaver-wake-message {
        max-width: 88vw;
    }

    .cloud-3,
    .cloud-5,
    .cloud-6,
    .cloud-7,
    .screensaver-banana {
        display: none;
    }

    .banana-drift-1,
    .banana-drift-2 {
        display: block;
    }
}

.falling-banana::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 180%;
    background: linear-gradient(180deg, rgba(255, 255, 180, 0.18) 0%, rgba(255, 255, 180, 0.10) 60%, rgba(255, 255, 180, 0) 100%);
    filter: blur(8px);
    border-radius: 40% 40% 60% 60%/50% 50% 80% 80%;
    transform: translate(-50%, -30%) scaleY(1.1);
    pointer-events: none;
    z-index: -1;
}

.falling-banana.golden::before {
    background: linear-gradient(180deg, rgba(254, 243, 199, 0.45) 0%, rgba(245, 158, 11, 0.25) 60%, rgba(217, 119, 6, 0) 100%);
    filter: blur(12px);
}

.dark .falling-banana.golden::before {
    background: linear-gradient(180deg, rgba(255, 255, 200, 0.35) 0%, rgba(255, 215, 0, 0.18) 60%, rgba(255, 255, 180, 0) 100%);
}

#bananaClickLeaderboard {
    cursor: default;
}

.banana-click-popup {
    position: fixed;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    transform: translate(-50%, -10px);
    transition: transform 600ms ease-out, opacity 600ms ease-out;
    opacity: 1;
    z-index: 99999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.banana-click-popup.fade-up {
    transform: translate(-50%, -40px);
    opacity: 0;
}

.falling-banana.golden {
    filter: drop-shadow(0 0 16px #f59e0b) drop-shadow(0 0 32px #d97706);
    z-index: 2;
}

.dark .falling-banana.golden {
    filter: drop-shadow(0 0 16px #ffe066) drop-shadow(0 0 32px #ffd700);
}

.falling-banana.golden::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, #fef3c7 0%, #f59e0b 60%, transparent 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

.dark .falling-banana.golden::after {
    background: radial-gradient(circle, #fffbe6 0%, #ffe066 60%, transparent 100%);
}

#app,
header,
main,
#mobileMenu,
#mobileMenuOverlay {
    position: relative;
    z-index: 1;
}

.falling-banana {
    animation: banana-fall-sway-spin linear 2.8s forwards;
    will-change: transform, opacity;
    user-select: none;
    pointer-events: none;
}

@keyframes banana-fall-sway-spin {
    0% {
        transform:
            translateY(0) translateX(0) scale(1) rotate(var(--banana-rotate-start, 0deg));
        opacity: 0.8;
    }

    20% {
        transform:
            translateY(20vh) translateX(-20px) scale(1.05) rotate(var(--banana-rotate-mid, 30deg));
    }

    50% {
        transform:
            translateY(50vh) translateX(20px) scale(1) rotate(var(--banana-rotate-end, 60deg));
        opacity: 1;
    }

    80% {
        transform:
            translateY(80vh) translateX(-10px) scale(0.98) rotate(var(--banana-rotate-mid, 30deg));
    }

    100% {
        transform:
            translateY(100vh) translateX(0) scale(0.95) rotate(var(--banana-rotate-start, 0deg));
        opacity: 0.2;
    }
}

.achievement-badge-icon,
.achievement-badge-icon.fas {
    color: #f59e42 !important;
}

html,
body,
.custom-scrollbar,
.h-32,
.h-40,
.overflow-y-auto {
    scrollbar-width: thin;
    scrollbar-color: #fbbf24 #23272f;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.custom-scrollbar::-webkit-scrollbar,
.h-32::-webkit-scrollbar,
.h-40::-webkit-scrollbar,
.overflow-y-auto::-webkit-scrollbar {
    width: 10px;
    background: #23272f;
    border-radius: 8px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.custom-scrollbar::-webkit-scrollbar-thumb,
.h-32::-webkit-scrollbar-thumb,
.h-40::-webkit-scrollbar-thumb,
.overflow-y-auto::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fbbf24 60%, #f59e42 100%);
    border-radius: 8px;
    border: 2px solid #23272f;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.custom-scrollbar::-webkit-scrollbar-thumb:hover,
.h-32::-webkit-scrollbar-thumb:hover,
.h-40::-webkit-scrollbar-thumb:hover,
.overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f59e42 60%, #fbbf24 100%);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
.custom-scrollbar::-webkit-scrollbar-corner,
.h-32::-webkit-scrollbar-corner,
.h-40::-webkit-scrollbar-corner,
.overflow-y-auto::-webkit-scrollbar-corner {
    background: #23272f;
}

#mpEmojiPicker .flex.flex-wrap {
    scrollbar-width: thin;
    scrollbar-color: #fbbf24 #23272f;
}

#mpEmojiPicker .flex.flex-wrap::-webkit-scrollbar {
    width: 8px;
    background: #23272f;
    border-radius: 8px;
}

#mpEmojiPicker .flex.flex-wrap::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fbbf24 60%, #f59e42 100%);
    border-radius: 8px;
    border: 2px solid #23272f;
}

#mpEmojiPicker .flex.flex-wrap::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f59e42 60%, #fbbf24 100%);
}

#mpEmojiPicker .flex.flex-wrap::-webkit-scrollbar-corner {
    background: #23272f;
}

.dark html,
.dark body,
.dark .custom-scrollbar,
.dark .h-32,
.dark .h-40,
.dark .overflow-y-auto {
    scrollbar-color: #fbbf24 #18181b;
}

.dark html::-webkit-scrollbar,
.dark body::-webkit-scrollbar,
.dark .custom-scrollbar::-webkit-scrollbar,
.dark .h-32::-webkit-scrollbar,
.dark .h-40::-webkit-scrollbar,
.dark .overflow-y-auto::-webkit-scrollbar {
    background: #18181b;
}

.dark html::-webkit-scrollbar-thumb,
.dark body::-webkit-scrollbar-thumb,
.dark .custom-scrollbar::-webkit-scrollbar-thumb,
.dark .h-32::-webkit-scrollbar-thumb,
.dark .h-40::-webkit-scrollbar-thumb,
.dark .overflow-y-auto::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fbbf24 60%, #f59e42 100%);
    border: 2px solid #18181b;
}

.dark #mpEmojiPicker .flex.flex-wrap {
    scrollbar-color: #fbbf24 #18181b;
}

.dark #mpEmojiPicker .flex.flex-wrap::-webkit-scrollbar {
    background: #18181b;
}

.dark #mpEmojiPicker .flex.flex-wrap::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fbbf24 60%, #f59e42 100%);
    border: 2px solid #18181b;
}

.dark #mpEmojiPicker .flex.flex-wrap::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f59e42 60%, #fbbf24 100%);
}

.dark #mpEmojiPicker .flex.flex-wrap::-webkit-scrollbar-corner {
    background: #18181b;
}

.high-contrast {
    filter: contrast(1.5);
}

.high-contrast button,
.high-contrast .bg-yellow-500,
.high-contrast .bg-yellow-600,
.high-contrast .bg-blue-500,
.high-contrast .bg-blue-600 {
    filter: contrast(1.3) saturate(1.4);
}

.high-contrast .text-gray-600,
.high-contrast .text-gray-700 {
    color: #000 !important;
}

.high-contrast.dark .text-gray-300,
.high-contrast.dark .text-gray-400 {
    color: #fff !important;
}

.large-text {
    font-size: 1.25rem !important;
}

.large-text h1 {
    font-size: 3rem !important;
}

.large-text h2 {
    font-size: 2.5rem !important;
}

.large-text h3 {
    font-size: 2rem !important;
}

.large-text p,
.large-text span,
.large-text button,
.large-text input,
.large-text label {
    font-size: 1.25rem !important;
}

.large-text .text-xs {
    font-size: 1rem !important;
}

.large-text .text-sm {
    font-size: 1.125rem !important;
}

.large-text .text-lg {
    font-size: 1.5rem !important;
}

.large-text .text-xl {
    font-size: 1.75rem !important;
}

.large-text .text-2xl {
    font-size: 2.25rem !important;
}

.large-text .text-3xl {
    font-size: 2.75rem !important;
}

.large-text .text-4xl {
    font-size: 3.5rem !important;
}

.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

.reduced-motion .animate-spin,
.reduced-motion .animate-pulse,
.reduced-motion .animate-bounce,
.reduced-motion .animate-pulse-slow,
.reduced-motion .animate-bounce-slow,
.reduced-motion .animate-wiggle,
.reduced-motion .animate-float,
.reduced-motion .animate-banana-spin {
    animation: none !important;
}

.skin-jungle {
    --theme-primary: #2d5016;
    --theme-secondary: #4a7c2c;
    --theme-accent: #6b9d3e;
    --theme-light: #8bc34a;
    --theme-bg-start: #1b3a0f;
    --theme-bg-end: #2d5016;
}

.skin-jungle .bg-yellow-100 {
    background-color: #d4e8c4 !important;
}

.skin-jungle .bg-yellow-200 {
    background-color: #c5e1a5 !important;
}

.skin-jungle .bg-yellow-300 {
    background-color: #aed581 !important;
}

.skin-jungle .bg-yellow-400 {
    background-color: #9ccc65 !important;
}

.skin-jungle .bg-yellow-500 {
    background-color: #8bc34a !important;
}

.skin-jungle .bg-yellow-600 {
    background-color: #7cb342 !important;
}

.skin-jungle .text-yellow-600 {
    color: #558b2f !important;
}

.skin-jungle .text-yellow-500 {
    color: #689f38 !important;
}

.skin-jungle .text-yellow-400 {
    color: #7cb342 !important;
}

.skin-jungle .border-yellow-200 {
    border-color: #c5e1a5 !important;
}

.skin-jungle .border-yellow-300 {
    border-color: #aed581 !important;
}

.skin-jungle .from-yellow-100 {
    --tw-gradient-from: #d4e8c4 !important;
}

.skin-jungle .to-yellow-300 {
    --tw-gradient-to: #aed581 !important;
}

.skin-jungle.dark .from-gray-900 {
    --tw-gradient-from: #1b3a0f !important;
}

.skin-jungle.dark .to-gray-800 {
    --tw-gradient-to: #2d5016 !important;
}

.skin-jungle .hover\:bg-yellow-600:hover {
    background-color: #689f38 !important;
}

.skin-jungle .focus\:ring-yellow-500:focus {
    --tw-ring-color: #8bc34a !important;
}

.skin-neon {
    --theme-primary: #ff006e;
    --theme-secondary: #8338ec;
    --theme-accent: #3a86ff;
    --theme-light: #fb5607;
    --theme-bg-start: #1a0033;
    --theme-bg-end: #330066;
}

.skin-neon .bg-yellow-100 {
    background-color: #ffd6ff !important;
}

.skin-neon .bg-yellow-200 {
    background-color: #ffadff !important;
}

.skin-neon .bg-yellow-300 {
    background-color: #ff85ff !important;
}

.skin-neon .bg-yellow-400 {
    background-color: #ff5cff !important;
}

.skin-neon .bg-yellow-500 {
    background-color: #ff006e !important;
}

.skin-neon .bg-yellow-600 {
    background-color: #d6006e !important;
}

.skin-neon .text-yellow-600 {
    color: #ff006e !important;
}

.skin-neon .text-yellow-500 {
    color: #ff5cff !important;
}

.skin-neon .text-yellow-400 {
    color: #fb5607 !important;
}

.skin-neon .border-yellow-200 {
    border-color: #8338ec !important;
}

.skin-neon .border-yellow-300 {
    border-color: #3a86ff !important;
}

.skin-neon .from-yellow-100 {
    --tw-gradient-from: #1a0033 !important;
}

.skin-neon .to-yellow-300 {
    --tw-gradient-to: #330066 !important;
}

.skin-neon.dark .from-gray-900 {
    --tw-gradient-from: #0d001a !important;
}

.skin-neon.dark .to-gray-800 {
    --tw-gradient-to: #1a0033 !important;
}

.skin-neon .hover\:bg-yellow-600:hover {
    background-color: #8338ec !important;
}

.skin-neon .focus\:ring-yellow-500:focus {
    --tw-ring-color: #ff006e !important;
}

.skin-neon {
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.skin-neon button,
.skin-neon .shadow-lg {
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4), 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.skin-mono {
    --theme-primary: #000000;
    --theme-secondary: #404040;
    --theme-accent: #808080;
    --theme-light: #c0c0c0;
    --theme-bg-start: #ffffff;
    --theme-bg-end: #f5f5f5;
}

.skin-mono .bg-yellow-100 {
    background-color: #f5f5f5 !important;
}

.skin-mono .bg-yellow-200 {
    background-color: #e5e5e5 !important;
}

.skin-mono .bg-yellow-300 {
    background-color: #d4d4d4 !important;
}

.skin-mono .bg-yellow-400 {
    background-color: #a3a3a3 !important;
}

.skin-mono .bg-yellow-500 {
    background-color: #737373 !important;
}

.skin-mono .bg-yellow-600 {
    background-color: #525252 !important;
}

.skin-mono .bg-blue-500 {
    background-color: #404040 !important;
}

.skin-mono .bg-blue-600 {
    background-color: #262626 !important;
}

.skin-mono .text-yellow-600 {
    color: #404040 !important;
}

.skin-mono .text-yellow-500 {
    color: #525252 !important;
}

.skin-mono .text-yellow-400 {
    color: #737373 !important;
}

.skin-mono .text-blue-600 {
    color: #404040 !important;
}

.skin-mono .text-blue-500 {
    color: #525252 !important;
}

.skin-mono .text-blue-400 {
    color: #737373 !important;
}

.skin-mono.dark .text-yellow-600,
.dark .skin-mono .text-yellow-600 {
    color: #d4d4d4 !important;
}

.skin-mono.dark .text-yellow-500,
.dark .skin-mono .text-yellow-500 {
    color: #e5e5e5 !important;
}

.skin-mono.dark .text-yellow-400,
.dark .skin-mono .text-yellow-400 {
    color: #f5f5f5 !important;
}

.skin-mono.dark .text-blue-600,
.dark .skin-mono .text-blue-600 {
    color: #d4d4d4 !important;
}

.skin-mono.dark .text-blue-500,
.dark .skin-mono .text-blue-500 {
    color: #e5e5e5 !important;
}

.skin-mono.dark .text-blue-400,
.dark .skin-mono .text-blue-400 {
    color: #f5f5f5 !important;
}

.skin-mono .hover\:text-yellow-700:hover,
.skin-mono:hover .text-yellow-700 {
    color: #262626 !important;
}

.skin-mono .hover\:text-yellow-600:hover,
.skin-mono:hover .text-yellow-600 {
    color: #525252 !important;
}

.skin-mono .hover\:text-yellow-300:hover,
.skin-mono:hover .text-yellow-300 {
    color: #a3a3a3 !important;
}

.skin-mono.dark .hover\:text-yellow-700:hover,
.dark .skin-mono .hover\:text-yellow-700:hover,
.skin-mono.dark:hover .text-yellow-700,
.dark .skin-mono:hover .text-yellow-700 {
    color: #c0c0c0 !important;
}

.skin-mono.dark .hover\:text-yellow-600:hover,
.dark .skin-mono .hover\:text-yellow-600:hover,
.skin-mono.dark:hover .text-yellow-600,
.dark .skin-mono:hover .text-yellow-600 {
    color: #e5e5e5 !important;
}

.skin-mono.dark .hover\:text-yellow-300:hover,
.dark .skin-mono .hover\:text-yellow-300:hover,
.skin-mono.dark:hover .text-yellow-300,
.dark .skin-mono:hover .text-yellow-300 {
    color: #ffffff !important;
}

.skin-mono .border-yellow-200 {
    border-color: #d4d4d4 !important;
}

.skin-mono .border-yellow-300 {
    border-color: #a3a3a3 !important;
}

.skin-mono .from-yellow-100 {
    --tw-gradient-from: #ffffff !important;
}

.skin-mono .to-yellow-300 {
    --tw-gradient-to: #f5f5f5 !important;
}

.skin-mono.dark .bg-gray-800 {
    background-color: #262626 !important;
}

.skin-mono.dark .bg-gray-700 {
    background-color: #404040 !important;
}

.skin-mono.dark .from-gray-900 {
    --tw-gradient-from: #0a0a0a !important;
}

.skin-mono.dark .to-gray-800 {
    --tw-gradient-to: #171717 !important;
}

.skin-mono .hover\:bg-yellow-600:hover {
    background-color: #404040 !important;
}

.skin-mono .focus\:ring-yellow-500:focus {
    --tw-ring-color: #737373 !important;
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .header-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .game-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mobile-flex-col {
        flex-direction: column;
    }

    .mobile-full-width {
        width: 100%;
    }

    .mobile-text-center {
        text-align: center;
    }

    .mobile-p-4 {
        padding: 1rem;
    }

    .mobile-p-2 {
        padding: 0.5rem;
    }

    .mobile-space-y-4>*+* {
        margin-top: 1rem;
    }

    .mobile-gap-4 {
        gap: 1rem;
    }

    .mobile-hidden {
        display: none;
    }

    .mobile-block {
        display: block;
    }

    .mobile-flex {
        display: flex;
    }

    .mobile-justify-center {
        justify-content: center;
    }

    .mobile-items-center {
        align-items: center;
    }

    .mobile-w-full {
        width: 100%;
    }

    .mobile-h-auto {
        height: auto;
    }

    .mobile-text-lg {
        font-size: 1.125rem;
    }

    .mobile-text-xl {
        font-size: 1.25rem;
    }

    .mobile-text-2xl {
        font-size: 1.5rem;
    }

    .mobile-text-3xl {
        font-size: 1.875rem;
    }

    .mobile-text-4xl {
        font-size: 2.25rem;
    }

    .mobile-mb-4 {
        margin-bottom: 1rem;
    }

    .mobile-mb-2 {
        margin-bottom: 0.5rem;
    }

    .mobile-mt-4 {
        margin-top: 1rem;
    }

    .mobile-mt-2 {
        margin-top: 0.5rem;
    }

    .mobile-rounded-lg {
        border-radius: 0.5rem;
    }

    .mobile-rounded-xl {
        border-radius: 0.75rem;
    }

    .mobile-space-y-2>*+* {
        margin-top: 0.5rem;
    }

    .mobile-space-x-2>*+* {
        margin-left: 0.5rem;
    }

    .mobile-grid-cols-1 {
        grid-template-columns: 1fr;
    }

    .mobile-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tablet-flex-col {
        flex-direction: column;
    }

    .tablet-grid-cols-1 {
        grid-template-columns: 1fr;
    }

    .tablet-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tablet-w-full {
        width: 100%;
    }

    .tablet-text-center {
        text-align: center;
    }

    .tablet-p-4 {
        padding: 1rem;
    }

    .tablet-space-y-4>*+* {
        margin-top: 1rem;
    }
}

@media (max-width: 1024px) {
    .laptop-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

#mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    z-index: 100;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    overflow-y: auto;
}

#mobileMenu.open {
    display: block;
    right: 0;
}

.dark #mobileMenu {
    background: #1f2937;
}

#mobileMenuOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

#mobileMenuOverlay.open {
    display: block;
}

#mobileMenuBtn {
    display: none;
}

@media (max-width: 768px) {
    #mobileMenuBtn {
        display: block;
    }

    #desktopMenu {
        display: none;
    }
}
