:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-gold: #d4af37;
    --accent-silver: #c0c0c0;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Custom Cursor */
.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent-gold);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #151515 0%, #000000 100%);
    z-index: -2;
    transition: transform 0.1s ease-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDEiLz4KPC9zdmc+');
    z-index: -1;
    opacity: 0.5;
}

.container {
    text-align: center;
    padding: 4rem;
    max-width: 700px;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    /* Sharper corners for elitist look */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Typography */
.hero {
    margin-bottom: 4rem;
}

.glitch-wrapper {
    margin-bottom: 1.5rem;
}

.glitch {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-color);
    letter-spacing: -2px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-weight: 300;
    max-width: 80%;
    margin: 0 auto;
}

/* Newsletter */
.newsletter {
    margin-bottom: 4rem;
    position: relative;
}

.input-group {
    display: flex;
    gap: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    transition: border-color 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.input-group:focus-within {
    border-color: var(--accent-gold);
}

input[type="email"] {
    background: transparent;
    border: none;
    padding: 10px 0;
    color: white;
    width: 100%;
    outline: none;
    font-family: var(--font-main);
    font-size: 1rem;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

button {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--accent-gold);
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: none;
    /* Custom cursor handles this */
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

button:hover {
    color: white;
}

.form-message {
    margin-top: 15px;
    font-size: 0.85rem;
    height: 20px;
    font-weight: 300;
}

/* Socials */
.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: none;
    /* Custom cursor handles this */
}

.social-link:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

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

    .container {
        padding: 2rem;
        margin: 1rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    /* Hide custom cursor on touch */
    * {
        cursor: auto;
    }
}
