:root {
    --primary: #ffffff;
    --accent: #d4af37; /* Metallic Gold */
    --bg-gradient: linear-gradient(135deg, #0f0f0f 0%, #232526 100%);
    --glass: rgba(255, 255, 255, 0.05);
}

:root {
    --primary: #ffffff;
    --accent: #d4af37;
    --bg-dark: #0a0a0b;
    --shape-1: #1a2a6c;
    --shape-2: #b21f1f;
    --shape-3: #fdbb2d;
}

body {
    background-color: var(--bg-dark);
    overflow: hidden; /* Keeps circles from causing scrollbars */
    position: relative;
}

/* --- Animated Circles Background --- */
.bg-visuals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px); /* This creates the soft, premium glow */
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--shape-1);
    top: -10%;
    left: -5%;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: var(--shape-2);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: var(--shape-3);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 15s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 100px) scale(1.1); }
}

/* --- Premium Divider --- */
.premium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
}

.premium-divider span {
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.diamond {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--accent);
}

/* --- Refined Card Styling --- */
.content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    /* ... existing padding/radius ... */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--primary);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.logo span { color: var(--accent); }

.content-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -1px;
}

p {
    color: #a0a0a0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Countdown Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.time-block span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.time-block label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

/* Form Styles */
.notify-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    outline: none;
}

button {
    background: var(--primary);
    color: black;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

button:hover {
    transform: translateY(-2px);
    background: var(--accent);
}

.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.social-links a:hover { color: var(--primary); }