/* Основне меню */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 1rem 2rem;
    border-bottom: 2px solid #cc0000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Логотип */
.logo a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #cc0000;
    font-weight: bold;
}

/* Навігація */
.nav-links {
    display: flex;
    gap: 1.5rem;
}

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

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

/* Гамбургер */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #cc0000;
}

/* Приховуємо чекбокс */
#menu-toggle {
    display: none;
}

/* Адаптація */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        display: none;
        border-top: 1px solid #eee;
    }

    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    #menu-toggle:checked+.hamburger+.nav-links {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

.hero {
    position: relative;
    width: 100%;
}

.hero-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Контейнер з текстом */
.hero-content {
    background-color: white;
    padding: 2rem;
    margin: -60px auto 0;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    border-radius: 8px;
    text-align: center;
}

.hero-content h1 {
    color: #cc0000;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

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

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text h2 {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 0.5rem;
}

.about-text h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-text .subtitle {
    font-style: italic;
    color: #cc0000;
    font-weight: 500;
}

.services-section {
    background-color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 0.5rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s ease;
    background: #fafafa;
}

.service-box:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-box i {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 1rem;
}

.service-box h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 0.8rem;
}

.service-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.why-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

.why-text {
    flex: 1;
    min-width: 280px;
}

.why-text h2 {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 1rem;
}

.why-text .lead {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.why-text p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.bookmakers-section {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.bookmakers-header h2 {
    color: #cc0000;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.bookmakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bookmaker-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bookmaker-card img {
    width: 100%;
    height: auto;
}

.bookmaker-content {
    padding: 1.5rem;
    text-align: left;
}

.bookmaker-content h3 {
    color: #cc0000;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.bookmaker-content p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-bookmaker {
    display: inline-block;
    background-color: #cc0000;
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-bookmaker:hover {
    background-color: #990000;
}

.testimonials-section {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.testimonials-header h2 {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 0.5rem;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

/* Слайдер */
.slider-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    padding: 2rem;
    box-sizing: border-box;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.slide p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.slide h4 {
    color: #cc0000;
    font-weight: bold;
}

.slide h4 span {
    font-weight: normal;
    color: #555;
}

/* Кнопки */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #cc0000;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
}

.prev:hover,
.next:hover {
    background-color: #990000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h2 {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #444;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Info */
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

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

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #cc0000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.warning-section {
    background-color: #fff0f0;
    border-top: 3px solid #cc0000;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.warning-container {
    max-width: 900px;
    margin: 0 auto;
    color: #333;
}

.warning-section h2 {
    color: #cc0000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.warning-section p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.warning-section .bold {
    font-weight: 600;
    color: #990000;
    text-align: center;
}

.footer-section {
    background-color: #ffffff;
    border-top: 2px solid #eee;
    padding: 2.5rem 1rem 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.img-container {
    width: 100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.img-container {
    width: 120px;
    height: 60px;
    background-color: #f8f8f8;
    border-radius: 6px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


.footer-links p {
    margin: 0.5rem 0;
}

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

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

.sitename {
    font-weight: 600;
    color: #222;
}

.privacy-policy {
    padding: 4rem 2rem;
    background-color: #fff;
    font-family: sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.privacy-policy h1 {
    color: #cc0000;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-policy .update-date {
    font-size: 0.95rem;
    text-align: center;
    color: #777;
    margin-bottom: 2rem;
}

.privacy-policy h2 {
    color: #cc0000;
    font-size: 1.4rem;
    margin-top: 2rem;
}

.privacy-policy h3,
.privacy-policy h4 {
    color: #444;
    font-size: 1.1rem;
    margin-top: 1.2rem;
}

.privacy-policy ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.privacy-policy ul li {
    margin-bottom: 0.4rem;
}

.privacy-policy a {
    color: #cc0000;
    text-decoration: underline;
}

.privacy-policy a:hover {
    color: #990000;
}

.cookies-policy {
    padding: 4rem 2rem;
    background-color: #fff;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
}

.cookies-policy .container {
    max-width: 900px;
    margin: 0 auto;
}

.cookies-policy h1 {
    font-size: 2rem;
    color: #cc0000;
    text-align: center;
    margin-bottom: 1rem;
}

.cookies-policy .update-date {
    text-align: center;
    color: #777;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cookies-policy h2 {
    font-size: 1.3rem;
    color: #cc0000;
    margin-top: 2rem;
}

.cookies-policy ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.cookies-policy ul li {
    margin-bottom: 0.6rem;
}

.cookies-policy a {
    color: #cc0000;
    text-decoration: underline;
}

.cookies-policy a:hover {
    color: #990000;
}

.terms-conditions {
    padding: 4rem 2rem;
    background-color: #fff;
    font-family: sans-serif;
    color: #333;
    line-height: 1.6;
}

.terms-conditions .container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-conditions h1 {
    font-size: 2rem;
    color: #cc0000;
    text-align: center;
    margin-bottom: 2rem;
}

.terms-conditions h2 {
    font-size: 1.4rem;
    color: #cc0000;
    margin-top: 2rem;
}

.terms-conditions h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: #444;
}

.terms-conditions ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.terms-conditions ul li {
    margin-bottom: 0.5rem;
}

.terms-conditions a {
    color: #cc0000;
    text-decoration: underline;
}

.terms-conditions a:hover {
    color: #990000;
}

.responsible-gaming {
    padding: 4rem 2rem;
    background-color: #fffdfd;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
}

.responsible-gaming .container {
    max-width: 900px;
    margin: 0 auto;
}

.responsible-gaming h1 {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 1rem;
    text-align: center;
}

.responsible-gaming h2 {
    font-size: 1.3rem;
    color: #cc0000;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.responsible-gaming ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.responsible-gaming ul li {
    margin-bottom: 0.6rem;
}

.responsible-gaming a {
    color: #cc0000;
    text-decoration: underline;
}

.responsible-gaming a:hover {
    color: #990000;
}