:root {
    --primary-color: #2196F3; /* Синий */
    --secondary-color: #1976D2; /* Темно-синий */
    --text-color: #333333; /* Черный/Темно-серый */
    --bg-color: #FFFFFF; /* Белый */
    --light-bg: #F5F7FA; /* Светлый фон для секций */
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* Features */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Content Pages (Privacy & Terms) */
.content-page {
    padding: 120px 0 80px;
}

.content-page h1 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.content-page h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page p, .content-page ul {
    margin-bottom: 15px;
}

.content-page ul {
    padding-left: 20px;
}

.content-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.content-page table th,
.content-page table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.content-page table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

.content-page table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.operator-info,
.contact-info {
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.company-details {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.8;
}

.company-details p {
    margin: 5px 0;
}

/* Download Section */
.download {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.download h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.download > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
}

.store-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.store-button svg {
    width: 32px;
    height: 32px;
}

.store-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-button .small {
    font-size: 12px;
    opacity: 0.8;
}

.store-button .big {
    font-size: 18px;
    font-weight: bold;
}

.coming-soon {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-button {
        width: 100%;
        max-width: 280px;
    }
    
    .download h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-page {
        padding: 100px 0 60px;
    }
    
    .content-page h1 {
        font-size: 28px;
    }
    
    .content-page h2 {
        font-size: 22px;
    }
    
    .content-page table {
        font-size: 14px;
    }
    
    .content-page table th,
    .content-page table td {
        padding: 8px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-accept {
        width: 100%;
        max-width: 200px;
    }
    
    nav {
        height: 60px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .download h2 {
        font-size: 24px;
    }
    
    .store-button .big {
        font-size: 16px;
    }
}
