:root {
    --bg-color: #0d0d0d;
    --grid-color: rgba(255, 255, 255, 0.05);
    --primary-color: #ffd700;
    /* Vibrant Yellow */
    --secondary-color: #00ccff;
    /* Cyan */
    --accent-color: #ff4500;
    /* Orange-Red */
    --text-color: #ffffff;
    --font-heading: 'Luckiest Guy', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 4px 4px 0px var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.subheading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    letter-spacing: 1.5px;
}

.mascot-container {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 204, 255, 0.2);
}

.mascot-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
    box-shadow: 8px 8px 0px var(--secondary-color);
    margin-top: 2rem;
    backdrop-filter: blur(5px);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.ceo-badge {
    display: inline-block;
    background: var(--accent-color);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

@keyframes bounce {

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

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

@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }

    .mascot-container {
        width: 200px;
        height: 200px;
    }
}