:root {
    --font-retro: 'Press Start 2P', cursive;
    --font-mono: 'Space Mono', monospace;
    --font-display: 'Work Sans', sans-serif;

    --color-black: #000000;
    --color-white: #ffffff;
    --color-yellow: #ffc800;
    --color-border: 4px solid #000;
    --shadow-block: 8px 8px 0px #000;
    --shadow-hover: 4px 4px 0px #000;
}

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

}

body {
    font-family: var(--font-mono);
    background-color: var(--color-white);
    color: var(--color-black);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

/* Custom Scrollbar for the aesthetic */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-white);
    border-left: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-black);
    border: 2px solid var(--color-white);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-yellow);
}

/* Background Texture */
.bg-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-image: radial-gradient(#00000015 2px, transparent 2px);
    background-size: 32px 32px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.logo-wrapper {
    width: 120px;
    height: 120px;
    border: var(--color-border);
    background: var(--color-white);
    box-shadow: var(--shadow-block);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-wrapper:hover {
    transform: rotate(5deg) scale(1.1);
}

.logo {
    width: 80%;
    height: auto;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-retro);
    font-size: 0.9rem;
    border-radius: 999px;
    margin-bottom: 2rem;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

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

.title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 4px var(--color-black);
    text-shadow: 8px 8px 0 var(--color-yellow);
}

.tagline {
    margin-bottom: 3rem;
    transform: rotate(-1deg);
}

.tagline p {
    font-family: var(--font-retro);
    font-size: clamp(0.7rem, 2vw, 1.2rem);
    background: var(--color-white);
    border: var(--color-border);
    padding: 1rem 2rem;
    display: inline-block;
    box-shadow: var(--shadow-block);
}

.highlight {
    color: var(--color-white);
    background: var(--color-black);
    padding: 0 0.5rem;
}

.description-box {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: var(--color-white);
    border: 3px solid var(--color-black);
    padding: 2rem;
    box-shadow: 12px 12px 0 var(--color-black);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA & Socials */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    font-family: var(--font-retro);
    background: var(--color-yellow);
    border: var(--color-border);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    color: var(--color-black);
    font-size: 0.9rem;
    box-shadow: var(--shadow-block);
    transition: all 0.1s;
}

.btn-secondary {
    background: var(--color-white);
}

.btn:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--shadow-hover);
}

.btn:active {
    transform: translate(8px, 8px);
    box-shadow: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-black);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 4px 4px 0 #000;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.icon-box:hover svg {
    transform: scale(1.1);
}

.icon-box:hover {
    background: var(--color-yellow);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 8px 8px 0 #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    opacity: 0.7;
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Floating Elements */
.floating-shape {
    position: fixed;
    z-index: -1;
    border: 3px solid var(--color-black);
    pointer-events: none;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: var(--color-yellow);
    top: 15%;
    left: 10%;
    transform: rotate(15deg);
}

.shape-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #000;
    top: 60%;
    right: 5%;
    opacity: 0.1;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    bottom: 20%;
    left: 20%;
    transform: rotate(-10deg);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .outline {
        -webkit-text-stroke: 2px var(--color-black);
    }

    .tagline p {
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }

    .description-box {
        padding: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}