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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000810;
    color: #ffffff;
    overflow-x: hidden;
}

/* Lava Lamp Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at top, #001a2e 0%, #000810 50%);
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: float-blob 20s ease-in-out infinite;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 174, 0, 0.4) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.blob2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 169, 245, 0.3) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.blob3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(250, 254, 188, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

.blob4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 145, 0, 0.3) 0%, transparent 70%);
    top: 40%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -80px) scale(1.1);
    }
    50% {
        transform: translate(-50px, 100px) scale(0.9);
    }
    75% {
        transform: translate(-100px, -50px) scale(1.05);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 8, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 174, 0, 0.2);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffae00 0%, #06a9f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffae00 0%, #ff9100 100%);
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 174, 0, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

h1 {
    font-size: 72px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffae00 0%, #fafebc 50%, #06a9f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.tagline {
    font-size: 24px;
    color: #fafebc;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(135deg, #ffae00 0%, #ff9100 100%);
    border: none;
    color: #000;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 174, 0, 0.5);
}

.cta-secondary {
    background: transparent;
    border: 2px solid #06a9f5;
    color: #06a9f5;
}

.cta-secondary:hover {
    background: rgba(6, 169, 245, 0.1);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    position: relative;
    padding: 100px 50px;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffae00 0%, #06a9f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(0, 47, 71, 0.3);
    border: 1px solid rgba(255, 174, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ffae00;
    box-shadow: 0 20px 40px rgba(255, 174, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fafebc;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    position: relative;
    padding: 80px 50px;
    text-align: center;
    background: rgba(255, 174, 0, 0.05);
    border-top: 1px solid rgba(255, 174, 0, 0.2);
    border-bottom: 1px solid rgba(255, 174, 0, 0.2);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item h2 {
    font-size: 48px;
    color: #ffae00;
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

/* Footer */
footer {
    position: relative;
    padding: 40px 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 174, 0, 0.2);
    z-index: 1;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #06a9f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffae00;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Loading Screen */
.loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000810;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-screen.active {
    display: flex;
}

.loading-content {
    text-align: center;
}

.loading-title {
    font-size: 32px;
    color: #ffae00;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffae00 0%, #06a9f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar-container {
    width: 400px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffae00 0%, #06a9f5 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 174, 0, 0.6);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loading-text {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    .tagline {
        font-size: 18px;
    }

    nav {
        padding: 15px 20px;
    }

    .features, .stats {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 36px;
    }
}