/* namu.day - Vaporwave Arboretum */
/* Colors: #1A1A2E, #1A0A2E, #F0ECE4, #1A2A4E, #0A2A3E, #A498B4, #FF8FAB, #7AFFC1 */
/* Fonts: EB Garamond, Inter */

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

body {
    font-family: 'Inter', sans-serif;
    color: #F0ECE4;
    background: #1A1A2E;
    overflow-x: hidden;
    min-height: 100vh;
}

.aurora-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1A0A2E 0%, #2A1A4E 25%, #1A2A4E 50%, #0A2A3E 75%, #1A1A2E 100%);
    background-size: 400% 400%;
    animation: auroraShift 25s ease infinite;
}

.card-grid {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    columns: 2;
    column-gap: 20px;
}

.card {
    break-inside: avoid;
    margin-bottom: 20px;
    background: rgba(240, 236, 228, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 236, 228, 0.08);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card--hero {
    column-span: all;
    text-align: center;
    padding: 60px 40px;
}

.card--tall {
    padding: 40px 28px;
}

.card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.card__accent--pink { background: linear-gradient(90deg, #FF8FAB, transparent); }
.card__accent--green { background: linear-gradient(90deg, #7AFFC1, transparent); }

.card__title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: #F0ECE4;
    margin-bottom: 16px;
}

.card__title--hero {
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: #FF8FAB;
    margin-bottom: 12px;
}

.card__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #A498B4;
    margin-bottom: 16px;
}

.card__body {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: #F0ECE4;
    opacity: 0.85;
    margin-bottom: 12px;
}

.card__meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #A498B4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-top: 12px;
}

.footer {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 20px 60px;
}

.footer__text {
    font-family: 'EB Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: #A498B4;
    opacity: 0.5;
}

@keyframes auroraShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 600px) {
    .card-grid { columns: 1; }
    .card--hero { padding: 40px 24px; }
}
