:root {
    --primary-gold: #c5a059;
    --deep-blue: #0a192f;
    --accent-teal: #00bcd4;
    /* From logo */
    --text-light: #e6f1ff;
    --glass-bg: rgba(10, 25, 47, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #020811;
    background-image: url('background.png');
    background-size: cover;
    background-position: 30% bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8%;
    overflow: hidden;
    color: var(--text-light);
}

#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.card-container {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 188, 212, 0.1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            transparent);
    transform: rotate(45deg);
    animation: shimmer 10s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translate(-30%, -30%) rotate(45deg);
    }

    100% {
        transform: translate(30%, 30%) rotate(45deg);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.logo {
    max-width: 220px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 15px rgba(0, 188, 212, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.highlight {
    font-size: 1.2rem;
    color: var(--accent-teal);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.message-content * {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.message-content h1 {
    animation-delay: 0.4s;
}

.message-content .highlight {
    animation-delay: 0.6s;
}

.message-content .body-text {
    animation-delay: 0.8s;
}

footer {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.body-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 30px 0;
}

.company-name {
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.year {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 700;
    background: rgba(197, 160, 89, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* Layout Adjustments */
@media (max-width: 1100px) {
    body {
        justify-content: center;
        padding-right: 0;
        background-position: 40% bottom;
    }
}

@media (max-width: 768px) {
    body {
        background-position: center bottom;
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .glass-card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .logo {
        max-width: 180px;
    }
}