:root {
    --primary-color: #ff007f;
    --secondary-color: #00ffff;
    --bg-color: #0a0a0c;
    --text-color: #ffffff;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', 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-x: hidden;
    cursor: none;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 9999;
}

body:hover .cursor {
    transform: translate(-50%, -50%) scale(1.5);
}

h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(45deg, #110011, #001111);
}

.glitch {
    font-size: 5rem;
    position: relative;
    color: var(--primary-color);
    text-shadow: 0.05em 0 0 var(--secondary-color), -0.05em -0.05em 0 var(--primary-color);
    animation: glitch 725ms infinite;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 var(--secondary-color), -0.05em -0.05em 0 var(--primary-color); }
    15% { text-shadow: -0.05em -0.05em 0 var(--secondary-color), 0.05em 0.05em 0 var(--primary-color); }
    50% { text-shadow: 0.05em 0.05em 0 var(--secondary-color), -0.05em 0 0 var(--primary-color); }
    100% { text-shadow: -0.05em 0 0 var(--secondary-color), -0.05em -0.05em 0 var(--primary-color); }
}

.hero p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 20px 0;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 2s forwards 1s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.btn {
    padding: 15px 30px;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 30px;
}

.btn:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}