* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgba(10, 10, 20, 2) 0%, rgba(25, 25, 40, 0.9) 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== АДАПТИВНЫЙ КОНТЕЙНЕР ===== */
.header-container,
.main-content,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;  
    padding: 0 20px;
}

@media (min-width: 1921px) {
    .header-container,
    .main-content,
    .footer-container {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .main-content {
        margin-top: 100px;
    }
}

/* ===== КАСТОМНЫЙ СЕЛЕКТ ===== */
.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-field {
    width: 100%;
    padding: 12px 15px;
    background: rgba(20, 20, 35, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1280px) {
    .custom-select-field {
        padding: 14px 15px;
        font-size: 15px;
    }
}

.custom-select-field.open {
    border-color: rgba(255, 68, 68, 0.5);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.custom-select-field .placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.custom-select-field.selected .placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.custom-select-field i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.custom-select-field.open i {
    transform: rotate(180deg);
    color: #ff4444;
}

.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 35, 0.95);
    border: 2px solid rgba(255, 68, 68, 0.5);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 100;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.custom-dropdown.open {
    display: block;
}

.dropdown-option {
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1280px) {
    .dropdown-option {
        padding: 15px 15px;
        font-size: 15px;
    }
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background-color: rgba(255, 68, 68, 0.8);
    color: #ffffff;
}

.dropdown-option.selected {
    background-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
    font-weight: bold;
}

.agreement-checkbox input[type="checkbox"] {
    accent-color: #ff4444;
}

/* ===== АДАПТИВНЫЙ HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1280px) {
    .header {
        padding: 12px 0;
    }
}

@media (min-width: 1921px) {
    .header {
        padding: 20px 0;
    }
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4444, transparent);
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 1280px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

@media (max-width: 1280px) {
    .logo img {
        height: 35px;
    }
    
    .logo {
        justify-content: center;
    }
}

@media (min-width: 1921px) {
    .logo img {
        height: 50px;
    }
}

.logo:hover img {
    transform: none;
}

@media (max-width: 1280px) {
    .logo-text {
        font-size: 20px;
    }
}

@media (min-width: 1921px) {
    .logo-text {
        font-size: 28px;
    }
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 1280px) {
    .nav-menu {
        gap: 20px;
        justify-content: center;
        order: 3;
        width: 100%;
    }
}

@media (min-width: 1921px) {
    .nav-menu {
        gap: 40px;
    }
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 1280px) {
    .nav-link {
        font-size: 16px;
    }
}

@media (min-width: 1921px) {
    .nav-link {
        font-size: 20px;
    }
}

.nav-link:hover {
    transform: scale(1.1);
}

.nav-link.active {
    color: #ff4444;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff4444;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-right: auto;
    padding: 0 25px;
    flex-shrink: 0;
}

@media (max-width: 1280px) {
    .header-social {
        padding: 0 15px;
        gap: 25px;
        justify-content: center;
        order: 2;
        width: 100%;
    }
    
    .header-social::before,
    .header-social::after {
        display: none;
    }
}

.header-social::before,
.header-social::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.header-social::before {
    left: 0;
}

.header-social::after {
    right: 0;
}

.social-link-header {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

@media (max-width: 1280px) {
    .social-link-header {
        font-size: 22px;
    }
}

@media (min-width: 1921px) {
    .social-link-header {
        font-size: 24px;
    }
}

.social-link-header:hover {
    transform: translateY(-2px);
}

.social-vk:hover {
    color: #07F !important;
}

.social-telegram:hover {
    color: #26A5E4 !important;
}

.social-discord:hover {
    color: #5865F2 !important;
}

.social-tiktok:hover {
    background: linear-gradient(180deg, #FE2C55, #25F4EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

/* ===== АДАПТИВНЫЙ БАННЕР ===== */
.main-content {
    flex: 1;
    width: 100%;
    margin-top: 30px;
}

@media (max-width: 1280px) {
    .main-content {
        margin-top: 30px;
        padding: 20px 15px;
    }
}

@media (min-width: 1921px) {
    .main-content {
        margin-top: 30px;
    }
}

.banner-container {
    position: relative;
    width: 100vw;
    height: 950px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1280px) {
    .banner-container {
        height: 430px;
    }
}

@media (min-width: 1921px) {
    .banner-container {
        height: 1300px;
    }
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 10, 20, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

@media (max-width: 1280px) {
    .banner-overlay {
        padding: 25px;
        height: 70%;
    }
}

@media (min-width: 1921px) {
    .banner-overlay {
        padding: 60px;
    }
}

.banner-content {
    max-width: 800px;
}

@media (max-width: 1280px) {
    .banner-content {
        max-width: 100%;
    }
}

.banner-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1280px) {
    .banner-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

@media (min-width: 1921px) {
    .banner-title {
        font-size: 60px;
        margin-bottom: 25px;
    }
}

.banner-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1280px) {
    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1921px) {
    .banner-subtitle {
        font-size: 28px;
        margin-bottom: 35px;
    }
}

.banner-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

@media (max-width: 1280px) {
    .banner-button {
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (min-width: 1921px) {
    .banner-button {
        font-size: 22px;
        padding: 18px 50px;
    }
}

.banner-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.6);
    background: linear-gradient(45deg, #ff3333, #ff5555);
}

/* ===== АДАПТИВНЫЙ БЛОК НОВОСТЕЙ ===== */
.news-section {
    background: transparent;
    border-radius: 0;
    padding: 40px ;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 
        0 -1px 0 rgba(255, 68, 68, 0.1),
        0 1px 0 rgba(255, 68, 68, 0.1);
}

@media (max-width: 1280px) {
    .news-section {
        padding: 25px 0;
        margin-bottom: 30px;
    }
}

@media (min-width: 1921px) {
    .news-section {
        padding: 50px;
        margin-bottom: 60px;
    }
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 1280px) {
    .section-header {
        margin-bottom: 25px;
    }
}

.section-header h2 {
    font-size: 32px;
    color: #ff4444;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}

@media (max-width: 1280px) {
    .section-header h2 {
        font-size: 24px;
        gap: 8px;
    }
}

@media (min-width: 1921px) {
    .section-header h2 {
        font-size: 40px;
        gap: 15px;
    }
}

.news-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

@media (max-width: 1280px) {
    .news-carousel-container {
        min-height: auto;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    color: rgba(255, 68, 68, 0.9); /* Сделал ярче */
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn-left {
    left: -20px; 
}

.carousel-btn-right {
    right: -20px; 
}

.carousel-btn:hover {
    color: #ff4444;
    transform: translateY(-50%) scale(1.2);
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none !important;
    }
    
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 25px;
    }
    
    .carousel-nav-bottom {
        display: flex;
    }
}

@media (max-width: 1280px) {
    .carousel-btn {
        display: none !important;
    }
    
    .carousel-btn-left,
    .carousel-btn-right {
        display: none !important;
    }
    
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 25px;
    }
}

/* Для больших экранов */
@media (min-width: 1921px) {
    .carousel-btn {
        font-size: 40px;
        width: 80px;
        height: 80px;
    }
    
    .carousel-btn-left {
        left: -75px;
    }
    
    .carousel-btn-right {
        right: -75px;
    }
}

.carousel-nav-bottom {
    display: none;
}

.news-slide {
    display: none;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.news-slide.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@media (max-width: 1280px) {
    .news-slide {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (min-width: 1921px) {
    .news-slide {
        grid-template-columns: 350px 1fr;
        gap: 50px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.news-image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1280px) {
    .news-image {
        width: 100%;
        height: 220px;
    }
}

@media (min-width: 1921px) {
    .news-image {
        width: 350px;
        height: 350px;
    }
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

@media (max-width: 1280px) {
    .news-content {
        padding-right: 0;
    }
}

.news-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1280px) {
    .news-header {
        gap: 12px;
        margin-bottom: 15px;
    }
}

.news-badge {
    background: rgba(255, 68, 68, 0.2);
    color: #ff8888;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

@media (max-width: 1280px) {
    .news-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
}

.news-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 1280px) {
    .news-date {
        font-size: 12px;
    }
}

.news-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 1280px) {
    .news-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
}

@media (min-width: 1921px) {
    .news-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

.news-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px ;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 1280px) {
    .news-description {
        font-size: 15px;
        line-height: 1.5;
        padding: 25px 15px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1921px) {
    .news-description {
        font-size: 20px;
        max-width: 700px;
    }
}

.news-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 68, 68, 0.2);
    color: #ff8888;
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 68, 68, 0.3);
    width: fit-content;
}

@media (max-width: 1280px) {
    .news-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (min-width: 1921px) {
    .news-button {
        font-size: 18px;
        padding: 14px 30px;
    }
}

.news-button:hover {
    background: rgba(255, 68, 68, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media (max-width: 1280px) {
    .carousel-dots {
        margin-top: 25px;
        gap: 8px;
    }
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 1280px) {
    .dot {
        width: 10px;
        height: 10px;
    }
}

.dot.active {
    background: #ff4444;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 68, 68, 0.5);
}

/* ===== АДАПТИВНЫЙ КОНТЕНТ ===== */

.content-container {
background: transparent;
    border-radius: 0;
    padding: 40px 60px;
    margin-bottom: 50px;
    position: relative;
}

@media (max-width: 1280px) {
    .content-container {
        padding: 25px 0;
        margin-bottom: 30px;
    }
}

@media (min-width: 1921px) {
    .content-container {
        padding: 50px;
        margin-bottom: 60px;
    }
}

.content-block {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 40px;
    margin-bottom: 30px;
}

@media (max-width: 1280px) {
    .content-block {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1921px) {
    .content-block {
        padding: 50px;
        margin-bottom: 40px;
    }
}

.content-block h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 1280px) {
    .content-block h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1921px) {
    .content-block h1 {
        font-size: 48px;
        margin-bottom: 30px;
    }
}

.content-block h2 {
    font-size: 28px;
    margin: 25px 0 15px;
    color: #ff4444;
}

@media (max-width: 1280px) {
    .content-block h2 {
        font-size: 22px;
        margin: 20px 0 12px;
    }
}

@media (min-width: 1921px) {
    .content-block h2 {
        font-size: 36px;
        margin: 30px 0 20px;
    }
}

.content-block p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1280px) {
    .content-block p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
}

@media (min-width: 1921px) {
    .content-block p {
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}

.content-block ul, 
.content-block ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

@media (max-width: 1280px) {
    .content-block ul, 
    .content-block ol {
        margin-left: 20px;
        margin-bottom: 15px;
    }
}

.content-block li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1280px) {
    .content-block li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
}

/* ===== АДАПТИВНАЯ КНОПКА СКРОЛЛА ===== */
.scroll-down-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-down-btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

@media (max-width: 1280px) {
    .scroll-down-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 1921px) {
    .scroll-down-btn {
        width: 70px;
        height: 70px;
        font-size: 28px;
        bottom: 40px;
        right: 40px;
    }
}

.scroll-down-btn:hover {
    background: linear-gradient(45deg, #ff3333, #ff5555);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.6);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== АДАПТИВНЫЙ ФУТЕР ===== */
.footer {
    width: 100%;
    
    background-color: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid linear-gradient(90deg, transparent, #ff4444, transparent);
    z-index: 1000;
    padding: 20px 0;
    position: relative;
    margin-top: auto;
}

@media (max-width: 1280px) {
    .footer {
        padding: 25px 0 20px;
    }
}

@media (min-width: 1921px) {
    .footer {
        padding: 30px 0;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4444, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.footer.visible::before {
    opacity: 0.7;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
    flex-wrap: wrap;
    gap: 25px;
}

@media (max-width: 1280px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        min-height: auto;
    }
}

.footer-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1280px) {
    .footer-text {
        width: 100%;
        text-align: center;
        align-items: center;
    }
}

.footer-text p {
    margin: 2px 0;
    line-height: 1.4;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 1280px) {
    .footer-right {
        width: 100%;
        align-items: center;
    }
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 1280px) {
    .footer-payments {
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }
}

.payment-logo {
    height: 30px;
    opacity: 0.7;
}

@media (max-width: 1280px) {
    .payment-logo {
        height: 25px;
    }
}

.footer-links {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

@media (max-width: 1280px) {
    .footer-links {
        align-items: center;
        text-align: center;
    }
}

.footer-links p {
    margin: 2px 0;
    line-height: 1.4;
}

/* ===== АДАПТИВНЫЙ МАГАЗИН ===== */
.shop-block {
    position: relative;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: transparent !important;
    overflow: hidden;
} 

.shop-container {
    max-width: 500px;
    width: 100%;
    margin: 3% auto 0;
    padding: 30px;
    background: rgba(15, 15, 25, 0.9) !important;
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.shop-h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
}

.shop-step {
    margin-bottom: 25px;
}

.shop-step h3 {
    color: #ff4444;
    margin-bottom: 12px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.custom-select-field {
    width: 100%;
    padding: 14px 18px;
    background: rgba(20, 20, 35, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select-field:hover {
    border-color: rgba(255, 68, 68, 0.5);
}

.custom-select-field.open {
    border-color: rgba(255, 68, 68, 0.5);
}

.custom-select-field .placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.custom-select-field.selected .placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.custom-select-field i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.custom-select-field.open i {
    transform: rotate(180deg);
    color: #ff4444;
}

.custom-dropdown {
    background: rgba(20, 20, 35, 0.95);
    border: 2px solid rgba(255, 68, 68, 0.5);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.dropdown-option {
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-option:last-child {
    border-bottom: none;
}

/* При наведении (если не выбран) */
.dropdown-option:hover {
    background-color: rgba(255, 68, 68, 0.2) !important;
    color: #ffffff !important;
    padding-left: 25px;
}

/* Выбранный сервер */
.dropdown-option.selected {
    background-color: #c12929 !important;
    color: #ffffff !important;
    font-weight: bold;
}

/* Отключаем hover эффект для выбранного */
.dropdown-option.selected:hover {
    background-color: #c12929 !important;
    color: #ffffff !important;
    padding-left: 25px;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.input-group input {
    padding: 14px 18px;
    background: rgba(20, 20, 35, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

.input-group input:focus {
    outline: none;
    border-color: #ff4444;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.quick-amounts {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.quick-amount {
    padding: 8px 16px;
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 5px;
    color: #ff8888;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-amount:hover,
.quick-amount.active {
    background: rgba(255, 68, 68, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 30px 0 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 68, 68, 0.1);
}

.agreement-checkbox input {
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #ff4444;
}

.agreement-checkbox label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
    flex: 1;
}

.shop-button {
    display: inline-block;
    background: rgba(255, 68, 68, 0.2);
    color: #ff8888;
    font-size: 15px;
    font-weight: bold;
    padding: 14px 25px;
    border-radius: 6px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.shop-button:hover {
    background: rgba(255, 68, 68, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ===== БОЛЬШИЕ МОНИТОРЫ ===== */
@media (min-width: 1921px) {
    .shop-block::before {
        width: 550px;  
        height: 650px;
    }
    
    .shop-container {
        max-width: 500px;  
        margin: 3% auto 0;
        padding: 35px;
    }
}

/* ===== МОБИЛКА (БЕЗ ИЗМЕНЕНИЙ) ===== */
@media (max-width: 1280px) {
    .shop-block::before,
    .shop-block::after {
        display: none;
    }

    .shop-container {
        padding: 10px 22px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        background: rgba(15, 15, 25, 0.6) !important;
    }

    .shop-h1 {
        margin-top: 15px !important; 
        margin-bottom: 15px;
    }

    .shop-step {
        margin-bottom: 25px;
    }

    .shop-step h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .input-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .input-group input {
        padding: 14px 15px;
        font-size: 15px;
    }

    .quick-amounts {
        gap: 8px;
        margin-top: 12px;
    }

    .quick-amount {
        padding: 8px 12px;
        font-size: 13px;
        flex: 1;
        text-align: center;
    }

    .agreement-checkbox {
        gap: 12px;
        margin: 25px 0;
        padding: 15px;
    }

    .agreement-checkbox input {
        width: 20px;
        height: 20px;
        transform: scale(1.1);
    }

    .agreement-checkbox label {
        font-size: 14px;
    }

    .shop-button {
        margin-bottom: 10px;
        font-size: 16px;
        padding: 14px 30px;
    }

    .social-tiktok:hover {
        background: rgb(157, 157, 162);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent !important;
}
}

/* ===== АДАПТИВНЫЕ СЕРВЕРА ===== */
.servers-section {
    background: transparent;
    margin-top: 1px;
    border-radius: 0;
    padding: 40px 0;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 
        0 -1px 0 rgba(255, 68, 68, 0.1),
        0 1px 0 rgba(255, 68, 68, 0.1);
}

@media (max-width: 1280px) {
    .servers-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1921px) {
    .servers-section {
        padding: 50px;
        margin-bottom: 60px;
    }
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 1280px) {
    .servers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (min-width: 1921px) {
    .servers-grid {
        gap: 40px;
    }
}

.server-card {
    background: rgba(20, 20, 35, 0.9);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 220px;
}

@media (max-width: 1280px) {
    .server-card {
        padding: 20px;
        min-height: auto;
    }
}

@media (min-width: 1921px) {
    .server-card {
        padding: 30px;
        min-height: 250px;
    }
}

.server-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 15px;
    flex-wrap: wrap;
}

.server-name {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex: 1;
    line-height: 1.3;
}

@media (max-width: 1280px) {
    .server-name {
        font-size: 18px;
    }
}

@media (min-width: 1921px) {
    .server-name {
        font-size: 22px;
    }
}

.server-online {
    font-size: 18px;
    font-weight: bold;
    color: rgba(225, 225, 225, 0.9);
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px 4px 8px;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.server-online.offline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.5);
}

.server-online::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    animation: pulse-green 1.5s ease-in-out infinite;
}

.server-online.offline::before {
    background-color: #ff4444;
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-green {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.85);
        box-shadow: 0 0 12px rgba(76, 175, 80, 0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    }
}

@keyframes pulse-red {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.85);
        box-shadow: 0 0 12px rgba(255, 68, 68, 0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
    }
}

@media (max-width: 1280px) {
    .server-online {
        font-size: 16px;
        padding: 3px 10px 3px 6px;
        gap: 6px;
    }
    
    .server-online::before {
        width: 8px;
        height: 8px;
    }
}

.server-ip {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    word-break: break-all;
    font-family: monospace;
    line-height: 1.4;
}

@media (max-width: 1280px) {
    .server-ip {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.server-ip::before {
    content: "IP: ";
    color: rgba(255, 255, 255, 0.4);
    font-family: Arial, sans-serif;
}

.server-progress {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0 20px 0;
}

@media (max-width: 1280px) {
    .server-progress {
        height: 12px;
        margin: 8px 0 18px 0;
    }
}

.server-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
    border-radius: 10px;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.server-connect {
    display: inline-block;
    background: rgba(255, 68, 68, 0.2);
    color: #ff8888;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 68, 68, 0.3);
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

@media (max-width: 1280px) {
    .server-connect {
        display: none;
    }
}

@media (min-width: 1921px) {
    .server-connect {
        font-size: 15px;
        padding: 14px 30px;
    }
}

.server-connect:hover {
    background: rgba(255, 68, 68, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ===== АДАПТИВНЫЙ БЛОК БОНУСОВ ===== */
.bonus-section {
    background: transparent;
    border-radius: 0;
    padding: 40px 60px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 
        0 -1px 0 rgba(255, 68, 68, 0.1),
        0 1px 0 rgba(255, 68, 68, 0.1);
}

@media (max-width: 1280px) {
    .bonus-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1921px) {
    .bonus-section {
        padding: 50px;
        margin-bottom: 60px;
    }
}

.bonus-title {
    font-size: 32px;
    color: #ff4444;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 1280px) {
    .bonus-title {
        font-size: 24px;
        margin-bottom: 25px;
        gap: 8px;
    }
}

@media (min-width: 1921px) {
    .bonus-title {
        font-size: 40px;
        margin-bottom: 50px;
        gap: 15px;
    }
}

.bonus-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1280px) {
    .bonus-cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (min-width: 1921px) {
    .bonus-cards-container {
        gap: 40px;
    }
}

.bonus-card {
    background: rgba(20, 20, 35, 0.9);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1280px) {
    .bonus-card {
        padding: 20px;
    }
}

@media (min-width: 1921px) {
    .bonus-card {
        padding: 30px;
    }
}

.bonus-card::before,
.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #ff4444, #ff6b6b, #ff4444);
    transition: height 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

.bonus-card::before {
    left: 0;
}

.bonus-card::after {
    right: 0;
}

.bonus-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 68, 68, 0.5);
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.25);
    background: rgba(25, 25, 40, 0.95);
}

.bonus-card:hover::before,
.bonus-card:hover::after {
    height: 100%;
}

.bonus-card:not(:hover)::before,
.bonus-card:not(:hover)::after {
    height: 0;
}

@media (max-width: 1280px) {
    .bonus-card:hover {
        transform: none;
    }
    
    .bonus-card:active {
        transform: scale(0.98);
    }
}

@media (min-width: 1921px) {
    .bonus-card:hover {
        transform: scale(1.03);
    }
}

.bonus-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

.bonus-code {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
    line-height: 1;
}

@media (max-width: 1280px) {
    .bonus-code {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1921px) {
    .bonus-code {
        font-size: 36px;
    }
}

.bonus-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 68, 68, 0.3);
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

@media (max-width: 1280px) {
    .bonus-timer {
        font-size: 12px;
        padding: 5px 10px;
    }
}

.bonus-timer i {
    color: #ff4444;
    font-size: 12px;
}

.bonus-timer.timer-warning {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.6);
    color: #ff8888;
}

.bonus-timer.timer-warning i {
    color: #ff8888;
}

.bonus-timer.timer-critical {
    background: rgba(255, 68, 68, 0.25);
    border-color: #ff4444;
    color: #ff4444;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.bonus-timer.timer-critical i {
    color: #ff4444;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(255, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

.bonus-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
    margin-bottom: 20px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

@media (max-width: 1280px) {
    .bonus-divider {
        margin-bottom: 15px;
    }
}

.bonus-rewards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-reward {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    padding-left: 5px;
}

@media (max-width: 1280px) {
    .bonus-reward {
        font-size: 14px;
        padding-left: 0;
    }
}

@media (min-width: 1921px) {
    .bonus-reward {
        font-size: 18px;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 20, 0.95);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background:  #ff4444;
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5555;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}


* {
    scrollbar-width: thin;
    scrollbar-color: #ff4444 rgba(10, 10, 20, 0.95);
}

body {
    position: relative;
    width: 100%;
}

.header-container,
.main-content,
.footer-container,
.servers-section,
.news-section,
.bonus-section,
.content-block {
    max-width: 1200px;
    overflow-x: hidden;
}

.banner-container {
    max-width: 100%;
    overflow-x: hidden;
}

/* ===== ДЕСКТОП ===== */
@media (min-width: 1281px) {
    .burger-menu {
        display: none !important;
    }
    
    .footer-social-mobile {
        display: none !important;
    }
    
    .header-social {
        display: flex !important;
    }
}

/* ===== МОБИЛКА ===== */
@media (max-width: 1280px) {

    html {
        background: #11111B; 
        min-height: 100vh;
    }

    body {
        background: linear-gradient(135deg, rgba(30, 30, 40, 0.1) 0%, rgba(65, 65, 85, 0.5) 100%);
    }

    .main-content {
        margin-top: 30px 0; 
        padding: 5px 8px !important;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .header::before {
        background: #0f0f19 !important;
        opacity: 1 !important;
        height: 1px;
    }

    .header-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 15px;
        gap: 10px;
    }

    .logo {
        display: flex;
        align-items: center; 
        height: 30px;
        margin-right: 0;
        flex-shrink: 0;
    }

    .logo img {
        height: 30px;
        width: auto;
        display: block;
    }

    .burger-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: center; 
        align-items: center;
        width: 30px;
        height: 50px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin: 0;
        margin-left: auto;
        position: relative;
        top: 0;
        transform: none;
        flex-shrink: 0;
    }

    .burger-menu span {
        width: 100%;
        height: 2.5px;
        background: linear-gradient(90deg, #ff4444, #ff6b6b);
        border-radius: 3px;
        transition: all 0.3s ease;
        margin: 2px 0;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 25, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0;
        transition: all 0.3s ease;
        z-index: 999;
        display: none;
        border-top: 1px solid rgba(255, 68, 68, 0.3);
        border-bottom: 1px solid rgba(255, 68, 68, 0.3);
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-menu.active {
        display: flex;
        max-height: 500px;
        padding: 20px 0;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-social {
        display: none !important;
    }
    
    .footer-social-mobile {
        display: flex;
        justify-content: center;
        font-size: 20px;
        gap: 15px;
        margin: 0 0 0;
        width: 100%;
        order: -1;
    }
    
    .footer-social-mobile a {
        color: rgba(255, 255, 255, 0.8) !important;
        transition: none !important;
    }
    .footer-social-mobile i {
        color: rgba(255, 255, 255, 0.8) !important;
        transition: none !important;
    }
    
    .footer-social-mobile a:hover {
        color: rgba(255, 255, 255, 0.8) !important;
        transition: none !important;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 10px 10px;
    }

    .footer::before {
        background: rgba(15, 15, 25, 0.95) !important; 
        opacity: 1 !important;
        height: 1px;
    }
    
    .footer-text {
        width: 100%;
        font-size: 10px;
        text-align: center;
        align-items: center;
        margin-bottom: 0;
        order: 1;
    }

    .footer-text p {
        margin: 2px 0;
        line-height: 1.3;
    }
    
    .footer-right {
        width: 100%;
        align-items: center;
        order: 2;
    }
    
    .footer-payments {
        justify-content: center;
        margin: 5px 0;
        order: 3;
    }
    
    .footer-links {
        align-items: center;
        text-align: center; 
        order: 4;
        width: 100%;
        margin-top: 0;
    }
    
    .footer-links p {
        margin: 0 0;
        font-size: 10px;
    }
    
    .footer-links a {
        display: inline-block;
        margin: 0 0;
    }
    
    .payment-logo {
        height: 18px;
        opacity: 0.8;
    }  
}

.main-content > *:not(.banner-container) {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
}

@supports (-webkit-touch-callout: none) {
    html {
        height: -webkit-fill-available;
    }
    
    body {
        min-height: -webkit-fill-available;
    }
}