/* Silliest Duck - Main Stylesheet */

:root {
    --color-primary: #ffb800;
    --color-primary-dark: #7b5900;
    --color-secondary: #ff6b35;
    --color-bg: #1a1a2e;
    --color-bg-light: #25254a;
    --color-text: #ffffff;
    --color-text-muted: #b8b8d1;
    --color-accent: #7b68ee;
}

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

html {
    font-size: 16px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--color-bg);
    background: linear-gradient(135deg, var(--color-bg) 0%, #16213e 100%);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.logo-area {
    margin-bottom: 3rem;
}

.site-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    text-shadow: 2px 2px 0 var(--color-primary-dark),
                 4px 4px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Links Navigation */
.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg-light);
    border-radius: 1rem;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.2);
}

.link-card.featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-bg);
}

.link-card.featured:hover {
    border-color: var(--color-text);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

.link-icon {
    font-size: 2rem;
    line-height: 1;
}

.link-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.link-desc {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-left: auto;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 480px) {
    .site-title {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .link-card {
        padding: 1rem 1.25rem;
    }

    .link-icon {
        font-size: 1.5rem;
    }

    .link-title {
        font-size: 1.1rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-area {
    animation: fadeInUp 0.6s ease-out;
}

.links {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
