* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Основные стили меню */
.navbar {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;  
    top: 0;      
    left: 0;     
    width: 100%;   
    z-index: 1000;  
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 30px;
    margin-right: 10px;
}

.site-name {
    font-size: 20px;
    font-weight: bold;
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 20px;
}

.nav-item a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    background-color: #333;
    border-radius: 4px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 200px;
    display: none;
    border-radius: 15px 15px 15px 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: #fff;
    border-width: 5px;
}

.dropdown li {
    padding: 0;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    padding: 12px 20px;
    border-bottom: 1px solid #333;
}

.dropdown a:hover {
    background-color: #333;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        align-items: center;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav-links.active {
        height: auto;
        padding: 20px 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .dropdown {
        position: static;
        display: none;
        width: 100%;
        text-align: center;
        box-shadow: none;
        background-color: #111;
    }

    .dropdown.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .dropdown-toggle {
        position: relative;
        padding-right: 20px !important;
    }
    .dropdown-toggle::after {
        content: '▼';
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8em;
        transition: all 0.3s;
    }
    .dropdown-toggle.active::after {
        content: '▲';
    }
    /* Плавное открытие/закрытие */
    .dropdown {
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
    .dropdown.active {
        max-height: 500px;
    }
}body{
    background-color: #000;
    padding-top: 70px; 
}
/*БЛОК*/
.content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.content-block.reverse {
    flex-direction: row-reverse; 
}

/* Текстовая часть */
.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 32px;
    color: #0859da;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}
.text-content2 h2 {
    font-size: 38px;
    color: #0859da;
    margin-bottom: 15px;
}

.text-content2 p {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.6;
}

/* Изображение */
.image-content {
    flex: 1;
    text-align: center;
    
}

.image-content img {
    max-width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .content-block {
        flex-direction: column;
        gap: 0px;
    }
    
    .content-block.reverse {
        flex-direction: column;
    }
    
    .text-content, .image-content {
        width: 100%;
    }
}
.divider.shadow {
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    border: 0;
    width: 85%;
    margin: 30px auto;
}
        
.my-button:hover {
    background-color: #0364ff;
}

.my-button:active {
    background-color: #013ea0;
}.my-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #0859da;
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}.preorderti{
    color: #0364ff;
    text-align: center;
    font-size: 28px;
}.preorderde{
    color: #fff;
    font-size: 22px;
    text-align: center;
}