:root {
    --bg-color: #F3EC19; /* Electric Yellow */
    --accent-color: #FF006E; /* Hot Pink */
    --secondary-color: #00F5FF; /* Cyan */
    --black: #000000;
    --border-width: 3px; /* Reduced from 4px */
    --shadow-offset: 6px; /* Reduced from 8px */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* We will use a custom cursor */
}

body {
    background-color: var(--bg-color);
    font-family: 'Space Grotesk', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 80px; /* Space for the marquee */
}

.cursor {
    width: 30px;
    height: 30px;
    border: 3px solid var(--black);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    background: var(--secondary-color);
    box-shadow: 4px 4px 0px var(--black);
    transition: transform 0.1s ease;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 3rem 1.5rem 150px; /* Extremely high padding for mobile browsers */
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 1rem; /* Reduced from 2rem */
}

.vinyl-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    position: relative;
}

.vinyl-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: var(--border-width) solid var(--black);
    animation: rotate 1.33s linear infinite; /* 45 RPM (60s / 45) */
    box-shadow: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    margin: 0;
    background: white;
    border: var(--border-width) solid var(--black);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--black);
    transform: none; /* Removed rotation to ensure no clipping occurs */
    margin-bottom: 1rem;
    max-width: 90%;
}

.main-logo {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0;
}

.subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem; /* Reduced from 2rem */
    font-weight: 800;
    margin-top: 0.5rem; /* Reduced from 1rem */
    background: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border: var(--border-width) solid var(--black);
    display: inline-block;
    transform: rotate(1deg);
    box-shadow: 4px 4px 0px var(--black);
    text-transform: uppercase;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem; /* Reduced gap from 2rem */
    width: 100%;
    max-width: 400px;
    margin-bottom: 100px; /* Extra space before marquee */
}

.brutalist-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    border: var(--border-width) solid var(--black);
    background: white;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--black);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.brutalist-link:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--black);
    background: var(--secondary-color);
}

.link-whatsapp:hover {
    background: #25D366; /* WhatsApp Green */
}

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

/* MARQUEE */
.footer-marquee {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--black);
    color: white;
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: var(--border-width) solid var(--black);
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-weight: 700;
    font-size: 1.2rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* BACKGROUND BLOB EFFECT */
.blob-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: var(--accent-color);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: moveBlob 20s infinite alternate;
}

@keyframes moveBlob {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-30%, -40%) scale(1.2); }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 600px) {
    .logo-container {
        padding: 0;
    }
    .main-logo {
        max-width: 200px;
    }
    .vinyl-wrapper {
        width: 150px;
        height: 150px;
    }
    .brutalist-link {
        font-size: 1.2rem;
    }
}
