/* Snow animation styles */
.snow {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    overflow: hidden;
}
.snowflake {
    position: absolute;
    top: -2em;
    color: #fff;
    opacity: 0.85;
    font-size: 1.1em;
    will-change: transform;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 8px #eebbc3);
    animation: fall linear infinite;
}


@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

@media (prefers-reduced-motion: reduce) {
  .snowflake {
    animation-play-state: running !important;
    animation-duration: inherit !important;
  }
}
.snowflake {
  animation-play-state: running !important;
}

body {
    background: linear-gradient(135deg, #181c2f 0%, #232946 100%);
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #eaeaea;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('small-logo.png');
    background-size: 80px 80px; /* Smaller image size */
    background-repeat: repeat;  /* Repeat across the page */
    background-position: top left;
    opacity: 0.06; /* Subtle transparency */
    z-index: 0;
    pointer-events: none;
}

/* Center the links-list vertically and horizontally */
body > ul.links-list {
    margin: auto;
}

@media (max-width: 600px) {
    body {
        min-height: 100dvh;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        background: linear-gradient(135deg, #181c2f 0%, #232946 100%);
    }
    .links-list {
        max-width: 340px;
        width: 90vw;
        margin: 8vw auto 0 auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .links-list li {
        width: 100%;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
    }
    .link-btn {
        font-size: 1.13rem;
        padding: 18px 0;
        border-radius: 12px;
        gap: 12px;
        min-height: 56px;
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .link-icon {
        font-size: 1.3em;
        margin-right: 10px;
    }
}




.links-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
}




.links-list li {
    margin-bottom: 24px;
}




.link-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 16px 22px;
    background: linear-gradient(90deg, #393e5c 0%, #232946 100%);
    color: #eaeaea;
    border: 1.5px solid #393e5c;
    border-radius: 10px;
    font-size: 1.13rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s, border 0.18s, transform 0.18s, color 0.18s;
    box-shadow: 0 2px 12px #00adb5;
    gap: 14px;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}



.link-btn:hover {
    background: linear-gradient(90deg, #232946 0%, #393e5c 100%);
    border: 1.5px solid #eebbc3;
    color: #eebbc3;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 18px rgba(238, 187, 195, 0.08);
}


.link-icon {
    font-size: 1.5em;
    margin-right: 12px;
    color: #eebbc3;
    transition: color 0.18s;
}

.link-btn:hover .link-icon {
    color: #fff;
}
