:root {
    --deep-navy: #0f1218;
    --cosmic-blue: #243763;
    --glowing-gold: #f6c144;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(36, 55, 99, 0.25);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--deep-navy);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo span {
    font-family: 'Montserrat', sans-serif;
}

h1, h2 {
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--glowing-gold);
}

/* Background Effects */
.stellar-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: drift 20s infinite alternate ease-in-out;
}

.glow-1 {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--cosmic-blue) 0%, transparent 70%);
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, var(--glowing-gold) 0%, transparent 70%);
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(15, 18, 24, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    z-index: 1000;
    padding: 15px 30px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 500;
}

/* Layout */
main {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 0 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFF, var(--glowing-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--text-primary);
    color: var(--deep-navy);
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary span {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2;
}

.btn-primary strong {
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    color: var(--deep-navy);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-star {
    animation: float 6s ease-in-out infinite;
}

.floating-star img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(246, 193, 68, 0.4));
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 193, 68, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(246, 193, 68, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--glowing-gold);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Support & Contact */
.support-hub, .contact-section {
    padding: 50px;
}

.support-hub h2, .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--glowing-gold);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
}

.contact-section {
    text-align: center;
}

.support-email {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-navy);
    padding: 15px 30px;
    background: rgba(246, 193, 68, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(246, 193, 68, 1);
}

/* Compliance Banner */
.compliance-banner {
    background: rgba(36, 55, 99, 0.8);
    border: 1px solid var(--cosmic-blue);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
}

.compliance-banner strong {
    color: var(--glowing-gold);
}

/* Footer */
.legal-footer {
    padding: 30px 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .nav-links {
        display: none; /* simple mobile version */
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
