:root {
    --primary-gold: #e6b12a;
    --soft-cream: #f9f6f0;
    --deep-brown: #5d4037;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

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

body {
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
    background: linear-gradient(135deg, #fff5e6 0%, #ffecd2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--deep-brown);
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

.mascot-container {
    margin-bottom: 30px;
}

.mascot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--primary-gold), #ff8a00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    word-break: keep-all;
}

.subtitle strong {
    font-weight: 700;
    color: var(--primary-gold);
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(230, 177, 42, 0.3);
}

footer {
    padding: 30px 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.footer-content p {
    opacity: 0.5;
    font-weight: 300;
}

.email-link {
    color: var(--deep-brown);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-link:hover {
    color: var(--primary-gold);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.email-icon {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

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

/* Responsive */
@media (max-width: 600px) {
    .glass-card {
        padding: 40px 20px;
    }

    .title {
        font-size: 2.5rem;
    }

    .mascot {
        width: 150px;
        height: 150px;
    }
}