:root {
    --primary: #ff52a2; /* Neon Pink */
    --secondary: #00d2ff; /* Neon Cyan */
    --bg-dark: #0a0a1a; /* Deep Navy */
    --text-white: #ffffff;
    --accent-purple: #9c27b0;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.15) 0%, rgba(10, 10, 26, 1) 70%);
    z-index: -1;
}

header {
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 4px;
    color: var(--text-white);
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    margin: 0;
}

/* Glitch Effect for Title */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: var(--secondary);
    z-index: -1;
    animation: glitch 3s infinite;
}

.glitch::after {
    color: var(--primary);
    z-index: -2;
    animation: glitch 2s infinite reverse;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border: 4px solid var(--secondary);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-container:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 0 50px rgba(255, 82, 162, 0.6);
    border-color: var(--primary);
}

.hero-image {
    width: 100%;
    display: block;
    filter: saturate(1.2) brightness(1.1);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 82, 162, 0.2) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

footer {
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.coming-soon h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 10px;
    color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary);
    animation: pulse 2s infinite ease-in-out;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: blink 1s infinite alternate;
}

.subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.3; }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header { padding: 20px 10px; }
    h1 { font-size: 3rem; }
    .coming-soon h2 { font-size: 1.8rem; letter-spacing: 5px; }
}
