@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    font-family: 'Open Sans', sans-serif;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #0f2250 0%, #142f6b 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  .logo {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
  }

  .nav {
    display: flex;
    align-items: center;
  }

  .nav_list {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
  }

  .nav_list li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    font-size: 14px;
  }

  .nav_list li a:hover {
    color: #f1c40f;
  }

  .age-warning {
    margin-left: 20px;
    font-size: 0.9rem;
    color: #ccc;
    background-color: crimson;
    padding: 5px 10px;
    border-radius: 5px;
  }

  .burger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .nav_list {
        background: linear-gradient(180deg, #0f2250 0%, #142f6b 100%);
    }

    .nav_list, .age-warning {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 15px 0;
    }

    .nav_list li {
      margin: 10px 0;
      text-align: center;
    }

    .nav.active .nav_list,
    .nav.active .age-warning {
      margin-top: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .burger {
      display: block;
      margin-left: auto;
    }

    .age-warning {
        margin-left: 0;
    }

    .nav.active .age-warning {
        background-color: crimson;
        padding: 5px 10px;
        margin: 0 auto;
    }
  }

  .nav_list, .age-warning {
    transition: all 0.3s ease;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 80px 20px;
    background: radial-gradient(circle at top left, rgba(29, 39, 132, 0.771), transparent 70%),
                radial-gradient(circle at bottom right, rgba(36, 54, 143, 0.724), transparent 70%);
}

.hero h1 {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 30px;
    color: #ffffffcc;
}

.hero a {
    display: inline-block;
    text-decoration: none;
    background-color: crimson;
    color: #e0e0e0;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero a:hover {
    background-color: #3b5bbf;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    .hero {
        padding: 100px 15px 40px 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .hero a {
        padding: 12px 25px;
    }
}

.about {
    background: linear-gradient(180deg, #0f2250 0%, #142f6b 100%);
    color: #ffffffcc;
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid #3b5bbf;
}

.about h2 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 2rem;
    }
    .about p {
        font-size: 1rem;
    }
    .about {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .about h2 {
        font-size: 1.6rem;
    }
    .about p {
        font-size: 0.95rem;
    }
    .about {
        padding: 50px 10px;
    }
}

.game {
    background: linear-gradient(180deg, #10225c 0%, #1a3478 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.game h2 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.game_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.game_list li {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game_list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game_list li img {
    height: 224px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.game_list li h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.game_list li a {
    display: inline-block;
    text-decoration: none;
    background-color: crimson;
    color: #e0e0e0;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game_list li a:hover {
    background-color: #3b5bbf;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .game_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .game_list {
        grid-template-columns: 1fr;
    }

    .game h2 {
        font-size: 2rem;
    }
}

.disclaimer {
    background-color: #0d1b3d;
    color: #ffffffaa;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    border-top: 1px solid #3b5bbf;
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .disclaimer {
        font-size: 0.85rem;
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .disclaimer {
        font-size: 0.8rem;
        padding: 25px 10px;
    }
}

footer {
    background-color: #0b1633;
    color: #ffffffcc;
    text-align: center;
    padding: 50px 20px 30px 20px;
    font-size: 0.95rem;
}

footer .footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin-bottom: 20px;
}

footer .footer-nav li a {
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.3s;
}

footer .footer-nav li a:hover {
    color: #3b5bbf;
}

footer .plus {
    font-size: 0.85rem;
    color: #ffffff99;
    margin-bottom: 10px;
}

footer p {
    font-size: 0.85rem;
    color: #ffffff77;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 15px 25px 15px;
        font-size: 0.9rem;
    }

    footer .footer-nav {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 10px 20px 10px;
        font-size: 0.85rem;
    }

    footer .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}

.cookie-policy {
    background: linear-gradient(180deg, #0d1b3d 0%, #142f6b 100%);
    color: #ffffffcc;
    padding: 80px 20px;
}

.cookie-policy_container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.cookie-policy h2,
.cookie-policy h3 {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.cookie-policy h2 {
    font-size: 2.5rem;
    text-align: center;
}

.cookie-policy h3 {
    font-size: 1.5rem;
    margin-top: 30px;
}

.cookie-policy p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ffffffcc;
}

.cookie-policy ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.cookie-policy ul li {
    margin-bottom: 10px;
}

.cookie-policy a {
    color: crimson;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-policy a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-policy h2 {
        font-size: 2rem;
    }
    .cookie-policy h3 {
        font-size: 1.3rem;
    }
    .cookie-policy p,
    .cookie-policy ul li {
        font-size: 0.95rem;
    }
    .cookie-policy {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .cookie-policy h2 {
        font-size: 1.8rem;
    }
    .cookie-policy h3 {
        font-size: 1.1rem;
    }
    .cookie-policy p,
    .cookie-policy ul li {
        font-size: 0.9rem;
    }
    .cookie-policy {
        padding: 50px 10px;
    }
}

.game-section {
    background: linear-gradient(180deg, #0f1f44 0%, #1b3466 100%);
    color: #ffffffcc;
    padding: 80px 20px;
    text-align: center;
}

.game-section h3 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.game-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-section-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.game-section-list li {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-section-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-section-list li img {
    height: 224px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.game-section-list li h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.game-section-list li p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffffcc;
}

.game-section-list li span {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #c0c0c0;
}

.game-section-list li a {
    margin-top: 15px;
    text-decoration: none;
    background-color: crimson;
    color: #e0e0e0;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-section-list li a:hover {
    background-color: #3b5bbf;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .game-section-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .game-section-list {
        grid-template-columns: 1fr;
    }

    .game-section h3 {
        font-size: 1.6rem;
    }

    .game-section p {
        font-size: 1rem;
    }
}

.contact-section {
    background: linear-gradient(180deg, #0d1b3d 0%, #142f6b 100%);
    color: #ffffffcc;
    padding: 80px 20px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form,
.contact-info {
    flex: 1 1 400px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
    color: #ffffffaa;
}

.contact-form form button {
    background-color: #1e3a8a;
    color: #e0e0e0;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form form button:hover {
    background-color: #3b5bbf;
    transform: translateY(-2px);
}

.contact-info ul {
    list-style: none;
    padding: 0;
    line-height: 1.7;
}

.contact-info ul li {
    margin-bottom: 12px;
}

.contact-info ul li strong {
    color: #e0e0e0;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.6rem;
    }

    .contact-form form input,
    .contact-form form textarea {
        padding: 10px 12px;
    }

    .contact-form form button {
        padding: 10px 20px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}

.modal-content {
    background: linear-gradient(180deg, #0f1f44 0%, #1b3466 100%);
    margin: 15% auto;
    padding: 30px 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.modal-content h2 {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.modal-content p {
    color: #ffffffcc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-close {
    background-color: #1e3a8a;
    color: #e0e0e0;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #3b5bbf;
    transform: translateY(-2px);
}

.about-hero {
    background: linear-gradient(180deg, #0d1b3d 0%, #1a3478 100%);
    color: #ffffffcc;
    padding: 80px 20px;
    font-family: 'Open Sans', sans-serif;
}

.about-hero h1 {
    font-size: 2.8rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 20px;
}

.about-hero h2 {
    font-size: 1.8rem;
    color: #c0c0c0;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.4;
}

.about-first {
    max-width: 900px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

.about-first p {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #ffffffcc;
}

.about-why, .about-events {
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.about-why h2,
.about-events h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: center;
}

.about-why-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.about-why-list li {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-why-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.about-why-list li h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-why-list li h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.about-why-list li p {
    font-size: 0.95rem;
    color: #ffffffcc;
}

.about-events-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.about-events-list li {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-events-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.about-events-list li h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.about-events-list li p {
    font-size: 0.95rem;
    color: #ffffffcc;
}

@media (max-width: 1200px) {
    .about-events-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-why-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-why-list,
    .about-events-list {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 15px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero h2 {
        font-size: 1.2rem;
    }
}

.games-section {
    background: linear-gradient(180deg, #0d1b3d 0%, #142f6b 100%);
    color: #ffffffcc;
    padding: 140px 20px;
    font-family: 'Open Sans', sans-serif;
}

.games-section_container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.games-section_container img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 20px;
}

.games-section h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    text-align: center;
}

.games-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ffffffcc;
}

.root-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.slotGame {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 10px;
    display: inline-block;
}

.features,
.how-to-play {
    margin: 20px 0;
    padding-left: 20px;
    border-left: #000000 4px solid;
}

.features li,
.how-to-play li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #ffffffcc;
    line-height: 1.5;
}

.features li strong,
.how-to-play li strong {
    color: #e0e0e0;
}

.games-section h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    text-align: left;
}

@media (max-width: 992px) {
    .games-section_container {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .games-section h2 {
        font-size: 1.6rem;
    }

    .games-section h3 {
        font-size: 1.3rem;
    }

    .features li,
    .how-to-play li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 120px 15px;
    }

    .games-section h2 {
        font-size: 1.4rem;
    }

    .games-section h3 {
        font-size: 1.2rem;
    }

    .features li,
    .how-to-play li {
        font-size: 0.9rem;
    }
}

.cta-section {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 0 auto 30px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.05);
}

.cta-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.age-modal-content {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 30px 20px;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.age-modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.age-modal-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.age-modal-content button {
  padding: 12px 25px;
  background-color: #ff4c00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.age-modal-content button:hover {
  background-color: #e84300;
}

@media(max-width: 600px){
  .age-modal-content h2 {
    font-size: 1.3rem;
  }
  .age-modal-content p {
    font-size: 0.95rem;
  }
  .age-modal-content button {
    width: 100%;
  }
}

@media (max-width: 576px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 90px 15px 40px 15px;
    }

    .hero .game_list {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 300px;
    }

    .hero .game_list li:not(:first-child) {
        display: none;
    }

    .hero h1, .hero p, .hero a {
        order: 2;
        text-align: center;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
        color: #ffffffcc;
    }

    .hero a {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (min-width: 577px) {
    .game-list-mob {
        display: none;
    }
}