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

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    background: linear-gradient(180deg, #000000 0%, #0a0a1a 25%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Backgrounds */
#snowfall,
#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#stars {
    z-index: 0;
}

/* Header */
.christmas-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px 40px;
}

.signature-container {
    margin-bottom: 20px;
}

.signature-animation {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.christmas-title {
    font-family: 'Mountains of Christmas', cursive;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.1em;
    color: #ffffff;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4);
    margin-bottom: 10px;
}

.christmas-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #f0e68c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.05em;
}

/* Main Content */
.christmas-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* Section Titles */
.section-title {
    font-family: 'Mountains of Christmas', cursive;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    text-align: center;
    color: #f0e68c;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Album Showcase */
.album-showcase {
    margin-bottom: 100px;
}

.album-featured {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(0, 100, 0, 0.3));
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 0 40px rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 900px) {
    .album-featured {
        flex-direction: row;
        align-items: flex-start;
    }
}

.album-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.album-cover-large {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.album-cover-large:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(255, 215, 0, 0.6);
}

.album-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.album-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.album-title {
    font-family: 'Mountains of Christmas', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
}

.album-release-date {
    font-size: 1.1rem;
    color: #f0e68c;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.album-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Tracklist */
.tracklist {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.tracklist h3 {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0e68c;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.3);
}

.tracks-grid {
    display: grid;
    gap: 10px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.track-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.track-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    min-width: 30px;
    text-align: center;
}

.track-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.track-title {
    flex: 1;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.track-note {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-style: italic;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.track-duration {
    font-size: 0.9rem;
    color: #f0e68c;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Music Videos Section */
.music-videos-section {
    margin-bottom: 100px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.video-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(0, 100, 0, 0.2));
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 25px;
    text-align: center;
}

.video-info h3 {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.3);
}

.video-year {
    font-size: 1rem;
    color: #f0e68c;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Singles Section */
.singles-section {
    margin-bottom: 80px;
}

.presents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

/* Present Cards */
.present-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.present-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.present-card[data-color="red"] {
    background: linear-gradient(135deg, #8B0000, #DC143C);
}

.present-card[data-color="green"] {
    background: linear-gradient(135deg, #0F5132, #198754);
}

.present-card[data-color="gold"] {
    background: linear-gradient(135deg, #B8860B, #FFD700);
}

.present-card[data-color="blue"] {
    background: linear-gradient(135deg, #003366, #0066CC);
}

.present-card[data-color="purple"] {
    background: linear-gradient(135deg, #4B0082, #8B008B);
}

/* Ribbon Effects */
.ribbon {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    z-index: 5;
}

.ribbon-horizontal {
    width: 100%;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.ribbon-vertical {
    width: 50px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.bow {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 2px 5px rgba(255, 255, 255, 0.9);
    z-index: 6;
}

/* Bow loops (left and right) */
.bow::before,
.bow::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    border-radius: 50px 50px 0 0;
    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.4),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    top: -15px;
}

/* Left bow loop */
.bow::before {
    left: -50px;
    transform: rotate(-30deg) skewX(-10deg);
}

/* Right bow loop */
.bow::after {
    right: -50px;
    transform: rotate(30deg) skewX(10deg);
}

/* Add ribbon tails hanging down */
.present-card::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.5));
    top: 50%;
    left: calc(50% - 25px);
    transform: rotate(15deg);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 4;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.present-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.5));
    top: 50%;
    right: calc(50% - 25px);
    transform: rotate(-15deg);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 4;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.present-content {
    position: relative;
    z-index: 10;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.release-cover {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.present-card:hover .release-cover {
    transform: scale(1.05);
}

.release-info {
    width: 100%;
}

.release-year {
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.release-title,
.release-info h3 {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.release-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-style: italic;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.release-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Streaming Links */
.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.streaming-links.mini {
    gap: 8px;
}

.stream-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.streaming-links.mini .stream-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    gap: 8px;
}

.stream-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.stream-btn.spotify {
    background: linear-gradient(135deg, #1DB954, #1ed760);
    color: #ffffff;
}

.stream-btn.spotify:hover {
    background: linear-gradient(135deg, #1ed760, #1DB954);
}

.stream-btn.apple {
    background: linear-gradient(135deg, #FA243C, #ff4757);
    color: #ffffff;
}

.stream-btn.apple:hover {
    background: linear-gradient(135deg, #ff4757, #FA243C);
}

.stream-btn.youtube {
    background: linear-gradient(135deg, #FF0000, #ff4040);
    color: #ffffff;
}

.stream-btn.youtube:hover {
    background: linear-gradient(135deg, #ff4040, #FF0000);
}

/* Home Link */
.home-link-container {
    text-align: center;
    margin-top: 60px;
}

.home-link {
    display: inline-block;
    color: #f0e68c;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 30px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 30px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.3);
}

.home-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Footer */
.christmas-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    color: #f0e68c;
}

.christmas-footer p {
    margin: 8px 0;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .christmas-header {
        padding: 40px 15px 30px;
    }

    .signature-animation {
        max-width: 280px;
    }

    .album-featured {
        padding: 40px 25px;
    }

    .tracklist {
        padding: 20px 15px;
    }

    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .track-info {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .presents-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .streaming-links {
        gap: 10px;
    }
}

