/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовки */
h1 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border-bottom: 3px solid #ffd700;
    padding-bottom: 15px;
}

h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    margin-top: 30px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

/* Хедер */
.header {
    background: linear-gradient(90deg, #000000 0%, #333333 50%, #000000 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    border-bottom: 3px solid #ffd700;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
    animation: imageLoad 0.8s ease-out;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
}

.logo-text {
    text-align: center;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

/* Навигация */
.navigation {
    background: linear-gradient(90deg, #1a1a1a 0%, #000000 100%);
    padding: 15px 0;
    border-bottom: 2px solid #333333;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navigation .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Кнопка мобильного меню */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    width: 40px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 102;
    padding: 3px;
    border-radius: 6px;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.nav-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #fff700;
}

.nav-toggle:focus {
    outline: none;
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffd700;
    margin: 1px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
    display: block;
}

/* Анимация кнопки гамбургер */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Меню навигации */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

/* Адаптивность навигации */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8), inset 0 0 0 2px #ffd700;
        border-left: 3px solid #ffd700;
        z-index: 101;
        gap: 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 15px 20px;
        display: block;
        font-size: 0.95rem;
        border-radius: 8px;
        border: 1px solid transparent;
    }
    
    .nav-menu a::before {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 215, 0, 0.2);
        border-color: #ffd700;
        transform: translateX(5px);
    }
    
    /* Затемнение фона при открытом меню */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 250px;
        padding: 70px 20px 20px;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .nav-toggle {
        right: 15px;
        width: 35px;
        height: 28px;
    }
    
    .nav-toggle span {
        width: 18px;
        height: 2px;
    }
}

/* Основной баннер */
.hero-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 0;
    border-bottom: 2px solid #ffd700;
}

.hero-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.banner-welcome {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: #cccccc;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-image {
    position: relative;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
    animation: imageLoad 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.banner-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Кнопки */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ffed4e, #fff700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

/* Основной контент */
.content {
    padding: 60px 0;
}

.main-article {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

/* Параграфы */
.main-article p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Списки игровых категорий */
.game-categories {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.game-categories li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.game-categories li:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.game-categories li strong {
    color: #ffd700;
}

/* Списки мобильных функций и безопасности */
.mobile-features,
.security-features {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.mobile-features li,
.security-features li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-features li:hover,
.security-features li:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

/* Бонусный баннер */
.bonus-banner {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #ffd700);
    border-radius: 17px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.bonus-banner-content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.bonus-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bonus-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.bonus-banner-info {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 20px;
    text-align: center;
    width: calc(100% - 40px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.bonus-highlight {
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.bonus-amount {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bonus-text {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.bonus-promo {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid #ffd700;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.bonus-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.promo-label {
    display: block;
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.promo-code {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.btn-bonus {
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    color: #ffffff;
    border: 2px solid #ff4757;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-bonus:hover::before {
    left: 100%;
}

.btn-bonus:hover {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.4);
}

/* Футер */
.footer {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #ffd700;
    margin-top: 60px;
}

.footer p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Ссылки */
a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

.banner-buttons a {
    display: inline-block;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-banner .container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        position: relative;
    }
    
    .banner-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: clamp(85%, 90vw, 95%);
        padding: clamp(10px, 3vw, 20px);
        max-height: 90%;
        overflow: visible;
    }
    
    .banner-image {
        position: relative;
    }
    
    .banner-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 15px;
        z-index: 5;
    }
    
    .banner-welcome {
        font-size: clamp(1.2rem, 5vw, 2rem);
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        margin-bottom: clamp(10px, 2vw, 15px);
        background: linear-gradient(45deg, #ffd700, #ffed4e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .banner-subtitle {
        color: #ffffff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        margin-bottom: clamp(15px, 4vw, 25px);
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: clamp(10px, 2vw, 15px);
    }
    
    .banner-buttons a {
        width: 100%;
        max-width: clamp(160px, 50vw, 200px);
    }
    
    .banner-buttons .btn {
        width: 100%;
        padding: clamp(8px, 1.8vw, 12px) clamp(12px, 3vw, 16px);
        font-size: clamp(0.7rem, 1.5vw, 0.9rem);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        min-height: clamp(38px, 6vw, 48px);
    }
    
    .btn {
        padding: clamp(8px, 1.5vw, 10px) clamp(15px, 3vw, 20px);
        font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    }
    
    .main-article {
        padding: 25px;
    }
    
    .game-categories li {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .mobile-features li,
    .security-features li {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    h1 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        text-align: left;
        padding-bottom: 10px;
    }
    
    h2 {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        margin-top: 25px;
    }
    
    .logo {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .logo-img {
        height: clamp(35px, 6vw, 45px);
        order: 1;
    }
    
    .logo-text {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        order: 2;
    }
    
    /* Адаптивная таблица - переход на карточки */
    .characteristics-table table,
    .bonus-table table {
        display: none;
    }
    
    .characteristics-table .table-cards,
    .bonus-table .table-cards {
        display: block;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .contact-form-container h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .contact-form-container p {
        font-size: 1rem;
    }
    
    .btn-form {
        width: 100%;
        min-width: auto;
    }
    
    /* Адаптивность бонусного баннера */
    .bonus-banner-content {
        min-height: 250px;
        flex-direction: column;
        justify-content: center;
    }
    
    .bonus-banner-info {
        padding: 25px 20px;
        margin: 15px;
        width: calc(100% - 30px);
    }
    
    .bonus-amount {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .bonus-text {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
    
    .promo-code {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
    }
    
    .btn-bonus {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 clamp(10px, 3vw, 15px);
    }
    
    .banner-image img {
        min-height: clamp(280px, 70vw, 350px);
    }
    
    .banner-content {
        width: clamp(90%, 95vw, 98%);
        padding: clamp(8px, 2vw, 15px);
    }
    
    .banner-welcome {
        font-size: clamp(1rem, 6vw, 1.8rem);
        margin-bottom: clamp(8px, 1.5vw, 10px);
    }
    
    .banner-subtitle {
        font-size: clamp(0.7rem, 3vw, 1rem);
        margin-bottom: clamp(12px, 3vw, 20px);
    }
    
    .banner-buttons {
        gap: clamp(8px, 1.5vw, 12px);
    }
    
    .banner-buttons a {
        max-width: clamp(140px, 60vw, 180px);
    }
    
    .banner-buttons .btn {
        padding: clamp(6px, 1.5vw, 10px) clamp(10px, 2.5vw, 12px);
        font-size: clamp(0.6rem, 1.8vw, 0.8rem);
        min-height: clamp(32px, 7vw, 42px);
    }
    
    .btn {
        padding: clamp(6px, 1.2vw, 8px) clamp(12px, 2.5vw, 16px);
        font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    }
    
    .main-article {
        padding: 20px;
    }
    
    .game-categories li {
        padding: 10px;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    .mobile-features li,
    .security-features li {
        padding: 10px;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    .hero-banner {
        padding: 40px 0;
    }
    
    .content {
        padding: 40px 0;
    }
    
    .logo {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
    }
    
    .logo-img {
        height: clamp(30px, 5vw, 35px);
        order: 1;
    }
    
    .logo-text {
        font-size: clamp(1rem, 3vw, 1.3rem);
        order: 2;
        text-align: left;
    }
    
    h1 {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
        text-align: left;
        padding-bottom: 8px;
        margin-bottom: 15px;
    }
    
    h2 {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        margin-top: 20px;
    }
    
    .table-card {
        padding: 15px;
    }
    
    .table-card-header {
        font-size: 1rem;
    }
    
    .table-card-value {
        font-size: 0.9rem;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .contact-form-container h2 {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }
    
    .contact-form-container p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-form {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Адаптивность бонусного баннера для мобильных */
    .bonus-banner {
        margin: 25px 0;
        border-radius: 10px;
    }
    
    .bonus-banner-content {
        min-height: 200px;
    }
    
    .bonus-banner-info {
        padding: 20px 15px;
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .bonus-highlight {
        margin-bottom: 20px;
    }
    
    .bonus-amount {
        font-size: clamp(1.5rem, 10vw, 2rem);
        margin-bottom: 8px;
    }
    
    .bonus-text {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    
    .bonus-promo {
        padding: 12px;
        margin-bottom: 25px;
    }
    
    .promo-label {
        font-size: 0.8rem;
    }
    
    .promo-code {
        font-size: clamp(1rem, 5vw, 1.3rem);
        letter-spacing: 1px;
    }
    
    .btn-bonus {
        padding: 10px 25px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
}

/* Таблица характеристик */
.characteristics-table {
    margin: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
    min-width: 500px;
}

thead {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    position: sticky;
    top: 0;
    z-index: 10;
}

thead th {
    color: #000000;
    padding: 15px 12px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    position: relative;
}

tbody tr {
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

tbody td {
    padding: 12px;
    text-align: left;
    color: #e0e0e0;
    white-space: nowrap;
}

tbody tr:nth-child(even) {
    background: rgba(255, 215, 0, 0.05);
}

tbody td:first-child {
    font-weight: bold;
    color: #ffd700;
    padding-left: 15px;
}

/* Мобильные карточки для таблицы */
.table-cards {
    display: none;
}

.table-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.table-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.table-card-header {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
    text-align: left;
}

.table-card-value {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.4;
}

/* Форма обратной связи */
.contact-form-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 0;
    border-top: 2px solid #ffd700;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #ffd700;
    font-size: 2rem;
}

.contact-form-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #cccccc;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.btn-form {
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    align-self: center;
    min-width: 200px;
} 