body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 50px;
    background: #f9f9f9;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

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

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

}

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

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background: #007bff;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Burger icon */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        display: none;
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

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

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

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

.hero-content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: white;
    gap: 40px;
}

.hero-text {
    flex: 1 1 50%;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-text p {
        font-size: 16px;
    }
}

.about-game {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

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

.about-text h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 10px;
}

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

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

.about-subtitle {
    font-style: italic;
    font-size: 16px;
    color: #666;
    border-left: 4px solid #007bff;
    padding-left: 12px;
}

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

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

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

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

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

    .about-subtitle {
        font-size: 14px;
    }
}

.why-domen7 {
    background-color: #f7f9fc;
    padding: 80px 20px;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

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

.why-text h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 20px;
}

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

.why-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.why-list li {
    margin-bottom: 12px;
    font-size: 15.5px;
    line-height: 1.5;
    color: #222;
}

.why-list strong {
    color: #000;
}

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

.why-image img {
    max-width: 100%;
    border-radius: 10px;
}

.why-image.second {
    order: 3;
}

/* Responsive */
@media (max-width: 992px) {
    .why-content {
        flex-direction: column;
        align-items: center;
    }

    .why-image.second {
        order: unset;
    }
}

.features {
    background-color: #fff;
    padding: 80px 20px;
}

.features-title {
    text-align: center;
    font-size: 32px;
    color: #007bff;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-box i {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

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

.contact-section {
    background-color: #f7f9fc;
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1 1 45%;
}

.contact-info h2 {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-list li {
    margin-bottom: 20px;
    font-size: 15.5px;
    color: #222;
}

.contact-list span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.contact-form {
    flex: 1 1 45%;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form button {
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #005dc1;
}

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

    .contact-form,
    .contact-info {
        width: 100%;
    }
}

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

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

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

.footer-logo p {
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;

    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 15px;
    color: #888;
}

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

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

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

.privacy-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 20px;
}

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

.privacy-section p,
.privacy-section li {
    font-size: 15.5px;
    line-height: 1.6;
}

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

.privacy-section a {
    color: #007bff;
    text-decoration: none;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #f5f9ff;
    text-align: center;
    color: #222;
}

.thanks-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #007bff;
}

.thanks-section p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 20px;
}

.thanks-section a {
    color: #007bff;
    text-decoration: none;
}

.btn-back {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background-color: #005dc1;
}.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner p {
  margin: 0;
  font-size: 15px;
}

.cookie-banner a {
  color: #00bfff;
  text-decoration: underline;
}

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

.cookie-buttons button {
  background: #007bff;
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cookie-buttons button:hover {
  background: #005dc1;
}

.cookie-buttons #declineCookies {
  background: #666;
}

.cookie-buttons #declineCookies:hover {
  background: #444;
}
