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

:root {
    --dark-forest: #1a2e1a;
    --forest-green: #2d4a2d;
    --sage-green: #5a7a6a;
    --muted-sage: #8b9e8e;
    --warm-beige: #d4c5a0;
    --light-cream: #f0e6d2;
    --rich-brown: #6b5446;
    --dark-brown: #4a3a2e;

    --primary-bg: #1a2e1a;
    --secondary-bg: #2d4a2d;
    --accent-color: #5a7a6a;
    --highlight: #8b9e8e;
    --text-primary: #f0e6d2;
    --text-secondary: #d4c5a0;
    --glass-bg: rgba(90, 122, 106, 0.1);
    --glass-border: rgba(212, 197, 160, 0.2);

    --gradient-primary: linear-gradient(135deg, #5a7a6a 0%, #2d4a2d 100%);
    --gradient-accent: linear-gradient(135deg, #8b9e8e 0%, #6b5446 100%);
    --gradient-bg: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 50%, #4a3a2e 100%);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(90, 122, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 84, 70, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 158, 142, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {

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

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

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

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

.mascot-wrapper {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

#boulder-mascot {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

#boulder-mascot:hover {
    transform: scale(1.05) rotate(5deg);
}

@keyframes float {

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.4s both;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.8s both;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 158, 142, 0.15);
    border: 1px solid var(--highlight);
    color: var(--highlight);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--highlight);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out 0.7s both;
}

.discord-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 122, 106, 0.4);
    background: var(--gradient-accent);
}

.discord-link svg {
    transition: transform 0.3s ease;
}

.discord-link:hover svg {
    transform: scale(1.1);
}

.footer {
    position: absolute;
    bottom: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    #boulder-mascot {
        width: 150px;
        height: 150px;
    }

    .content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.75rem;
    }

    .container {
        padding: 1rem;
    }

    .content {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
}