body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
}
header {
    background-color: #ffe4e1;
    text-align: center;
    padding: 20px;
}
nav {
    background-color: #de04a0;
    text-align: center;
    padding: 10px;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
section {
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
footer {
    background-color: #ff99cc;
    text-align: center;
    padding: 20px;
    color: white;
}

.casino-comparison {
    display: flex;
    justify-content: space-around;
    margin: 20px auto;
    flex-wrap: wrap; /* Добавлено для адаптивности */
}

.casino {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%; /* Изменится на меньших экранах */
    margin-bottom: 20px;
}

.casino img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .casino {
        width: 45%; /* Для экранов среднего размера */
    }
}

@media (max-width: 480px) {
    .casino {
        width: 100%; /* Для мобильных устройств */
    }
}

.casino h3 {
    color: #ff66b2;
}

.rating {
    font-size: 1.2em;
    margin: 10px 0;
}

.play-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.review-btn {
    background-color: #ddd;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.play-btn, .review-btn {
    text-decoration: none;
}

.play-btn:hover, .review-btn:hover {
    opacity: 0.9;
}



.faq {
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #ff66b2;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1em;
    color: #333;
}

.author-opinion {
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-opinion h3 {
    color: #ff66b2;
}

.author-opinion p {
    font-size: 1.1em;
    color: #333;
}


.symbol-list {
            list-style-type: none;
            padding: 0;
        }
        .symbol-list li {
            background-color: #ffe4e1;
            padding: 10px;
            margin: 5px 0;
            border-radius: 5px;
        }


               table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        th, td {
            padding: 10px;
            border: 1px solid #ccc;
            text-align: center;
        }
        th {
            background-color: #ffe4e1;
        }
        td {
            background-color: #f9f9f9;
        }
        .info {
            font-style: italic;
            margin-bottom: 20px;
        }

.bottom-image {
    text-align: center;
    margin-top: 20px; /* Отступ сверху */
}

.bottom-image img {
    width: 100%; /* Растянуть по ширине экрана */
    max-width: 1200px; /* Ограничить максимальный размер */
    height: auto;
    border-radius: 10px; /* Закруглить углы (по желанию) */
}


.game-section {
    padding: 20px;
}

.game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.image, .game-info {
    margin: 10px;
}

.image img {
    max-width: 80%;
    height: auto;
}

.game-info h2 {
    margin-top: 0;
}

.game-info table {
    border-collapse: collapse;
    width: 100%;
}

.game-info table td {
    padding: 8px;
    border: 1px solid #ddd;
}



.bonus-section {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.bonus-container {
    display: inline-block;
    width: 90%; /* 70% ширины секции */
    padding: 20px;
    background-color: #b2f8fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bonus-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.bonus-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff4081;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.bonus-button:hover {
    background-color: #ff609b;
}

.image-section {
    text-align: center; /* Центрирование текста */
    padding: 20px; /* Отступы вокруг секции */
}

.image-container {
    max-width: 80%; /* Максимальная ширина контейнера */
    overflow: hidden; /* Скрытие переполнения */
}

.responsive-image {
    width: 90%; /* Ширина изображения 100% от контейнера */
    height: auto; /* Автоматическая высота для сохранения пропорций */
}

/* Responsive Navigation Menu - Sweet Pink */
.main-nav {
  background-color: #ff6b9d; /* Новый сладкий розовый */
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu li {
  margin: 0 10px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 15px 20px;
  display: block;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.nav-menu a:hover {
  background-color: rgba(255,255,255,0.25); /* Легче hover */
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 15px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ff6b9d;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hamburger span:nth-child(1).active {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger span:nth-child(2).active {
    opacity: 0;
  }
  
  .hamburger span:nth-child(3).active {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-menu a {
    padding: 20px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .main-nav {
    margin-bottom: 20px;
  }
}


.reviews-section-text {
  background: linear-gradient(135deg, #ffe4e1 0%, #ffcccb 100%);
  padding: 50px 20px;
  margin: 40px auto;
}

.reviews-section-text .container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-list {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.review-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left: 6px solid #ff6b9d;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.review-meta h4 {
  margin: 0;
  color: #333;
  font-size: 1.1em;
}

.review-rating {
  color: #ff6b9d;
  font-weight: bold;
  font-size: 1.1em;
}

.review-meta time {
  color: #666;
  font-size: 0.9em;
}

.review-item p {
  margin: 0 0 0 0;
  color: #444;
  font-size: 1em;
}

.reviews-summary {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reviews-summary h3 {
  color: #ff6b9d;
  margin-top: 0;
}

@media (max-width: 768px) {
  .review-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .review-item {
    padding: 20px;
  }
}

.casino-main { margin-top: 20px; }
.hero-casino { 
  background: linear-gradient(135deg, #ff6b9d 0%, #ffe4e1 100%);
  color: white; 
  text-align: center; 
  padding: 60px 20px; 
}
.hero-casino h1 { font-size: 2.5em; margin-bottom: 10px; }
.lead { font-size: 1.3em; }

.demo-hero {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffb3ba 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.demo-hero h1 { font-size: 2.8em; margin-bottom: 15px; }
.lead { font-size: 1.4em; opacity: 0.95; }

.demo-iframe-section {
  padding: 60px 20px;
  background: #f8f9fa;
}
.iframe-wrapper {
  max-width: 1400px;
  margin: 0 auto 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  background: white;
}
.iframe-wrapper iframe {
  display: block;
  border-radius: 20px;
  min-height: 650px;
}

.demo-instructions {
  max-width: 1000px;
  margin: 0 auto;
}
.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.instruction-step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.instruction-step h3 {
  color: #ff6b9d;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.real-money-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffe4e1 0%, #ffcccb 100%);
}
.real-money-cta h2 { color: #ff6b9d; font-size: 2.5em; margin-bottom: 20px; }
.casino-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn-large {
  background: #ff6b9d;
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(255,107,157,0.4);
  transition: all 0.3s ease;
}
.btn-large:hover { 
  background: #ff85b3;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,107,157,0.5);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@media (max-width: 768px) {
  .iframe-wrapper iframe { min-height: 500px; }
  .demo-hero h1 { font-size: 2em; }
  .casino-buttons { flex-direction: column; align-items: center; }
}

.faq-hero {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffb3ba 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.faq-hero h1 { font-size: 2.8em; margin-bottom: 15px; }
.faq-search {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
}
.faq-search input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
}
.faq-search button {
  padding: 15px 30px;
  background: white;
  color: #ff6b9d;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

.faq-accordion { padding: 80px 20px; }
.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item h3 {
  padding: 25px 30px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-size: 1.3em;
}
.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.2em;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 30px 30px; }

.faq-links {
  padding: 60px 20px;
  background: #f8f9fa;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.links-grid a {
  background: white;
  padding: 20px;
  text-decoration: none;
  color: #333;
  border-radius: 15px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.links-grid a:hover {
  background: #ff6b9d;
  color: white;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .faq-search { flex-direction: column; }
  .faq-item h3 { padding: 20px; font-size: 1.2em; }
}

.strategy-hero {
  background: linear-gradient(135deg, #ff6b9d 0%, #4ecdc4 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
}
.strategy-hero h1 { font-size: 3em; }

.strategy-main { padding: 20px 0; }
.strategy-section { padding: 80px 20px; }
.strategy-section:nth-child(even) { background: #f8f9fa; }
.strategy-section h2 { 
  color: #ff6b9d; 
  font-size: 2.5em; 
  text-align: center; 
  margin-bottom: 50px; 
}

.strategy-table, .casino-strategy {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.strategy-table th {
  background: #ff6b9d;
  color: white;
  padding: 20px;
}
.strategy-table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.low { background: #d4edda; }
.medium { background: #fff3cd; }
.high { background: #f8d7da; }

.bet-matrix, .session-plans, .calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.matrix-item, .session-plans > div, .calc-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
}
.conservative { border-top: 8px solid #28a745; }
.aggressive { border-top: 8px solid #ffc107; }
.whale { border-top: 8px solid #dc3545; }

@media (max-width: 768px) {
  .strategy-section h2 { font-size: 2em; }
  .bet-matrix, .session-plans, .calc-grid { grid-template-columns: 1fr; }
}

.symbols-section { padding: 60px 0; background: #f9f9f9; }
.theme-content { max-width: 900px; margin: 0 auto 60px; }
.audio-block, .symbols-block { 
  background: white; 
  padding: 30px; 
  margin: 30px 0; 
  border-radius: 15px; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
}
.symbols-block h3 { color: #ff6b9d; margin-top: 0; }
.paytable-wrapper h3 { 
  text-align: center; 
  color: #ff6b9d; 
  margin-bottom: 20px; 
}


