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

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1a1a2e;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

}

.logo a{
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00adb5;
}

/* Бургер */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    height: 3px;
    width: 25px;
    background: #fff;
    border-radius: 2px;
}

.menu-toggle {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a2e;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid #2c2c3e;
    }

    .menu-toggle:checked+.menu-icon+.nav-links {
        max-height: 300px;
    }
}

.st-height-b120 {
    height: 120px;
}

.hero-section {
    background: url('../img/hero.webp') center center/cover no-repeat fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
}

.image-section {
    text-align: center;
}

.image-section img {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.google-icon img {
    width: 200px;
}

.about-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1 1 40%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1 1 55%;
}

.about-text h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text .subtitle {
    display: inline-block;
    margin-top: 15px;
    font-style: italic;
    font-size: 15px;
    color: #777;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text h3 {
        font-size: 18px;
    }
}

.why-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
}

.why-image {
    flex: 1 1 300px;
    text-align: center;
}

.why-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-text {
    flex: 2 1 600px;
}

.why-text h2 {
    font-size: 26px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.why-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-text ul {
    list-style: none;
    padding-left: 0;
}

.why-text ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
    .why-grid {
        flex-direction: column;
        align-items: center;
    }

    .why-text h2 {
        text-align: center;
        font-size: 22px;
    }

    .why-text p,
    .why-text ul {
        text-align: left;
    }
}

.features-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.features-title {
    font-size: 30px;
    color: #1a1a2e;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 32px;
    color: #00adb5;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

.feature-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-section {
    background-color: #1a1a2e;
    color: #fff;
    padding: 80px 20px;
}

.contact-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.contact-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    flex: 1 1 300px;
    font-size: 15px;
}

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

.contact-info a {
    color: #00adb5;
    text-decoration: none;
}

.contact-form {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #00adb5;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #007c84;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-subtitle {
        font-size: 15px;
    }
}

.site-footer {
    background-color: #111;
    color: #ccc;
    padding: 60px 20px 30px;
    font-size: 14px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
    color: #00adb5;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-contact,
    .footer-links,
    .footer-logo {
        width: 100%;
    }
}

.privacy-section {
    background-color: #fff;
    padding: 80px 20px;
    color: #222;
    line-height: 1.7;
}

.privacy-section h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-section h3 {
    font-size: 20px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-section ul li {
    margin-bottom: 8px;
    list-style: disc;
}

.privacy-section a {
    color: #00adb5;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-section p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section h3 {
        font-size: 18px;
    }
}

.thankyou-section {
    background-color: #1a1a2e;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thankyou-box {
    max-width: 600px;
}

.thankyou-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00adb5;
}

.thankyou-section p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.thankyou-button {
    background-color: #00adb5;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 15px;
    transition: background 0.3s ease;
}

.thankyou-button:hover {
    background-color: #007c84;
}.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a2e;
  color: #fff;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  font-size: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  background-color: #00adb5;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-buttons button:hover {
  background-color: #007c84;
}

@media (max-width: 500px) {
  .cookie-banner {
    font-size: 14px;
    padding: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button {
    width: 100%;
  }
}
.play-game {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background-color: #00adb5;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.play-game:hover {
  background-color: #009aa2;
  transform: scale(1.05);
}
