/* CSS for That's Vinyl Landing Page */
@font-face {
    font-family: 'MicroFLF';
    src: url('fonts/MicroFLF.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MicroFLF';
    src: url('fonts/MicroFLF-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary: #67BED9;
    --background: #101010;
    --surface: #1C1C1E;
    --text: #ffffff;
    --text-dim: #a0a0a0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'MicroFLF', 'Inter', -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
}

.logo {
    width: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(103, 189, 217, 0.3));
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin: 20px 0 40px;
    line-height: 1.6;
}

.coming-soon {
    margin-bottom: 40px;
}

.icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    color: var(--text-dim);
}

.icons i {
    font-size: 2.5rem;
    transition: color 0.3s, transform 0.3s;
}

.icons i:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

footer {
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dim);
    width: 100%;
    margin-top: auto;
}

footer a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary);
}

/* Background Animation */
.vinyl-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: 120vw;
    background: radial-gradient(circle, transparent 20%, rgba(103, 189, 217, 0.05) 50%, transparent 70%);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .logo {
        width: 120px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.1rem;
        margin: 15px 0 30px;
    }

    .icons i {
        font-size: 2rem;
    }

    footer {
        padding: 30px 10px;
    }

    footer a {
        display: inline-block;
        margin: 5px 10px;
    }
}