.hero-section{
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

/* GRADIENT AND LAYER BLUR EFFECT */
.image-gradient{
    position:absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

.layer-blur{
    height: 0;
    width: 30rem;
    position: absolute;
    top: 20%;
    right: 0;
    box-shadow: 0 0 700px 15px white;
    rotate: -30deg;
    z-index: -1;
}

/* CHRISTMAS MESSAGE OVERLAY */
.christmas-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95), rgba(178, 34, 34, 0.95));
    backdrop-filter: blur(15px);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 9999;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.christmas-message.show {
    opacity: 1;
    visibility: visible;
    animation: messageGlow 2s ease-in-out infinite;
}

.christmas-message h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #FFD700;
    margin: 0 0 1rem 0;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.1rem;
}

.christmas-message p {
    font-size: 1.3rem;
    color: white;
    margin: 0 0 2rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.christmas-message button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B0000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.christmas-message button:hover {
    transform: scale(1.05);
    box-shadow: 0 7px 25px rgba(255, 215, 0, 0.6);
}

@keyframes messageGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.2),
            0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.2),
            0 0 50px rgba(255, 215, 0, 0.5);
    }
}

/* SOPHISTICATED SNOWFALL ANIMATION */
.snowfall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    animation: fall linear infinite;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    filter: blur(0.3px);
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(180deg);
        opacity: 0.3;
    }
}

/* SNOW ACCUMULATION AT BOTTOM */
.snow-accumulation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
    z-index: 3;
}

.snow-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 30%,
        rgba(255, 255, 255, 0.4) 70%,
        transparent 100%);
    filter: blur(1px);
}

.snow-layer-1 {
    height: 150px;
    clip-path: polygon(
        0% 100%, 
        5% 85%, 
        10% 78%, 
        15% 87%, 
        20% 75%, 
        25% 82%, 
        30% 70%, 
        35% 78%, 
        40% 65%, 
        45% 75%, 
        50% 60%, 
        55% 72%, 
        60% 58%, 
        65% 70%, 
        70% 55%, 
        75% 68%, 
        80% 52%, 
        85% 66%, 
        90% 60%, 
        95% 70%, 
        100% 62%, 
        100% 100%
    );
}

.snow-layer-2 {
    height: 105px;
    opacity: 0.8;
    clip-path: polygon(
        0% 100%, 
        8% 80%, 
        16% 86%, 
        24% 75%, 
        32% 83%, 
        40% 72%, 
        48% 80%, 
        56% 68%, 
        64% 78%, 
        72% 65%, 
        80% 76%, 
        88% 70%, 
        96% 80%, 
        100% 72%, 
        100% 100%
    );
}

.snow-layer-3 {
    height: 70px;
    opacity: 0.6;
    clip-path: polygon(
        0% 100%, 
        10% 75%, 
        20% 82%, 
        30% 70%, 
        40% 78%, 
        50% 68%, 
        60% 76%, 
        70% 72%, 
        80% 82%, 
        90% 74%, 
        100% 80%, 
        100% 100%
    );
}

/* Snow sparkles */
.snow-sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
    animation: sparkle 3s ease-in-out infinite;
}

.snow-sparkle:nth-child(1) { bottom: 30px; left: 15%; animation-delay: 0s; }
.snow-sparkle:nth-child(2) { bottom: 45px; left: 25%; animation-delay: 0.5s; }
.snow-sparkle:nth-child(3) { bottom: 20px; left: 40%; animation-delay: 1s; }
.snow-sparkle:nth-child(4) { bottom: 35px; left: 55%; animation-delay: 1.5s; }
.snow-sparkle:nth-child(5) { bottom: 25px; left: 70%; animation-delay: 2s; }
.snow-sparkle:nth-child(6) { bottom: 40px; left: 85%; animation-delay: 2.5s; }
.snow-sparkle:nth-child(7) { bottom: 50px; left: 10%; animation-delay: 0.8s; }
.snow-sparkle:nth-child(8) { bottom: 15px; left: 60%; animation-delay: 1.8s; }

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5);
    }
}

/* SANTA SLEIGH ON SNOW */
.santa-sleigh {
    position: absolute;
    bottom: 10px;
    left: 15%;
    width: 180px;
    height: 120px;
    z-index: 4;
    animation: sleighRock 3s ease-in-out infinite;
}

/* Sleigh base */
.sleigh-body {
    position: absolute;
    bottom: 20px;
    left: 15px;
    width: 120px;
    height: 50px;
    background: linear-gradient(135deg, #8B0000, #B22222);
    border-radius: 12px 12px 35px 35px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.sleigh-body::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 12px;
    right: 12px;
    height: 12px;
    background: linear-gradient(to right, #FFD700, #FFA500);
    border-radius: 6px;
}

.sleigh-body::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 15px;
    right: 15px;
    height: 30px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6), rgba(178, 34, 34, 0.6));
    border-radius: 6px;
}

/* Sleigh runners (skis) */
.sleigh-runner {
    position: absolute;
    bottom: 0;
    width: 135px;
    height: 16px;
    background: linear-gradient(to right, #2C1810, #4A2511);
    border-radius: 0 60px 60px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.sleigh-runner-1 {
    left: 8px;
    bottom: 12px;
}

.sleigh-runner-2 {
    left: 8px;
    bottom: 0;
}

/* Gift sacks */
.gift-sack {
    position: absolute;
    background: linear-gradient(135deg, #654321, #8B4513);
    border-radius: 50% 50% 45% 45%;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.gift-sack-1 {
    width: 38px;
    height: 45px;
    bottom: 52px;
    left: 38px;
}

.gift-sack-2 {
    width: 30px;
    height: 38px;
    bottom: 52px;
    left: 75px;
}

.gift-sack::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

/* Small presents */
.sleigh-present {
    position: absolute;
    background: linear-gradient(135deg, #C41E3A, #DC143C);
    border-radius: 3px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.sleigh-present-1 {
    width: 22px;
    height: 18px;
    bottom: 75px;
    left: 52px;
}

.sleigh-present-1::before,
.sleigh-present-1::after {
    content: '';
    position: absolute;
    background: #FFD700;
}

.sleigh-present-1::before {
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
}

.sleigh-present-1::after {
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
}

/* Reindeer silhouette */
.reindeer {
    position: absolute;
    bottom: 45px;
    left: -52px;
    width: 60px;
    height: 75px;
    z-index: 5;
}

.reindeer-body {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 30px;
    height: 22px;
    background: linear-gradient(135deg, #5C4033, #3E2723);
    border-radius: 12px;
}

.reindeer-head {
    position: absolute;
    bottom: 30px;
    left: 8px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #5C4033, #3E2723);
    border-radius: 50%;
}

.reindeer-antler {
    position: absolute;
    top: -12px;
    width: 3px;
    height: 15px;
    background: #4A2511;
}

.reindeer-antler-1 {
    left: 3px;
    transform: rotate(-15deg);
}

.reindeer-antler-2 {
    right: 3px;
    transform: rotate(15deg);
}

.reindeer-antler::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -3px;
    width: 3px;
    height: 6px;
    background: #4A2511;
    transform: rotate(45deg);
}

.reindeer-leg {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 18px;
    background: #4A2511;
}

.reindeer-leg-1 { left: 18px; }
.reindeer-leg-2 { left: 27px; }
.reindeer-leg-3 { left: 33px; }
.reindeer-leg-4 { left: 42px; }

/* Red nose for Rudolph */
.reindeer-nose {
    position: absolute;
    bottom: 33px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #FF0000, #CC0000);
    border-radius: 50%;
    box-shadow: 0 0 8px #FF0000;
    animation: noseGlow 1.5s ease-in-out infinite;
}

@keyframes sleighRock {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-3px) rotate(-1deg);
    }
}

@keyframes noseGlow {
    0%, 100% { 
        box-shadow: 0 0 6px #FF0000;
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 12px #FF0000, 0 0 20px rgba(255, 0, 0, 0.5);
        opacity: 0.8;
    }
}

/* ELEGANT ACCENT LIGHTS */
.christmas-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

.light {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 8px 2px currentColor, 0 0 15px 4px currentColor;
    animation: sophisticatedGlow 3s ease-in-out infinite;
}

.light::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 15px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
}

.light:nth-child(1) { left: 8%; top: 25px; color: #C9A96E; animation-delay: 0s; }
.light:nth-child(2) { left: 18%; top: 35px; color: #B8956A; animation-delay: 0.5s; }
.light:nth-child(3) { left: 28%; top: 20px; color: #A67C52; animation-delay: 1s; }
.light:nth-child(4) { left: 38%; top: 30px; color: #8B7355; animation-delay: 1.5s; }
.light:nth-child(5) { left: 48%; top: 25px; color: #C9A96E; animation-delay: 2s; }
.light:nth-child(6) { left: 58%; top: 33px; color: #B8956A; animation-delay: 0.7s; }
.light:nth-child(7) { left: 68%; top: 23px; color: #A67C52; animation-delay: 1.2s; }
.light:nth-child(8) { left: 78%; top: 28px; color: #8B7355; animation-delay: 1.7s; }
.light:nth-child(9) { left: 88%; top: 31px; color: #C9A96E; animation-delay: 2.2s; }
.light:nth-child(10) { left: 94%; top: 25px; color: #B8956A; animation-delay: 2.5s; }

@keyframes sophisticatedGlow {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.3);
    }
}

/* MINIMALIST ORNAMENTS */
.ornament {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.4), rgba(166, 124, 82, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: subtleSwing 4s ease-in-out infinite;
    z-index: 2;
}

.ornament::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

.ornament::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.ornament-1 {
    top: 18%;
    right: 22%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.5), rgba(184, 149, 106, 0.7));
}

.ornament-2 {
    top: 28%;
    right: 12%;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.5), rgba(139, 115, 85, 0.7));
    animation-delay: 1.3s;
}

.ornament-3 {
    top: 38%;
    right: 17%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.4), rgba(184, 149, 106, 0.6));
    animation-delay: 2.6s;
}

@keyframes subtleSwing {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* ELEGANT CHRISTMAS HAT */
.santa-hat {
    position: absolute;
    top: 25px;
    right: 35px;
    width: 45px;
    height: 50px;
    z-index: 2;
    animation: gentleFloat 3s ease-in-out infinite;
    opacity: 0.9;
}

.santa-hat::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 22.5px solid transparent;
    border-right: 22.5px solid transparent;
    border-bottom: 42px solid #8B0000;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
    left: 0;
}

.santa-hat::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 6px;
    width: 33px;
    height: 6px;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    border-radius: 8px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.pom-pom {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8e8e8);
    border-radius: 50%;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-4px) rotate(-10deg); }
}

/* Mobile Animation Background - HIDDEN BY DEFAULT */
.mobile-animation-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Floating Hexagons */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, #149AAA, #046363);
    opacity: 0.15;
    filter: blur(15px);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.shape-1 {
    width: 150px;
    height: 130px;
    top: 20%;
    left: 10%;
    animation: floatHexagon 8s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 87px;
    top: 60%;
    left: 80%;
    animation: floatHexagon 6s ease-in-out infinite reverse;
    background: linear-gradient(135deg, #178389, #049491);
}

.shape-3 {
    width: 200px;
    height: 173px;
    top: 40%;
    left: 60%;
    animation: floatHexagon 10s ease-in-out infinite;
    background: linear-gradient(135deg, #046363, #149aaa);
}

.shape-4 {
    width: 80px;
    height: 69px;
    top: 80%;
    left: 20%;
    animation: floatHexagon 7s ease-in-out infinite reverse;
}

.shape-5 {
    width: 120px;
    height: 104px;
    top: 30%;
    left: 40%;
    animation: floatHexagon 9s ease-in-out infinite;
}

@keyframes floatHexagon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

/* Animated Grid */
.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #149AAA, transparent);
    animation: gridMove 3s linear infinite;
}

.grid-line:nth-child(1) {
    top: 25%;
    width: 100%;
    height: 1px;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 50%;
    width: 100%;
    height: 1px;
    animation-delay: 1s;
}

.grid-line:nth-child(3) {
    top: 75%;
    width: 100%;
    height: 1px;
    animation-delay: 2s;
}

.grid-line:nth-child(4) {
    left: 50%;
    width: 1px;
    height: 100%;
    animation-delay: 1.5s;
}

@keyframes gridMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Pulse Hexagons */
.pulse-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pulse-orb {
    position: absolute;
    background: radial-gradient(circle, #149AAA, transparent);
    opacity: 0.1;
    animation: pulseHexagon 4s ease-out infinite;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.orb-1 {
    width: 100px;
    height: 87px;
    top: 30%;
    left: 70%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 130px;
    top: 60%;
    left: 30%;
    animation-delay: 1.3s;
}

.orb-3 {
    width: 80px;
    height: 69px;
    top: 80%;
    left: 60%;
    animation-delay: 2.7s;
}

@keyframes pulseHexagon {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.15;
    }
    100% {
        transform: scale(0.8) rotate(360deg);
        opacity: 0.1;
    }
}

/*CONTAINER/MAIN CONTENT*/

.container{
    width:100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 6rem);
}

.content{
    max-width: 40rem;
    margin-left: 10%;
    z-index: 999;
}

.tag-box{
    position: relative;
    width: 18rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #046363, #178389, #049491, #149aaa);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3)
}

@keyframes animationGradient {
    to {
        background-position: 200%;
    }
}
.tag-box .tag{
    position: absolute;
    inset: 3px 3px 3px 3px;
    background-color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5 ease;
}

.content h1{
    font-size: 4rem;
    font-weight: 600;
    letter-spacing:0.1rem;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418)
}

.description{
    font-size:1.2rem;
    letter-spacing: 0.05rem;
    max-width:35rem;
    color: gray;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.btn-get-started{
    text-decoration: none;
    color: white;
    border: 1px solid #2a2a2a;
    padding: 0.7rem 1.2rem;
    margin-top: 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    transition: background-color 0.2s ease;
}

.robot-3d{
    position:absolute;
    top:0;
    right: -20%;
}

/* Desktop-only class for elements that should only show on desktop */
.desktop-only {
    display: block;
}

/* TABLET STYLES (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .robot-3d {
        scale: 0.5;
        top: -15%;
        right: -15%;
    }
    
    .container {
        padding: 0 1rem;
    }

    .content {
        max-width: 35rem;
        margin-left: 5%;
    }

    .content h1 {
        font-size: 3rem;
    }
    
    .santa-hat {
        width: 40px;
        height: 45px;
    }
    
    .santa-hat::before {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 38px solid #8B0000;
    }
    
    .santa-hat::after {
        left: 5.5px;
        width: 29px;
    }
    
    .pom-pom {
        width: 9px;
        height: 9px;
    }
    
    .christmas-message h2 {
        font-size: 2.5rem;
    }
    
    .christmas-message p {
        font-size: 1.1rem;
    }
}

/* MOBILE STYLES (768px and below) */
@media (max-width: 768px) {
    .mobile-animation-bg {
        display: block;
    }
    
    .robot-3d {
        display: none !important;
    }
    
    .container {
        padding: 0;
    }

    .content {
        margin-top: 0;
        margin-left: 10px;
        margin-right: 10px;
        max-width: calc(100vw - 20px);
        text-align: center;
    }

    .content{
        max-width: 30rem;
        margin-left: auto;
        margin-right: auto;
    }

    .tag-box{
        width: 12rem;
        margin: 0 auto;
    }

    .content h1{
        font-size: 2.5rem;
    }

    .description{
        font-size: 1rem;
    }

    .btn-get-started{
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }
    
    /* Adjust sophisticated decorations for mobile */
    .santa-hat {
        width: 38px;
        height: 42px;
        top: 15px;
        right: 15px;
    }
    
    .santa-hat::before {
        border-left: 19px solid transparent;
        border-right: 19px solid transparent;
        border-bottom: 35px solid #8B0000;
    }
    
    .santa-hat::after {
        left: 5px;
        width: 28px;
        height: 5px;
    }
    
    .pom-pom {
        width: 8px;
        height: 8px;
        top: -5px;
    }
    
    .ornament {
        width: 10px;
        height: 10px;
    }
    
    .light {
        width: 2px;
        height: 2px;
    }
    
    .snowflake {
        font-size: 0.7em;
    }
    
    /* Adjust snow accumulation for mobile */
    .snow-accumulation {
        height: 180px;
    }
    
    .snow-layer-1 {
        height: 90px;
    }
    
    .snow-layer-2 {
        height: 63px;
    }
    
    .snow-layer-3 {
        height: 42px;
    }
    
    .christmas-message {
        padding: 2rem 2.5rem;
        max-width: 90%;
    }
    
    .christmas-message h2 {
        font-size: 2rem;
    }
    
    .christmas-message p {
        font-size: 1rem;
    }
    
    .christmas-message button {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Hide desktop-only elements on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* REFINED MUSIC CONTROL BUTTON */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(166, 124, 82, 0.25));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-control:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.25), rgba(166, 124, 82, 0.35));
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.music-control::before {
    content: '♫';
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    animation: elegantNote 3s ease-in-out infinite;
}

.music-control.playing::before {
    animation: elegantNotePlaying 1.5s ease-in-out infinite;
}

.music-control.muted::before {
    content: '—';
    font-size: 24px;
    font-weight: bold;
    animation: none;
}
