/* Сброс */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: radial-gradient(ellipse at bottom, #0b0f1a 0%, #000 100%);
  color: #e0e0ff; 
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Звёздные слои */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: contain;
  z-index: -1;
}

/* Маленькие звёзды — медленные */
.stars-small {
  background-image: url('../images/stars-small.png');
  opacity: 0.5;
  animation: moveStarsSmall 800s linear infinite;
}

/* Средние звёзды — чуть быстрее */
.stars-medium {
  background-image: url('../images/stars-medium.png');
  opacity: 0.7;
  animation: moveStarsMedium 1200s linear infinite;
}

/* Большие звёзды — медленные, но заметные */
.stars-big {
  background-image: url('../images/stars-big.png');
  opacity: 0.9;
  animation: moveStarsBig 1600s linear infinite;
}

/* Анимации для каждого слоя */
@keyframes moveStarsSmall {
  0% { background-position: 0 0; }
  100% { background-position: -5000px 2500px; }
}

@keyframes moveStarsMedium {
  0% { background-position: 0 0; }
  100% { background-position: -7000px 3500px; }
}

@keyframes moveStarsBig {
  0% { background-position: 0 0; }
  100% { background-position: -9000px 4500px; }
}
/* 18+ баннер */
.age-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff0044, #ff77aa);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 5px 0;
  z-index: 998;
  transition: transform 0.3s;
}
.age-banner.hide { transform: translateY(-100%); }

/* Хедер */
.site-header {
  background: rgba(10,10,30,0.85);
  padding: 15px 0;
  position: sticky;
  top: 25px;
  z-index: 999;
}
.site-header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo img { display: block; }

/* Навигация */
.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #a0c0ff;
  transition: color 0.3s;
}
.main-nav a:hover { color: #00ffff; }

/* Бургер меню */
.burger-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 1000;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #a0c0ff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.burger-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 9.5px);
}
.burger-btn.open span:nth-child(2) {
    opacity: 0;
}
.burger-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -9.5px);
}

/* Меню навигации */
@media (max-width: 900px) {
    .burger-btn { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        flex-direction: column;
        background: rgba(10,10,30,0.95);
        width: 220px;
        padding: 60px 15px 15px 15px;
        transform: translateX(100%);
        transition: none;
        z-index: 999;
    }

    .main-nav.show a {
        display: block; 
        margin: 15px 0;
    }

    .main-nav.show {
        transform: translateX(0);
    }
}


/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff, 0 0 30px #ff77ff;
}

#casinos{
    text-align: center;
}

/* Casino Grid */
.casino-grid {

    display: grid;
    grid-template-columns: 1fr; 
    justify-items: center;     
    gap: 30px;
    margin-top: 40px;
}

/* Карточка казино */
.casino-card {
    width: 60%; 
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2); 
    padding: 20px;
    margin: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    box-shadow: 0 0 15px #00ffff, 0 0 25px #ff77ff;
}
.casino-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 25px #00ffff, 0 0 50px #ff77ff, 0 0 75px #ff00ff;
}

/* Адаптивность для мобильных */
@media (max-width: 900px) {
    .casino-card {
        width: 90%; 
    }
}


/* Логотип казино */
.casino-logo {
    width: 250px;
    background-color: black;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Рейтинг */
.rating {
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0 0 8px #ffd700, 0 0 15px #ff77ff;
}

/* Бонус */
.bonus {
    color: #00ffff;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 0 0 8px #00ffff, 0 0 15px #ff77ff;
}

/* Заголовки и текст */
.casino-card h3 {
    color: #00ffff;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #ff77ff;
}
.casino-card p {
    font-size: 14px;
    color: #e0e0ff;
}

/* Кнопка */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #00ffff, #ff77ff);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #ff77ff;
}
.btn:hover {
    background: linear-gradient(90deg, #ff77ff, #00ffff);
    box-shadow: 0 0 15px #00ffff, 0 0 30px #ff77ff;
}

/* Footer */
.site-footer {
  background: rgba(10,10,30,0.9);
  text-align: center;
  padding: 15px;
  margin-top: 50px;
  font-size: 14px;
  color: #a0c0ff;
}



/* FAQ Section */
.faq {
    padding: 60px 20px;
    text-align: center;
}
.faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff, 0 0 30px #ff77ff;
}

/* Контейнер аккордеона */
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Каждый вопрос */
.faq-item {
    width: 60%;
    max-width: 600px;
    background: rgba(255,255,255,0.05); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 15px #00ffff, 0 0 25px #ff77ff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    padding: 20px;
}

/* Вопрос */
.faq-question {
    padding: 15px 20px;
    font-weight: bold;
    color: #00ffff;
    text-align: left;
    font-size: 18px;
    text-shadow: 0 0 8px #00ffff, 0 0 15px #ff77ff;
}

/* Ответ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px; 
}

/* Jeu Responsable */
.jeu-responsable {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10,10,30,0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    margin: 50px auto;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #ff77ff;
}

.jeu-responsable h1 {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 25px #ff77ff;
    margin-bottom: 30px;
    font-size: 36px;
}

.jeu-responsable p, 
.jeu-responsable li {
    color: #e0e0ff;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
}

.jeu-responsable ul {
    list-style-type: disc;
    padding-left: 20px;
}

.jeu-responsable a {
    color: #00ffff;
    text-decoration: underline;
    transition: color 0.3s;
}
.jeu-responsable a:hover {
    color: #ff77ff;
}

/* À propos de nous */
.about-us {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10,10,30,0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    margin: 50px auto;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #ff77ff;
}

.about-us h2 {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 25px #ff77ff;
    margin-bottom: 30px;
    font-size: 36px;
}

.about-container p {
    color: #e0e0ff;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact h2 {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 25px #ff77ff;
    margin-bottom: 30px;
    font-size: 36px;
}

.contact-container {
    width: 80%;
    max-width: 600px;
    background: rgba(10,10,30,0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #ff77ff;
}

.contact-container form {
    display: flex;
    flex-direction: column;
}

.contact-container label {
    color: #00ffff;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-container input,
.contact-container textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #e0e0ff;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-container input::placeholder,
.contact-container textarea::placeholder {
    color: #8888ff;
}

.contact-container button.btn {
    background: #00ffff;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-container button.btn:hover {
    background: #ff77ff;
    color: #fff;
}


.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    display: none;
}

.age-popup.show {
    display: flex;
}

.age-popup-content {
    background: rgba(10,10,30,0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.age-popup-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #00ffff;
}

.age-popup-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.age-popup-content .btn {
    background: #00ffff;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.age-popup-content .btn:hover {
    background: #ff77ff;
    color: #fff;
}


.site-footer {
  text-align: center;
  padding: 20px;
  background: #0b0f1a;
  color: #fff;
  font-size: 14px;
}
.site-footer .footer-links a {
  color: #a0c0ff;
  margin: 0 8px;
  text-decoration: none;
}
.site-footer .footer-text {
  margin: 15px 0;
  font-size: 13px;
  color: #ccc;
}
.site-footer .footer-logos img {
  margin: 10px;
  transition: transform 0.2s;
}
.site-footer .footer-logos img:hover {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logos {
    gap: 15px;
  }

  .footer-logos img {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .footer-text {
    font-size: 12px;
  }

  .footer-logos img {
    height: 30px;
  }
}


.legal-page {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #00ffff;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin: 25px 0 10px;
  color: #00ffff;
}

.legal-page p, 
.legal-page li {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ddd;
}

.legal-page ul {
  list-style-type: disc;
  margin-left: 20px;
}

.gamstop-icon{
 width: 60px;;
  padding: 22px 5px;
}

/* Общие стили для контентных страниц */
.content {
  background: #0b0f1a; /* тёмный фон, как у сайта */
  color: #fff;
  padding: 60px 20px;
  min-height: calc(100vh - 200px); /* чтобы футер не налезал */
  display: flex;
  justify-content: center;
}

.content .container {
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color:  #00ffff; 
  text-align: center;
}

.content h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #00ffff;
}

/* Текст */
.content p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Ссылки внутри текста */
.content a {
  color: #110361;
  text-decoration: underline;
  transition: color 0.3s;
}

.content a:hover {
  color: #fff;
}
