* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #667eea;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 30px;
}

.lang-switch a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.lang-switch a:hover {
    opacity: 1;
}

.lang-switch a.active {
    opacity: 1;
    font-weight: bold;
}

.lang-switch span {
    color: #666;
}

.btn-download {
    padding: 10px 24px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-download:hover {
    transform: scale(1.05);
}

.hero {
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #667eea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ccc;
}

.hero-description {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #667eea;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #667eea;
    transform: scale(1.05);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
    color: #667eea;
}

.stat-label {
    font-size: 14px;
    color: #aaa;
}

.hero-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.preview-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
    width: 280px;
    border: 1px solid rgba(255,255,255,0.2);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: bold;
}

.preview-score {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin: 15px 0;
    color: #4caf50;
}

.preview-bar {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0;
}

.preview-fill {
    height: 100%;
    width: 100%;
    background: #4caf50;
    border-radius: 4px;
}

.preview-text {
    text-align: center;
    font-size: 14px;
    color: #4caf50;
    font-weight: bold;
}

.features-short {
    padding: 60px 0;
    background: rgba(255,255,255,0.03);
}

.features-short h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #aaa;
    font-size: 14px;
}

/* Секция ожидания публикации */
.waiting-section {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.waiting-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.lang-switch a.active-lang {
    opacity: 1;
    font-weight: bold;
}

.waiting-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff9800;
}

.waiting-text {
    color: #aaa;
    margin-bottom: 20px;
}

.waiting-note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-copyright {
    font-size: 12px;
    color: #555;
}

.page-header {
    padding: 60px 0 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.section {
    padding: 40px 0;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    color: #aaa;
    font-size: 14px;
}

.download-section {
    padding: 60px 0;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 40px auto;
}

.browser-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.browser-card:hover {
    transform: translateY(-5px);
}

.browser-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.browser-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.browser-card p {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 20px;
}

.btn-browser {
    padding: 10px 20px;
    background: #667eea;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-browser:hover {
    background: #5a67d8;
}

.btn-browser.disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.6;
}

.waiting-badge {
    background: rgba(255,152,0,0.2);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    color: #ff9800;
    margin-top: 10px;
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
}