html, body {
  max-width: 100%; /* Предотвращает выход за границы */
  overflow-x: hidden; /* Скрывает горизонтальный скролл */
  margin: 0 !important; /* Убирает стандартные отступы */
  padding: 0 !important;
}

body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.background-container {
    background-color: #000;
}

.content-background {
    background: linear-gradient(to right, #0d0e3f, #1a1b6d); /* Градиент от темного синего (#0d0e3f) к текущему цвету (#1a1b6d) */
    width: 100vw;
    position: relative;
    color: white;
}


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

/* Стили для header */
.header {
    background-color: #000;
    width: 100vw;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.logo a {
    text-decoration: none; /* Убираем подчеркивание */
    color: white; /* Цвет текста */
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif; /* Попробуйте также 'Poppins' */
    font-size: 24px; /* Регулируем размер шрифта */
    font-weight: 700; /* Толщина шрифта */
}

.logo a:hover {
    text-decoration: none; /* Убираем подчеркивание при наведении */
}

.logo img {
    margin-right: 10px;
}


/* Стили для навигации */
.nav {
    display: flex;
    gap: 30px;
    position: relative;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 5px;
    font-family: 'Rubik', sans-serif;
}

.nav a:hover {
    text-decoration: underline;
}

/* Стили для dropdown */
.nav .dropdown {
    position: relative;
    display: inline-block;
}

.nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    top: 100%;
    left: 0;
    transform: translateY(5px);
}

.nav .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

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

.nav .dropdown-content a:hover {
    background-color: #ddd;
}



.burger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px;
}

.mobile-nav a {
    padding: 10px 0;
    text-align: center;
    color: white;
    border-bottom: 1px solid #ccc;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #0d0e3f, #1a1b6d);
    padding: 60px 0; /* Фиксированная высота секции */
    color: white;
    position: relative;
    text-align: center;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Выровнять по центру вертикально */
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Выровнять элементы по вертикали */
    gap: 30px; /* Отступ между колонками */
    width: 100%; /* Колонки растягиваются по ширине */
}



.text-content {
    max-width: 600px;
    text-align: left; /* Текст выровнен по левому краю */
}

.text-content h1 {
    font-size: 48px;
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.buttons {
    display: flex;
    gap: 20px;
}

.buttons .btn-primary {
    background-color: #ff4c4c;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.buttons .btn-primary:hover {
    background-color: #e43d3d;
}

.buttons .btn-secondary {
    background-color: white;
    color: #ff4c4c;
    border: 2px solid #ff4c4c;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 0 0 rgba(255, 76, 76, 0); /* по умолчанию нет тени */
}

.buttons .btn-secondary:hover {
    background-color: #ff4c4c;
    color: white;
    transform: scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 76, 76, 0.7),
        0 0 30px rgba(255, 76, 76, 0.4);
}


.bonus-box {
    position: relative;
    background-color: white;
    padding: 40px;
    border: 2px solid #ff4c4c;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    align-self: center; /* Выровнять бонус-блок по центру по вертикали */
}

@keyframes trophy-bounce {
  0%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  85% {
    transform: translateX(-50%) translateY(-8px);
  }
  90% {
    transform: translateX(-50%) translateY(4px);
  }
  95% {
    transform: translateX(-50%) translateY(-4px);
  }
}




.bonus-box img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 2px solid #ff4c4c;
    border-radius: 50%;
    padding: 10px;
    animation: trophy-bounce 3s ease-in-out infinite;
}




.bonus-box h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
}

.bonus-box button {
    background-color: #ff4c4c;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

@keyframes shake-rotate {
  0%, 74% {
    transform: none;
    box-shadow: none;
  }
  75% {
    transform: rotate(-4deg);
    box-shadow: 0 0 10px rgba(255, 76, 76, 0.6);
  }
  80% {
    transform: rotate(4deg);
    box-shadow: 0 0 15px rgba(255, 76, 76, 0.7);
  }
  85% {
    transform: rotate(-3deg);
    box-shadow: 0 0 20px rgba(255, 76, 76, 0.6);
  }
  90% {
    transform: rotate(3deg);
    box-shadow: 0 0 15px rgba(255, 76, 76, 0.5);
  }
  95% {
    transform: rotate(-2deg);
    box-shadow: 0 0 10px rgba(255, 76, 76, 0.3);
  }
  100% {
    transform: none;
    box-shadow: none;
  }
}


.bonus-box .bonus-button {
    display: inline-block;
    background-color: #ff4c4c;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(255, 76, 76, 0);

    animation: shake-rotate 5s infinite;
}


.bonus-box .bonus-button:hover {
    background-color: #e03b3b;
    transform: scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 76, 76, 0.7),
        0 0 30px rgba(255, 76, 76, 0.4);
}


.bonus-box button:hover {
    background-color: #e43d3d;
}


/* Первичная кнопка в контенте */
.buttons .btn-primary-content {
    background-color: #ff4c4c;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0 auto;
	animation: pulse 1.5s infinite;
}

/* Hover с glow + scale */
.buttons .btn-primary-content:hover {
    background-color: #e43d3d;
    transform: scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 76, 76, 0.7),
        0 0 30px rgba(255, 76, 76, 0.4);
}

/* Вторичная кнопка в контенте */
.buttons .btn-secondary-content {
    background-color: white;
    color: #ff4c4c;
    border: 2px solid #ff4c4c;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0 auto;
	animation: shake-rotate 3s infinite;
}

/* Hover с glow + scale */
.buttons .btn-secondary-content:hover {
    background-color: #ff4c4c;
    color: white;
    transform: scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 76, 76, 0.7),
        0 0 30px rgba(255, 76, 76, 0.4);
}



/* Основной раздел под Hero */
.main-section {
    background-color: #f4f4f4;
    padding: 60px 0;
    color: #333;
}

.main-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.main-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-section p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 20px auto;
    color: #555;
}





.listing-head {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 20px; /* Отступ сверху */
  margin-bottom: 30px;
}

.listing-item {
  flex: 1;
  text-align: center;
  font-weight: bold;
}

.listing-item span {
  font-size: 16px; /* Регулируйте размер шрифта здесь */
}



.listing-body {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Плавный переход */
}

.listing-body:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Более выраженная тень при наведении */
  transform: scale(1.01); /* Небольшое увеличение элемента */
}

.listing-row {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Выровнять элементы по центру вертикально */
}

.listing-bonus {
  flex: 1; /* Уменьшите значение flex, чтобы блок с бонусом был меньше */
  max-width: 250px; /* Уменьшите ширину */
  word-wrap: break-word;
  text-align: left;
  margin-left: 20px;
  font-size: 16px !important;
}

.listing-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%; /* Устанавливаем высоту контейнера */
}

.license-info {
  font-size: 12px;
  color: gray;
  text-align: left;
  margin-top: 10px; /* Отступ сверху для отделения от основного контента */
}



.brand-heading {
  font-size: 16px;
  margin: 0;
}

.brand-stars {
  color: gold;
  font-size: 14px;
  margin-top: -10px;
}

.listing-features {
  flex: 2;
  max-width: 250px; /* Установите максимальную ширину для блока */
  word-wrap: break-word; /* Перенос слов при необходимости */
  text-align: left;
  margin-left: 20px; /* Отступ слева */
}

.listing-features ul {
  list-style: none; /* Убираем маркеры списка */
  padding: 0;
  margin: 0;
}

.listing-features li {
  font-size: 14px !important;
  color: #333333;
  margin-bottom: 5px;
  word-wrap: break-word; /* Перенос слов при необходимости */
}




.listing-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  margin-right: 20px; /* Отступ справа от края блока */
}

.go-button, .review-button {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer; /* Показывает указатель при наведении */
}

.go-button:hover {
  color: #ffcccb; /* Измените цвет текста на светло-красный при наведении */
}

.review-button:hover {
  color: #adb5bd; /* Измените цвет текста на светло-серый при наведении */
}

.go-button i, .review-button i {
  margin-right: 8px; /* Отступ между иконкой и текстом */
}

.go-button {
  background-color: #ff4c4c;
  color: white;
  border: none;
}

.review-button {
  background-color: #6c757d;
  color: white;
  border: none;
}

.listing-actions a {
  text-decoration: none; /* Убираем подчеркивание у ссылок */
  display: inline-block; /* Делаем ссылку блочным элементом */
}

.toc-section {
    padding: 60px 0;
    background-color: #fff;
}

.toc-heading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}


.toc-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Выровнять элементы по верхнему краю */
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.toc-content {
    flex: 1;
    max-width: 500px;
    text-align: left; /* Выравнивание по левому краю */
}

.toc-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    color: #333;
    text-align: left; /* Заголовок также выравнивается влево */
}

.toc-content ol {
    padding: 0;
    margin: 0;
}

.toc-content li {
    text-align: left; /* Список выравнивается по левому краю */
}

.toc-content a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.toc-content a:hover {
    color: #000000;
    text-decoration: underline;
}

.toc-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.toc-image img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toc-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.image-container {
    margin: 20px 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Размещение изображения */
.image-container.left img {
    float: left;
    margin: 0 20px 20px 0;
}

.image-container.right img {
    float: right;
    margin: 0 0 20px 20px;
}

.image-container.center img {
    display: block;
    margin: 0 auto 20px auto;
}

/* Очищаем обтекание для абзацев */
.container::after {
    content: "";
    display: block;
    clear: both;
}

/* Стили для таблиц */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: 'Rubik', sans-serif;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

table th, table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #ddd;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* Альтернативно можно добавить заголовки (если будут) */
table th {
    background-color: #ff4c4c;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

ul { margin-left: 0px; margin-bottom: 20px; }
ul li { position: relative; font-size: 18px; color: #555; line-height: 1.6; }

ol { margin-left: 0px; margin-bottom: 20px; }
ol li { position: relative; margin-left: 20px; padding-left: 10px; font-size: 18px; color: #555; line-height: 1.6; }

/* Медиазапросы для мобильных устройств */
@media screen and (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .text-content h1 {
        font-size: 32px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .buttons a {
        max-width: 300px;
        margin-bottom: 10px;
    }

    .bonus-box {
        width: 80%;
    }

    .nav {
        display: none;
    }

    .burger-menu {
        display: block;
    }
}

@media (max-width: 768px) {
  .listing-body {
    max-width: 90%; /* Установите ширину блока, чтобы были отступы */
    margin: 20px auto; /* Центрируем блок с отступами по бокам */
	 background-color: white;
  border-radius: 8px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
  }

  .listing-row {
    flex-direction: column; /* Размещаем элементы по вертикали */
    align-items: center; /* Центрируем элементы */
  }

  .listing-rating,
  .listing-name,
  .listing-bonus,
  .listing-features,
  .listing-actions {
    text-align: center; /* Центрируем текст внутри каждого блока */
    margin: 10px 0; /* Отступы между блоками */
  }

  .listing-actions {
    flex-direction: row; /* Кнопки рядом друг с другом */
    justify-content: space-between;
    width: 100%;
  }

  .go-button, .review-button {
    width: 100%; /* Ширина кнопок, чтобы они не растягивались */
	padding: 15px 30px 15px 15px;
  }
}

@media (max-width: 768px) {
  .listing-head {
    display: none; /* Скрываем блок на устройствах с шириной экрана 768px и меньше */
  }
}

@media (max-width: 768px) {
    .toc-section .container {
        flex-direction: column; /* Размещаем элементы вертикально */
        align-items: center; /* Центрируем содержимое */
        gap: 20px; /* Отступ между элементами */
    }

    .toc-content {
        width: 100%; /* Занимает всю ширину */
        text-align: center; /* Центрируем текст */
    }

    .toc-content h3 {
        font-size: 24px; /* Уменьшаем заголовок */
    }
	
	.toc-heading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}


    .toc-content ul {
        padding: 0;
        margin: 10px auto; /* Отступы сверху и снизу */
    }

    .toc-content li {
        margin-bottom: 10px;
    }

    .toc-content a {
        font-size: 18px; /* Увеличиваем текст для удобства чтения */
    }

    .toc-image {
        width: 100%; /* Изображение занимает всю ширину */
    }

    .toc-image img {
        max-width: 100%; /* Уменьшаем изображение по ширине */
        height: auto; /* Автоматически сохраняем пропорции */
        border-radius: 10px; /* Сохраняем скругленные углы */
    }
}



.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 0px;
    z-index: 1000; /* Добавьте это чтобы меню было поверх других элементов */
}

.mobile-nav a {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #333;
    font-size: 18px;
}

.mobile-dropdown a {
    font-size: 14px;
    background-color: #202020;
    padding: 10px 0;
}

.burger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    z-index: 1001; /* Чтобы бургер был поверх меню */
}

@media screen and (max-width: 768px) {
    .burger-menu {
        display: block;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: flex;
    }
}

.floating-panel { position: fixed; bottom: -120px; left: 10px; right: 10px; height: 80px; background: linear-gradient(135deg, #2c3e50, #4a6491); border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); display: flex; align-items: center; justify-content: space-between; padding: 0 16px; transition: bottom 0.3s ease-out; z-index: 1000; }
.floating-panel.visible { bottom: 10px; }
.panel-logo { display: flex; align-items: center; }
.panel-logo img { width: 64px; height: auto; margin-right: 12px; }
.panel-logo-text { color: white; font-family: 'Rubik', sans-serif; font-size: 16px; font-weight: 700; }
.panel-button { background: #ff6b6b; color: white; border: none; padding: 10px 24px; border-radius: 40px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 3px 12px rgba(255, 107, 107, 0.4); font-family: 'Poppins', sans-serif; }
.panel-button:hover { background: #ff5252; transform: translateY(-2px); box-shadow: 0 5px 16px rgba(255, 107, 107, 0.6); }
.panel-button:active { transform: translateY(1px); }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.04); } 100% { transform: scale(1); } }
.panel-button.pulse { animation: pulse 1.5s infinite; }
@media (max-width: 768px) {
  .floating-panel { height: 64px; padding: 0 12px; border-radius: 10px; }
  .panel-logo img { width: 0; margin-right: 0; }
  .panel-logo-text { font-size: 14px; }
  .panel-button { padding: 8px 16px; font-size: 14px; border-radius: 32px; }
}

.footer-dark { background: #000; padding: 40px 0; }
.footer-light { background: #fff; padding: 30px 0; border-top: 1px solid #eee; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.brands-grid span { display: inline-block; margin-right: 40px; margin-bottom: 20px; }
.brand-item { display: flex; justify-content: center; align-items: center; }
.footer-menu { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.footer-menu a { color: #333; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-menu a:hover { color: #000; text-decoration: underline; }
.footer-copyright { text-align: center; color: #666; font-size: 13px; margin-top: 15px; }
.footer-bottom-space { height: 100px; background: #fff; position: relative; z-index: 1; }
.floating-panel { 
  position: fixed; bottom: -120px; left: 10px; right: 10px; height: 80px; 
  background: linear-gradient(135deg, #2c3e50, #4a6491); border-radius: 12px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); display: flex; align-items: center; 
  justify-content: space-between; padding: 0 16px; transition: bottom 0.3s ease-out; 
  z-index: 1000; max-width: calc(100% - 20px); margin: 0 auto; 
}
.floating-panel.visible { bottom: 10px; }
@media (max-width: 768px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-menu { gap: 15px; }
  .footer-bottom-space { height: 100px; }
}

.floating-panel { position: fixed; bottom: -150px; left: 10px; right: 10px; height: 80px; background: linear-gradient(135deg, #2c3e50, #4a6491); border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); display: flex; align-items: center; justify-content: space-between; padding: 0 16px; transition: bottom 0.3s ease-out; z-index: 1000; max-width: calc(100% - 20px); margin: 0 auto; }
.floating-panel.visible { bottom: 10px; }
.panel-logo { display: flex; align-items: center; }
.panel-logo img { width: 124px; height: auto; margin-right: 12px; }
.panel-logo-text { color: white; font-family: 'Rubik', sans-serif; font-size: 16px; font-weight: 700; }
.panel-button { background: #ff6b6b; color: white; border: none; padding: 10px 24px; border-radius: 40px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 3px 12px rgba(255, 107, 107, 0.4); font-family: 'Poppins', sans-serif; }
.panel-button:hover { background: #ff5252; transform: translateY(-2px); box-shadow: 0 5px 16px rgba(255, 107, 107, 0.6); }
.panel-button:active { transform: translateY(1px); }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.panel-button.pulse { animation: pulse 1.5s infinite; }
@media (max-width: 768px) {
  .floating-panel { height: 64px; padding: 0 12px; }
  .panel-logo img { display: none; }
  .panel-logo-text { font-size: 14px; }
  .panel-button { padding: 8px 16px; font-size: 14px; }
}



/* Header Base */
.header { background-color: #000; width: 100%; position: relative; z-index: 1000; }
.header .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 15px 20px; }
.logo { order: 1; }
.logo a { display: flex; align-items: center; text-decoration: none; color: white; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; }
.logo img { margin-right: 10px; height: 30px; }
.nav { display: none; }
.header-right { order: 3; width: 100%; display: flex; justify-content: center; margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); }
.language-switcher { display: flex; gap: 15px; }
.language-switcher a { color: #fff; text-decoration: none; font-size: 14px; }
.burger-menu { order: 2; display: block; font-size: 28px; cursor: pointer; color: #fff; background: none; border: none; padding: 0; margin-left: auto; }

/* Desktop Version */
@media screen and (min-width: 769px) {
  .header .container { flex-wrap: nowrap; padding: 15px 20px; }
  .logo { order: 1; margin-right: 30px; }
  .nav { order: 2; display: flex; flex-grow: 1; justify-content: flex-end; gap: 20px; margin-right: 20px; }
  .header-right { order: 3; width: auto; margin-top: 0; padding-top: 0; border-top: none; display: flex; align-items: center; gap: 20px; }
  .burger-menu { display: none; }
  .language-switcher { gap: 10px; }
}



.main-section img { max-width: 100%; margin-top: 20px; margin-bottom: 20px; }
.main-section table { margin-top: 30px; margin-bottom: 30px; }

.table-wrapper { margin: 20px 0; }
.table-wrapper > table { width: 100%; border-collapse: collapse; }
.table-wrapper td, .table-wrapper th { padding: 12px 15px; text-align: left; border: 1px solid #ddd; }

@media (max-width: 768px) {
  .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; display: block; }
  .table-wrapper > table { min-width: max-content; width: 100%; display: table; white-space: nowrap; }
}
