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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a1929;
}

/* Hero Section - Landing Page with Glass Morphism */
.hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #415a77 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Animated background particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(65, 90, 119, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27, 38, 59, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero h1 .emoji {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.tagline {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #e0e7ff;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: #cbd5e1;
}

/* Glass Morphism Coming Soon Badge */
.coming-soon {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.coming-soon:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 48px 0 rgba(31, 38, 135, 0.5),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #60a5fa;
    font-weight: 700;
}

.coming-soon h2 .emoji {
    display: inline-block;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

/* Glass Morphism Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 
        0 16px 48px 0 rgba(31, 38, 135, 0.4),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #e0e7ff;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* Footer - Landing Page */
.hero footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 20px;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links a {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.footer-links a:hover {
    color: #93c5fd;
    background: rgba(96, 165, 250, 0.1);
    text-decoration: none;
}

.footer-links span {
    margin: 0 15px;
    opacity: 0.3;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

/* Legal Pages Styling with Glass Morphism */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.legal-page h1 {
    color: #60a5fa;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(96, 165, 250, 0.3);
}

.legal-page h2 {
    color: #60a5fa;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    color: #93c5fd;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 20px;
    color: #e0e7ff;
    line-height: 1.8;
}

.legal-page ul, .legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: #e0e7ff;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-page a:hover {
    color: #93c5fd;
    border-bottom-color: #60a5fa;
}

.back-link {
    display: inline-block;
    color: #60a5fa;
    text-decoration: none;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    background: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

/* Glass Morphism Tables */
.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

.legal-page th {
    background: rgba(96, 165, 250, 0.15);
    color: #e0e7ff;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

.legal-page td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
}

.legal-page tr:last-child td {
    border-bottom: none;
}

.legal-page tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.legal-page tr:hover {
    background: rgba(96, 165, 250, 0.05);
}

/* Footer - Legal Pages */
.legal-page footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #64748b;
}

.legal-page footer p {
    margin: 10px 0;
    color: #64748b;
}

.legal-page footer a {
    color: #60a5fa;
    margin: 0 10px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.legal-page footer a:hover {
    background: rgba(96, 165, 250, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .coming-soon {
        padding: 30px 20px;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 30px 20px;
    }
    
    .legal-page {
        padding: 40px 15px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page h2 {
        font-size: 1.5rem;
    }
    
    .legal-page h3 {
        font-size: 1.2rem;
    }
    
    .legal-page table {
        font-size: 0.9rem;
    }
    
    .legal-page th,
    .legal-page td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        padding: 25px 15px;
    }
    
    .feature {
        padding: 25px 15px;
    }
    
    .footer-links span {
        margin: 0 8px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(96, 165, 250, 0.3);
    color: #ffffff;
}
