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

body {
    font-family: 'Arial', sans-serif;
}

header {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Основні стилі для меню */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    position: fixed;
    /* Фіксоване позиціонування */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Забезпечує, щоб меню було завжди поверх контенту */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Тінь для елегантності */
    transition: top 0.3s;
    /* Плавна зміна при прокручуванні */
}

.navbar .logo a {
    font-size: 24px;
    font-weight: bold;
    color: #FF6600;
    /* Помаранчевий колір для логотипу */
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.hamburger span {
    background-color: #FF6600;
    height: 4px;
    width: 100%;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        background-color: #fff;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 20px;
    }

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

    .hamburger {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 18px;
        color: #333;
    }
}

.updates-section {
    background-image: url('../img/hero-bg.avif');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.updates-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.updates-text {
    flex: 1;
    max-width: 100%;
    padding: 20px;
}

.updates-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.updates-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .updates-section .container {
        flex-direction: column;
        text-align: left;
    }

    .updates-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .updates-image {
        max-width: 100%;
    }

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

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

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

/* Основні стилі для секції */
.game-info-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.game-info-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.game-text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.game-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.game-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.game-text h3 {
    font-size: 24px;
    margin-top: 20px;
}

.game-image {
    flex: 1;
    max-width: 450%;
}

.game-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .game-info-section .container {
        flex-direction: column;
        text-align: left;
    }

    .game-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .game-image {
        max-width: 100%;
    }

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

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

/* Основні стилі для секції */
.reliable-guide-section {
    background-color: #f0f0f0;
    padding: 80px 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.reliable-guide-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.guide-text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.guide-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.guide-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.guide-image {
    flex: 1;
    max-width: 40%;
}

.guide-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .reliable-guide-section .container {
        flex-direction: column;
        text-align: left;
    }

    .guide-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .guide-image {
        max-width: 100%;
    }

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

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

/* Основні стилі для секції */
.features-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.features-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item i {
    font-size: 40px;
    color: #FF6600;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

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

    .feature-item {
        max-width: 90%;
        margin-bottom: 30px;
    }

    .feature-item i {
        font-size: 30px;
    }

    .feature-item h3 {
        font-size: 22px;
    }

    .feature-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Основні стилі для секції контактної інформації */
.contact-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.contact-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.info-item {
    flex: 1;
    text-align: center;
    max-width: 30%;
    margin: 0 10px;
}

.info-item i {
    font-size: 40px;
    color: #FF6600;
    margin-bottom: 10px;
}

.info-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: #555;
}

/* Стилі для форми */
.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

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

.form-group label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #FF6600;
    color: white;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e65c00;
}

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

    .info-item {
        max-width: 80%;
        margin-bottom: 30px;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 16px;
    }
}

/* Основні стилі для футера */
.footer {
    background-color: #222;
    /* Темний фон */
    color: #f8f8f8;
    /* Світлий текст */
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
}

.footer .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    margin: 10px;
    text-align: left;
    color: #ddd;
    /* Легший колір тексту для підпунктів */
}

.footer-left h3,
.footer-center h3,
.footer-right h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FF6600;
    /* Оранжевий заголовок */
}

.footer-left p,
.footer-center p {
    font-size: 16px;
    line-height: 1.6;
}

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

.footer-right li {
    margin-bottom: 10px;
}

.footer-right a {
    text-decoration: none;
    color: #FF6600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #e65c00;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
}

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

    .footer-left,
    .footer-center,
    .footer-right {
        margin: 10px 0;
        max-width: 100%;
    }

    .footer-right ul {
        padding-left: 0;
    }

    .footer-right a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .footer-left,
    .footer-center,
    .footer-right {
        max-width: 100%;
    }

    .footer-left h3,
    .footer-center h3,
    .footer-right h3 {
        font-size: 18px;
    }

    .footer-left p,
    .footer-center p {
        font-size: 14px;
    }
}

/* Основні стилі для політики конфіденційності */
.privacy-policy {
    background-color: #f8f8f8;
    padding: 60px 20px;
    color: #333;
    text-align: left;
}

.privacy-policy .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-policy h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.privacy-policy p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-policy h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
}

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

.privacy-policy ul li {
    font-size: 16px;
    line-height: 1.6;
}

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

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

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
    .privacy-policy .container {
        width: 100%;
        padding: 0 10px;
    }

    .privacy-policy h2 {
        font-size: 28px;
    }

    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 14px;
    }

    .privacy-policy h3 {
        font-size: 20px;
    }
}
 
.cookie-banner {
    background-color: #333;
    color: #fff;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    text-align: center;
    font-size: 16px;
    display: none; 
}

.cookie-banner p {
    margin: 0;
    padding-right: 20px;
}

.cookie-banner a {
    color: #FF6600;
    text-decoration: none;
}

.cookie-actions {
    margin-top: 15px;
}

.cookie-btn {
    background-color: #FF6600;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.cookie-btn:hover {
    background-color: #e65c00;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
    .cookie-banner p {
        font-size: 14px;
    }

    .cookie-btn {
        font-size: 14px;
    }
}