/* General Styles */
body {
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
    color: #333;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h5 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background-color: #ff7a00;
    border-color: #ff7a00;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e06a00;
    border-color: #e06a00;
}

.btn-dark {
    background-color: #1f2d3b;
    color: #fff;
}

/* Games Section */
#games {
    background-color: #f8f9fa;
    padding: 50px 0;
}

#games h2 {
    color: #ff7a00;
    margin-bottom: 30px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    border-radius: 10px 10px 0 0;
}

.card-body h5 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
}

/* Newsletter Section */
.newsletter {
    background-color: #ff7a00;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter .form-control {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter .btn-dark {
    background-color: #333;
    border: none;
    color: #fff;
    transition: 0.3s;
}

.newsletter .btn-dark:hover {
    background-color: #222;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    color: #ff7a00;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.faq-answer {
    font-size: 1rem;
    color: #555;
}

/* Two Column with Image Section */
.two-column {
    padding: 60px 0;
}

.two-column .image-column img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.two-column .text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.two-column h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.two-column p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
#disclaimer {
    background-color: #ffe6e6;
    border-top: 3px solid #ff4d4d;
    padding: 50px 20px;
    text-align: center;
}

#disclaimer h2 {
    font-size: 2rem;
    color: #d9534f;
    margin-bottom: 20px;
}

#disclaimer p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

#disclaimer img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}
#cookie-consent {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Убедитесь, что блок поверх других элементов */
}

#cookie-consent a {
    text-decoration: none;
    color: #ffc107; /* Жёлтый цвет для ссылки */
}
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.popup-content img {
    width: 80px;
    margin-bottom: 15px;
}

.popup-content a {
    color: #007bff;
    text-decoration: none;
}

.popup-content a:hover {
    text-decoration: underline;
}