


.NONTBQwM3TTzg1BwETrqFRwrZllRZKnU {
    background-color: #0d2957;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* можно задать фиксированную ширину, например, 1200px */
    height: 60px; /* можно выбрать высоту, которая будет подходить */
}

.NONTBQwM3TTzg1BwETrqFRwrZllRZKnU a {
    display: flex;
    align-items: center;
    color: #0d2957;
    text-align: left;
    text-decoration: none;
}
.NONTBQwM3TTzg1BwETrqFRwrZllRZKnU a:hover {
    background-color: #FFA500;
    color: black;
}
.NONTBQwM3TTzg1BwETrqFRwrZllRZKnU a.active {
    background-color: #0d2957;
    color: white;
}
.NONTBQwM3TTzg1BwETrqFRwrZllRZKnU a {
    margin-left: 0;
}
.ezfYS97CIoeKhfP6fS9WGoJtu3tyvPZx {
    margin: 0;
    display: flex;
    align-items: center;
}
.ezfYS97CIoeKhfP6fS9WGoJtu3tyvPZx a {
    padding-left: 5px; 
    display: flex;
    align-items: center;
}
.xpAW8lLAxAYb97tI1MFRUqfoeYwCZreV {
    width: 2.5em;
    height: 2.5em;
}
.ynBSYph0FEuiY9rrTlFeHjeFRScZpjcx {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    padding-left: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7), -1px -1px 2px rgba(0, 0, 0, 0.7);
    word-wrap: break-word; 
    word-break: break-word; 
    overflow-wrap: break-word; 
}
.saLJgNE0nnkzef97l1Uv3aINyAv7COPO {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), -2px -2px 4px rgba(0, 0, 0, 0.7);
}
.mvaVZhkq3qTqJ3FihrABaJGnem11lSEo {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), -2px -2px 4px rgba(0, 0, 0, 0.7);
}
.mvaVZhkq3qTqJ3FihrABaJGnem11lSEo {
    font-size: 1em;
}
.a82L0jYgy8ad06H3gWXAYLUWQff3fATe {
    display: flex;
    align-items: center;
    padding: 0;
}
.a82L0jYgy8ad06H3gWXAYLUWQff3fATe a {
    margin-left: 0;
}
.VrcTsJpZAsYJUduQr8YL0YRlZ0PT5tpW {
    width: 3em;
    height: 3em;
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            //display: flex;
            justify-content: center;
            align-items: center;
            //padding: 20px;
        }
        
        .container {
            //max-width: 1200px;
            width: 100%;
            text-align: center;
        }
        
        header {
            margin-bottom: 50px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        p.subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .version-selector {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 20px;
        }
        
        .version-card {
            background: white;
            border-radius: 15px;
            width: 350px;
            padding: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: block;
            text-decoration: none;
            color: inherit;
        }
        
        .version-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .version-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
        }
        
        .online::before {
            background: linear-gradient(90deg, #3498db, #2ecc71);
        }
        
        .offline::before {
            background: linear-gradient(90deg, #9b59b6, #e74c3c);
        }
        
        .icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .online .icon {
            color: #3498db;
        }
        
        .offline .icon {
            color: #9b59b6;
        }
        
        .version-card h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .version-description {
            color: #7f8c8d;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            pointer-events: none; /* Чтобы клик по кнопке не перекрывал клик по карточке */
        }
        
        .btn-online {
            background: #3498db;
            color: white;
        }
        
        .btn-offline {
            background: #9b59b6;
            color: white;
        }
        
        footer {
            margin-top: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .version-selector {
                flex-direction: column;
                align-items: center;
            }
            
            h1 {
                font-size: 2rem;
            }
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}