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

body {
    min-height: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #020408 0%, #060810 50%, #040608 100%);
    color: #e8ecf8;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.hero {
    text-align: center;
    margin: 20px 0;
    animation: fadeInDown 1s ease-out;
}

.hero h1 {
    font-size: clamp(28px, 8vw, 72px);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
}

.tagline {
    font-size: clamp(14px, 4vw, 24px);
    color: #c4d0ff;
    margin: 0 auto 15px;
    font-weight: 300;
    max-width: 800px;
}

.description {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.description p {
    line-height: 1.8;
    color: #dce3f5;
    margin-bottom: 12px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin: 20px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-card {
    padding: 15px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #c4d0ff;
}

.feature-card p {
    font-size: 14px;
    color: #dce3f5;
}

.coming-soon {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.coming-soon h2 {
    font-size: clamp(20px, 5vw, 36px);
    margin-bottom: 10px;
    color: #fbbf24;
    letter-spacing: 2px;
    font-weight: 700;
}

.coming-soon p {
    font-size: clamp(14px, 3vw, 18px);
    color: #dce3f5;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

/* Future page styles */
.section-title {
    font-size: clamp(20px, 5vw, 36px);
    margin-bottom: 10px;
    color: #c4d0ff;
    border-bottom: 2px solid rgba(99, 102, 241, 0.4);
    padding-bottom: 5px;
    margin-top: 20px;
    letter-spacing: 1px;
}

.content-section {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.content-section p {
    line-height: 1.8;
    color: #dce3f5;
    margin-bottom: 12px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-list {
    list-style: disc;
    padding-left: 1.5em;
    margin: 10px 0;
}

.content-list li {
    margin-bottom: 6px;
    color: #dce3f5;
    line-height: 1.8;
}

.content-list strong {
    color: #c4d0ff;
}

.content-list a {
    color: #c4d0ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-list a:hover {
    color: #e8ecf8;
}

.button-link {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.button-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

footer {
    text-align: center;
    padding: 20px 10px;
    border-top: 1px solid rgba(99, 102, 241, 0.4);
    margin-top: 20px;
    color: #c4d0ff;
    font-size: 14px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero { margin: 15px 0; }
    .description { padding: 10px; margin: 15px auto; }
    .features { grid-template-columns: 1fr; gap: 8px; }
    .coming-soon { padding: 15px; margin: 15px 0; }
    .cta-button { width: 100%; max-width: 300px; padding: 7px 15px; font-size: 14px; }
    .container { padding: 8px; }
    .content-section { padding: 10px; margin: 15px auto; }
}

@media (max-width: 480px) {
    .hero { margin: 10px 0; }
    .tagline { margin-bottom: 10px; }
    .description { margin: 10px auto; border-radius: 12px; }
    .coming-soon { padding: 10px; margin: 10px 0; border-radius: 12px; }
    footer { padding: 15px 8px; font-size: 12px; }
    .content-section { margin: 10px auto; border-radius: 12px; }
}
