:root {
    --bg-color: #050505;
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-heading: 'Shivaraja', 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

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

/* Custom Cursor & Noise */
#cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 9999; transform: translate(-50%, -50%);
}
#cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 9998; transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}
.cursor-hover #cursor-ring {
    width: 55px; height: 55px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px var(--accent-gold-glow);
}
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9997; opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0; left: 0; 
    width: 100vw; height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 15s infinite alternate ease-in-out;
}
.orb-1 { width: 300px; height: 300px; background: #d4af37; top: -100px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: #d4af37; bottom: -150px; right: -100px; animation-duration: 25s; animation-direction: alternate-reverse;}
.orb-3 { width: 250px; height: 250px; background: var(--accent-gold-glow); top: 40%; left: 50%; animation-duration: 20s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.1); }
}

.radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Container */
.container {
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Logo */
.logo-section .logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Heading & Text */
.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.heading-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.line-left,
.line-right {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.line-right {
    background: linear-gradient(-90deg, transparent, var(--accent-gold));
}

.heading {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 10vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 0.09em;
    background: linear-gradient(to right, #fff 20%, #d4af37 40%, #d4af37 60%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-transform: uppercase; */
    animation: shine 6s linear infinite;
    text-align: center;
    margin: 1;
    line-height: 1;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.subtext {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--accent-gold-glow);
}

.subtext-small {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-badge {
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-white);
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.02), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.store-badge i {
    font-size: 1.8rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.store-small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

.store-large {
    font-size: 1.1rem;
    font-weight: 600;
}

.store-badge:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Form Section */
.form-section {
    width: 100%;
}

.notify-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.4rem;
    display: flex;
    transition: var(--transition-smooth);
}

.notify-form:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.input-group {
    display: flex;
    width: 100%;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    animation: pulseSoft 3s infinite;
}

@keyframes pulseSoft {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.8); }
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.form-message.success { color: var(--accent-gold); }
.form-message.error { color: #ff4b2b; }

/* Footer */
.footer {
    margin-top: auto;
    padding-bottom: 2rem;
    color: var(--text-gray);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    width: 100%;
    position: relative;
    z-index: 10;
}

.dev-credit {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

.dev-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.dev-credit a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-gold-glow);
}

/* Breakpoints */
@media (max-width: 480px) {
    .container { padding: 1.5rem; }
    .heading-wrapper { gap: 0.5rem; }
    .line-left, .line-right { width: 30px; }
    .heading { font-size: 2.2rem; letter-spacing: 0.1em; }
    .subtext { font-size: 1.1rem; letter-spacing: 0.15em; }
    .notify-form { flex-direction: column; border-radius: 20px; padding: 1rem; gap: 1rem; }
    .input-group { flex-direction: column; gap: 1rem; }
    .input-group input { padding: 0.5rem 0; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .btn-primary { width: 100%; }
}

/* Reveal Animations */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-init.reveal {
    opacity: 1;
    transform: translateY(0);
}

.logo-section.reveal-init { transition-delay: 0.1s; }
.content-section.reveal-init { transition-delay: 0.3s; }
.platform-badges.reveal-init { transition-delay: 0.5s; }
.form-section.reveal-init { transition-delay: 0.7s; }
.footer.reveal-init { transition-delay: 1s; }

/* Desktop Hover Adjustments */
@media (hover: hover) {
    .btn-primary:hover {
        letter-spacing: 0.05em;
    }
}
