:root {
    --bg-color: #0d0117;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent-gold: #ffcf4b;
    --accent-purple: #9d50bb;
    --accent-pink: #e040fb;
    --text-main: #ffffff;
    --text-muted: #b0a0c0;
    --nav-height: 80px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glass Header */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(13, 1, 23, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
}

.magic-text {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 207, 75, 0.3);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(157, 80, 187, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(224, 64, 251, 0.1) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.accent-text {
    color: var(--accent-gold);
    display: block;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.store-btn img {
    height: 48px;
    transition: transform 0.3s ease;
}

.store-btn:hover img {
    transform: translateY(-3px);
}

.coming-soon {
    opacity: 0.7;
    cursor: default;
    filter: grayscale(1);
    transition: 0.3s;
}

.coming-soon:hover::after {
    content: 'Coming Soon';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--accent-gold);
}

/* Main Image & Glow */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
    filter: blur(40px);
}

/* Features */
.features {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.feat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* Safety Section */
.safety {
    padding: 50px 0;
}

.safety-box {
    background: linear-gradient(135deg, rgba(82, 33, 110, 0.3), rgba(0, 0, 0, 0.3));
    border: 1.5px solid var(--accent-purple);
}

.safety-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.safety-list li {
    padding-left: 1.5rem;
    position: relative;
}

.safety-list li::before {
    content: '🛡️';
    position: absolute;
    left: -10px;
}

/* Legal Section */
.legal {
    padding: 100px 0;
}

.legal-box {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text {
    max-height: 400px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.legal-text h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-main);
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
}

/* Animations */
@keyframes reveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal { animation: reveal 1s ease forwards; }
.reveal-delay-1 { animation: reveal 1s ease 0.3s forwards; opacity: 0; }
.reveal-delay-2 { animation: reveal 1s ease 0.6s forwards; opacity: 0; }

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image-wrapper { order: -1; }
    .subtitle { margin: 0 auto 2.5rem; }
    .hero-btns { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .safety-list { grid-template-columns: 1fr; }
    h1 { font-size: 3rem; }
}

/* ===== BETA SIGNUP SECTION ===== */
.beta-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 207, 75, 0.08) 0%, transparent 70%);
}

.beta-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem;
    background: linear-gradient(135deg, rgba(255, 207, 75, 0.06), rgba(157, 80, 187, 0.1));
    border: 1.5px solid rgba(255, 207, 75, 0.3);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(255, 207, 75, 0.08), 0 2px 12px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.beta-box::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 207, 75, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ffcf4b, #e040fb);
    color: #0d0117;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.beta-box h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.beta-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.beta-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.perk {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    transition: border-color 0.3s, background 0.3s;
}

.perk:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 207, 75, 0.1);
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.beta-form input {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.beta-form input::placeholder {
    color: var(--text-muted);
}

.beta-form input:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 207, 75, 0.06);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-gold), #f7b731);
    color: #0d0117;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 207, 75, 0.4);
    filter: brightness(1.05);
}

.beta-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 14px;
    letter-spacing: 0.5px;
}

.beta-note {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Beta success state */
.beta-success {
    display: none;
    padding: 1.2rem;
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.3);
    border-radius: 14px;
    color: #06D6A0;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
}

@media (max-width: 700px) {
    .form-row { grid-template-columns: 1fr; }
    .beta-box { padding: 2.5rem 1.5rem; }
    .beta-box h2 { font-size: 1.8rem; }
}
