﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 50%, #42A5F5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 800px;
    width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.logo-circle::before {
    content: '</>';
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: white;
    font-size: 36px;
}

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

h1 {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #81D4FA, #4FC3F7);
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 600;
    color: #0277BD;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #0277BD;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.progress-section {
    margin: 40px 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-label {
    font-weight: 600;
    color: #2d3436;
}

.progress-value {
    font-weight: 700;
    color: #2196F3;
    font-size: 1.1em;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2196F3, #1976D2);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

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

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

.timeline {
    margin: 40px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, #2196F3, transparent);
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.timeline-dot.pending {
    background: #e0e0e0;
    color: #999;
}

.timeline-content {
    flex: 1;
    padding-top: 6px;
}

.timeline-title {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 0.85em;
    color: #999;
}

.eta-card {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 30px 0;
}

.eta-label {
    font-size: 0.9em;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eta-value {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.eta-subtext {
    font-size: 0.9em;
    opacity: 0.8;
}

.faq-section {
    margin: 40px 0;
}

.faq-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2196F3;
}

.faq-question {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.9em;
    color: #666;
}

.contact-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
    border-radius: 16px;
    color: white;
    margin-top: 30px;
}

.contact-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-text {
    margin-bottom: 20px;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: white;
    color: #1976D2;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.contact-btn.telegram:hover {
    background: #006699;
}

.footer {
    text-align: center;
    color: white;
    font-size: 0.9em;
    margin-top: 20px;
    opacity: 0.9;
}

.joke-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85em;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .card {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .eta-value {
        font-size: 2em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        justify-content: center;
    }
}