:root {
    --ice-blue: #E0F7FA;
    --silver: #B0BEC5;
    --midnight-blue: #1A237E;
    --white-snow: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Cinzel', serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    background-color: var(--ice-blue);
    background-image: linear-gradient(to bottom, #E0F7FA, #E1F5FE);
    color: var(--midnight-blue);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Great+Vibes&family=Roboto:wght@300;400&display=swap');

h1 {
    font-family: var(--font-script);
    font-size: 5rem;
    color: var(--midnight-blue);
    text-shadow: 2px 2px 4px rgba(176, 190, 197, 0.5);
}

h2,
h3 {
    font-family: var(--font-serif);
    color: var(--midnight-blue);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '❄';
    display: block;
    font-size: 1.5rem;
    color: var(--silver);
    margin-top: 10px;
}

/* Components */
.winter-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.winter-card:hover {
    transform: translateY(-5px);
}

.btn-winter {
    background: linear-gradient(135deg, var(--midnight-blue), #283593);
    color: white;
    font-family: var(--font-serif);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
    transition: all 0.3s ease;
}

.btn-winter:hover {
    background: linear-gradient(135deg, #283593, var(--midnight-blue));
    color: white;
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.5);
    transform: scale(1.05);
    text-decoration: none;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1483664852095-d6cc6870702d?q=80&w=2070&auto=format&fit=crop');
    /* Snowy background placeholder */
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(224, 247, 250, 0.7);
    /* Ice blue overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    border: 1px solid white;
}

.hero-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 0 15px rgba(176, 190, 197, 0.6);
    margin: 20px auto;
}

/* Snowflake Canvas */
#snowCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Countdown */
.winter-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.time-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--ice-blue);
}

.time-circle span {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--midnight-blue);
    line-height: 1;
}

.time-circle small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--silver);
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-winter {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--midnight-blue);
    border: 2px solid var(--silver);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-music-winter:hover {
    transform: rotate(360deg);
}