/* Базові стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Меню */
.navbar {
    position: fixed;
    width: 100%;
    background-color: #1e1e2f;
    color: white;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

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

/* Mobile меню */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #1e1e2f;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px 20px;
        border-radius: 8px;
    }

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

    .menu-toggle {
        display: block;
    }
}

.hero-section {
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.hero-image img:hover {
    transform: scale(1.03);
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffd700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-text ul {
    font-size: 17px;
    line-height: 1.6;
    list-style: none;
    padding: 0;
}

.hero-text ul li::before {
    content: "✔";
    margin-right: 10px;
    color: #00ffcc;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

    .hero-text ul {
        font-size: 15px;
    }
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #000;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffdd33, #ffbb33);
}

.about-game {
    background-color: #111;
    color: #fff;
    padding: 100px 20px;
}

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

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.about-text {
    flex: 1 1 500px;
}

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

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

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-subtext {
    margin-top: 15px;
    font-size: 16px;
    color: #ddd;
    font-style: italic;
}

.why-choose {
    background-color: #121212;
    color: #eee;
    padding: 100px 20px;
}

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

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

.why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.why-image img:hover {
    transform: scale(1.04);
}

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

.why-text h2 {
    font-size: 32px;
    color: #ffbf00;
    margin-bottom: 10px;
}

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

.why-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-text ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.why-text ul li {
    margin-bottom: 10px;
}

.why-subtext {
    font-style: italic;
    color: #ccc;
    font-size: 16px;
}

.testimonials {
    background-color: #181818;
    color: #eee;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 5px;
}

.testimonials h3 {
    font-size: 24px;
    color: #ffaa00;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-style: italic;
    color: #bbb;
    margin-bottom: 40px;
    font-size: 16px;
}

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

.review {
    background: #222;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.review-author {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
}

.review blockquote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
    color: #ddd;
    quotes: "„" "“" "‚" "‘";
}

.review blockquote:before {
    content: open-quote;
    font-size: 30px;
    line-height: 0;
    vertical-align: -10px;
    color: #ffcc00;
    margin-right: 6px;
}

.review blockquote:after {
    content: close-quote;
    font-size: 30px;
    line-height: 0;
    vertical-align: -10px;
    color: #ffcc00;
    margin-left: 6px;
}

.contact {
    background-color: #1a1a1a;
    color: #eee;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.contact-info {
    flex: 1 1 350px;
}

.contact-info h2 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-info address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
}

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

.contact-info a:hover {
    text-decoration: underline;
}

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

.contact-form label {
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background-color: #333;
    color: #eee;
    resize: vertical;
    transition: background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: #444;
    outline: none;
}

.contact-form button {
    margin-top: 20px;
    padding: 14px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    border: none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #ffdd33, #ffbb33);
    transform: translateY(-2px);
}

.site-footer {
    background-color: #121212;
    color: #aaa;
    padding: 30px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-logo {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    color: #ffcc00;
}

.footer-nav a {
    color: #aaa;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffcc00;
}

.footer-copy {
    flex-basis: 100%;
    text-align: center;
    margin-top: 10px;
    color: #777;
}

/* Адаптивність */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        margin: 15px 0;
    }

    .footer-copy {
        margin-top: 5px;
    }
}

.privacy-policy {
    background-color: #1a1a1a;
    color: #ddd;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 0px;
}

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

.privacy-policy h2 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 20px;
}

.privacy-policy h3 {
    font-size: 22px;
    color: #ffaa00;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-policy p,
.privacy-policy ul {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ccc;
}

.privacy-policy ul {
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-policy a {
    color: #00d1b2;
    text-decoration: none;
}

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

.thank-you {
    background-color: #222;
    color: #ffcc00;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 18px;
    color: #fff3b0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #222;
    color: #eee;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 10000;
}

.cookie-banner p {
    flex: 1 1 60%;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    flex: 1 1 35%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-buttons button {
    background: #ffcc00;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #000;
}

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