/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #79C9F0;
    --sky-blue: #87ceeb;
    --cloud-white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --accent-orange: #79C9F0;
    --gradient-sky: linear-gradient(135deg, #79C9F0 0%, #5ba3d1 50%, #4a8bb8 100%);
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 6px 20px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Static background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-sky);
    z-index: -2;
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header */
.header {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.logo-image {
    height: 80px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cloud-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-align: center;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.message {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.primary-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    line-height: 1.7;
}

.info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid var(--accent-orange);
}

.telegram-info {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.telegram-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.telegram-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.telegram-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.telegram-link {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    box-shadow: var(--shadow-medium);
    margin-bottom: 1rem;
}

.telegram-link:hover {
    opacity: 0.9;
}

.tip {
    font-style: italic;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0 !important;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem 0;
    color: var(--cloud-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .status-card {
        padding: 2rem 1.5rem;
    }
    
    .status-title {
        font-size: 1.8rem;
    }
    
    .telegram-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .status-title {
        font-size: 1.5rem;
    }
    
    .primary-message {
        font-size: 1.1rem;
    }
    
    .status-card {
        padding: 1.5rem 1rem;
    }
    
    .info-section {
        padding: 1.5rem;
    }
}
