* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px 20px;
    position: relative;
    background: #1a1a2e;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bbypic.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
}

/* Falling snow animation */
.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #fff;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.container {
    background: 
        repeating-linear-gradient(
            0deg,
            #8B2500 0px,
            #A0301C 8px,
            #2B1810 8px,
            #2B1810 10px,
            #6B3410 10px,
            #8B4513 25px,
            #2B1810 25px,
            #2B1810 27px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 60px,
            #1a0f08 60px,
            #1a0f08 63px,
            transparent 63px,
            transparent 90px,
            #1a0f08 90px,
            #1a0f08 93px
        ),
        radial-gradient(ellipse at 25% 40%, #C44536 0%, transparent 30%),
        radial-gradient(ellipse at 75% 20%, #8B2500 0%, transparent 25%),
        radial-gradient(ellipse at 50% 70%, #A0301C 0%, transparent 35%),
        linear-gradient(
            180deg,
            #3d2318 0%,
            #6B3410 25%,
            #8B4513 50%,
            #6B3410 75%,
            #3d2318 100%
        );
    border-radius: 0;
    padding: 120px 50px 40px 50px;
    max-width: 700px;
    width: 100%;
    box-shadow: 
        inset 30px 0 50px rgba(0,0,0,0.6),
        inset -30px 0 50px rgba(0,0,0,0.6),
        inset 0 30px 50px rgba(0,0,0,0.5),
        0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: visible;
    min-height: 1100px;
}

/* Stocking background - SVG shape */
.stocking {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6));
}

.album-artwork {
    margin-bottom: 15px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.album-artwork img {
    width: 90%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.song-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.description {
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.audio-player {
    margin-top: 12px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

audio {
    width: 100%;
    max-width: 400px;
    outline: none;
}

.credits {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
    padding-left: 5px;
    padding-right: 110px;
}

/* Gift wrapping styles */
.gift {
    position: relative;
    margin: 12px 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.1);
}

.gift-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            #FFD700,
            #FFD700 20px,
            #FFA500 20px,
            #FFA500 40px
        );
    opacity: 0.95;
    z-index: 5;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.gift-wrap::before {
    content: '🎀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 6;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.gift-content {
    position: relative;
    z-index: 1;
    opacity: 0;
}

/* Unwrapping animations - staggered and SLOWER */
.gift-1 .gift-wrap {
    animation: unwrap 1s ease-out 4s forwards;
}

.gift-1 .gift-content {
    animation: reveal 0.6s ease-out 4.8s forwards;
}

.gift-2 .gift-wrap {
    animation: unwrap 1s ease-out 5.5s forwards;
}

.gift-2 .gift-content {
    animation: reveal 0.6s ease-out 6.3s forwards;
}

.gift-3 .gift-wrap {
    animation: unwrap 1s ease-out 7s forwards;
}

.gift-3 .gift-content {
    animation: reveal 0.6s ease-out 7.8s forwards;
}

.gift-4 .gift-wrap {
    animation: unwrap 1s ease-out 8.5s forwards;
}

.gift-4 .gift-content {
    animation: reveal 0.6s ease-out 9.3s forwards;
}

.gift-5 .gift-wrap {
    animation: unwrap 1s ease-out 10s forwards;
}

.gift-5 .gift-content {
    animation: reveal 0.6s ease-out 10.8s forwards;
}

.gift-6 .gift-wrap {
    animation: unwrap 1s ease-out 11.5s forwards;
}

.gift-6 .gift-content {
    animation: reveal 0.6s ease-out 12.3s forwards;
}

@keyframes unwrap {
    0% {
        transform: scaleY(1);
        opacity: 1;
    }
    100% {
        transform: scaleY(0);
        opacity: 0;
    }
}

@keyframes reveal {
    to {
        opacity: 1;
    }
}

.credits p {
    margin: 6px 0;
    font-size: 14px;
    color: #e8e8e8;
    line-height: 1.5;
}

.licensing {
    margin-bottom: 6px;
}

.purchase {
    margin-bottom: 15px;
}

.credits a {
    color: #ffcccc;
    text-decoration: none;
    transition: color 0.3s;
}

.credits a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.credits-section {
    margin: 20px 0;
}

.credits-section p strong {
    color: #ffffff;
    font-weight: 600;
}

.legal {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.legal p {
    font-size: 13px;
    color: #d0d0d0;
    margin: 8px 0;
}

.copyright {
    margin-top: 15px;
    font-size: 12px;
    color: #c0c0c0;
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .artwork-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .song-title {
        font-size: 26px;
    }
    
    .description {
        font-size: 14px;
    }
}