body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(circle at top, #1b2945 0%, #050814 40%, #02040a 100%);
    color: #ffffff;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 960px;
    position: relative;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #64ffda, 0 0 10px #ffc107;
}

.title-with-hat {
    position: relative;
    display: inline-block;
}

.santa-hat {
    position: absolute;
    top: -35px;
    left: -3%;
    width: 70px;
    pointer-events: none;
    transform: rotate(-8deg);
}


.xmas-subtitle {
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 1.1rem;
    color: #ffeb3b;
    text-shadow: 0 0 6px rgba(255, 235, 59, 0.7);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    background: rgba(17, 34, 64, 0.9);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.95), rgba(183, 28, 28, 0.9));
}

.card a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 40px 20px;
}

.card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
}

/* Christmas Radio section */
.christmas-section {
    margin-top: 30px;
}

.christmas-text {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ffcc80;
}

.christmas-card {
    background: linear-gradient(135deg, #b71c1c, #e53935);
    border-color: rgba(255, 255, 255, 0.4);
}

.christmas-card:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    transform: translateY(-10px) scale(1.02);
}

.christmas-card a h3 {
    font-weight: 700;
}

/* Snowflakes */
.snowflake {
    position: fixed;
    top: -15vh;          /* pornesc deasupra ecranului */
    z-index: 9999;
    color: #ffffff;
    font-size: 0.5rem;
    pointer-events: none;
    user-select: none;
    animation-name: snow-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    opacity: 0.9;
}

/* atenție: numele ANIMAȚIEI trebuie să fie la fel ca mai sus */
@keyframes snow-fall {
    0% {
        transform: translateY(0);      /* pornesc din -15vh (definit la top) */
    }
    100% {
        transform: translateY(130vh);  /* cad mult sub ecran */
    }
}


/* Small twinkling stars at the top background for extra cosiness */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 20%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 80% 10%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 60% 30%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 10% 60%, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
}
