/* Загальні стилі */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
}

.main-header {
    background: #000;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00ff66;
}

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

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
}

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

/* Меню */
.menu {
    display: flex;
    gap: 1.5rem;
}

.menu a {
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #00ff66;
}

/* Бургер */
.menu-btn {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.menu-icon .nav-icon,
.menu-icon .nav-icon::before,
.menu-icon .nav-icon::after {
    background: #00ff66;
    content: '';
    display: block;
    height: 3px;
    position: absolute;
    width: 100%;
    transition: 0.3s ease;
}

.menu-icon .nav-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon .nav-icon::before {
    top: -10px;
}

.menu-icon .nav-icon::after {
    bottom: -10px;
}

/* Mobile */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        display: none;
    }

    .menu a {
        padding: 1rem;
        border-bottom: 1px solid #222;
    }

    .menu-btn:checked~.menu-icon .nav-icon {
        background: transparent;
    }

    .menu-btn:checked~.menu-icon .nav-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-btn:checked~.menu-icon .nav-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .menu-btn:checked~.menu {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}

.hero-section {
    position: relative;
    background: url('../img/hero.png') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff66;
    text-align: center;
    padding: 0 1rem;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

@media (max-width: 600px) {
    .hero-section {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

.about-section {
    padding: 4rem 1rem;
    background-color: #000;
    color: #a8f1a0;
}

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

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

.about-text h2 {
    font-size: 2rem;
    color: #00ff66;
    margin-bottom: 0.3rem;
}

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

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

.about-text .subtitle {
    font-style: italic;
    color: #6ec36e;
    margin-top: 1.5rem;
}

.about-image {
    flex: 1 1 400px;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px #00ff66aa;
}

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

    .about-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .about-text {
        flex: none;
    }
}

.services-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 4rem 1rem;
}

.services-section .container {
    max-width: 1100px;
    margin: auto;
}

.services-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 4rem 1rem;
}

.services-section .container {
    max-width: 1100px;
    margin: auto;
}

.services-section h2 {
    font-size: 2rem;
    color: #00ff66;
    margin-bottom: 1rem;
    text-align: center;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #9dde91;
    text-align: center;
}

/* Сітка двох колонок */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
}

.service-item {
    /* background-color: #111; */
    /* за бажанням */
}

.service-item h3 {
    font-size: 1.3rem;
    color: #b0fca0;
    margin-bottom: 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item h3 i {
    color: #00ff66;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-left: 0.8rem;
}

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

.services-subtitle {
    font-style: italic;
    color: #78c06d;
    max-width: 700px;
    margin: 3rem auto 0 auto;
    font-size: 1.05rem;
    text-align: center;
}

/* Адаптивність */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item h3 {
        justify-content: flex-start;
    }

    .service-item h3 i {
        margin-left: 0.5rem;
    }
}

.why-us-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 4rem 1rem;
}

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

.why-us-text {
    flex: 1 1 500px;
    color: #c4e0b2;
}

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

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

.why-us-image {
    flex: 1 1 400px;
    max-width: 400px;
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px #00ff6690;
}

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

    .why-us-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

.top-bookmakers-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 4rem 1rem;
}

.top-bookmakers-section .container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.top-bookmakers-section h2 {
    font-size: 2rem;
    color: #00ff66;
    margin-bottom: 2.5rem;
}

/* Сітка двох колонок */
.bookmakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.bookmaker-item {
    background-color: #111;
    padding: 1.8rem 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ff66aa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bookmaker-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.bookmaker-item h3 {
    font-size: 1.4rem;
    color: #b0fca0;
    margin-bottom: 1rem;
}

.bookmaker-item p {
    font-size: 1rem;
    color: #c2e6b4;
    line-height: 1.5;
    margin-bottom: 1.8rem;
    text-align: center;
    flex-grow: 1;
}

.btn-primary {
    background-color: #00ff66;
    color: #000;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #00cc52;
    color: #fff;
}

/* Адаптивність */
@media (max-width: 768px) {
    .bookmakers-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 4rem 1rem;
}

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

.testimonials-section h2 {
    font-size: 2rem;
    color: #00ff66;
    margin-bottom: 1rem;
}

.testimonials-intro {
    font-size: 1.1rem;
    color: #9dde91;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
    text-align: left;
}

.testimonial-item {
    background-color: #111;
    padding: 1.8rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ff66aa;
}

.testimonial-item h3 {
    font-size: 1.2rem;
    color: #b0fca0;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-item h3 span {
    font-style: italic;
    font-weight: 400;
    color: #78c06d;
    font-size: 0.9rem;
}

.testimonial-item p {
    font-size: 1rem;
    color: #c2e6b4;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 4rem 1rem;
}

.contact-section .container {
    max-width: 1100px;
    margin: auto;
}

.contact-section h2 {
    font-size: 2rem;
    color: #00ff66;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-intro {
    font-size: 1.1rem;
    color: #9dde91;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 350px;
    font-size: 1rem;
    line-height: 1.6;
    color: #c2e6b4;
}

.contact-info strong {
    color: #00ff66;
}

.email-link {
    color: #00ff66;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* Форма справа */
.contact-form {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #9dde91;
}

.contact-form input,
.contact-form textarea {
    background-color: #111;
    border: 1.5px solid #00ff66;
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    color: #c2e6b4;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #78c06d;
    background-color: #121212;
}

.contact-form .btn-primary {
    align-self: flex-start;
    padding: 0.8rem 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #00cc52;
    color: #fff;
}

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

    .contact-info,
    .contact-form {
        flex: none;
        width: 100%;
        max-width: 450px;
    }

    .contact-form .btn-primary {
        align-self: center;
    }
}

.footer-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    border-top: 2px solid #00ff66;
}

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

.footer-logos a {
    display: inline-block;
}

.img-container {
    width: 120px;
    height: 60px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.3);
}

.img-container img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    filter: none;
}


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

.footer-links a {
    color: #00ff66;
    text-decoration: none;
    margin: 0 0.4rem;
    transition: color 0.3s ease;
}

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

.sitename {
    font-weight: 700;
    color: #00ff66;
}

/* Адаптивність */
@media (max-width: 600px) {
    .footer-logos {
        gap: 1.5rem;
    }

    .img-container {
        width: 80px;
        height: 40px;
    }
}

.important-notice-section {
    background-color: #111;
    color: #a8f1a0;
    padding: 3rem 1rem;
    border-left: 5px solid #00ff66;
    margin: 3rem 0;
    font-size: 1.05rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    box-shadow: 0 0 15px #00ff6690;
}

.important-notice-section h2 {
    color: #00ff66;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.important-notice-section p {
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align: justify;
}

@media (max-width: 600px) {
    .important-notice-section {
        padding: 2rem 1rem;
        font-size: 1rem;
    }

    .important-notice-section h2 {
        font-size: 1.4rem;
    }
}

.privacy-policy-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 3rem 1rem 5rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 0 25px #00ff6690;
}

.privacy-policy-section h2 {
    color: #00ff66;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    text-align: center;
    font-weight: 700;
}

.privacy-policy-section .last-update {
    text-align: center;
    font-style: italic;
    color: #78c06d;
    margin-bottom: 2rem;
}

.privacy-policy-section h3 {
    color: #78c06d;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #00ff66;
    padding-bottom: 4px;
}

.privacy-policy-section h4 {
    color: #8fd28f;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.privacy-policy-section h5 {
    color: #a0d7a0;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.privacy-policy-section p,
.privacy-policy-section ul {
    margin-bottom: 1rem;
    color: #c2e6b4;
}

.privacy-policy-section ul {
    padding-left: 1.4rem;
    list-style-type: disc;
}

.email-link {
    color: #00ff66;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #78c06d;
}

/* Адаптивність */
@media (max-width: 600px) {
    .privacy-policy-section {
        padding: 2rem 1rem 3rem;
        font-size: 0.9rem;
    }

    .privacy-policy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-policy-section h3 {
        font-size: 1.1rem;
    }

    .privacy-policy-section h4 {
        font-size: 1rem;
    }
}

.cookies-policy-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 3rem 1rem 5rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 0 25px #00ff6690;
}

.cookies-policy-section h2 {
    color: #00ff66;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    text-align: center;
    font-weight: 700;
}

.cookies-policy-section .last-update {
    text-align: center;
    font-style: italic;
    color: #78c06d;
    margin-bottom: 2rem;
}

.cookies-policy-section h3 {
    color: #78c06d;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #00ff66;
    padding-bottom: 4px;
}

.cookies-policy-section p,
.cookies-policy-section ul {
    margin-bottom: 1rem;
    color: #c2e6b4;
}

.cookies-policy-section ul {
    padding-left: 1.4rem;
    list-style-type: disc;
}

.link-primary {
    color: #00ff66;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-primary:hover {
    color: #78c06d;
}

/* Адаптивність */
@media (max-width: 600px) {
    .cookies-policy-section {
        padding: 2rem 1rem 3rem;
        font-size: 0.9rem;
    }

    .cookies-policy-section h2 {
        font-size: 1.6rem;
    }

    .cookies-policy-section h3 {
        font-size: 1.1rem;
    }
}

.terms-conditions-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 3rem 1rem 5rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 0 25px #00ff6690;
}

.terms-conditions-section h2 {
    color: #00ff66;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    text-align: center;
    font-weight: 700;
}

.terms-conditions-section h3 {
    color: #78c06d;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #00ff66;
    padding-bottom: 4px;
}

.terms-conditions-section h4 {
    color: #8fd28f;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.terms-conditions-section p,
.terms-conditions-section ul {
    margin-bottom: 1rem;
    color: #c2e6b4;
}

.terms-conditions-section ul {
    padding-left: 1.4rem;
    list-style-type: disc;
}

.email-link {
    color: #00ff66;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #78c06d;
}

/* Адаптивність */
@media (max-width: 600px) {
    .terms-conditions-section {
        padding: 2rem 1rem 3rem;
        font-size: 0.9rem;
    }

    .terms-conditions-section h2 {
        font-size: 1.6rem;
    }

    .terms-conditions-section h3 {
        font-size: 1.1rem;
    }

    .terms-conditions-section h4 {
        font-size: 1rem;
    }
}

.responsible-gaming-section {
    background-color: #000;
    color: #a8f1a0;
    padding: 4rem 1rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 0 25px #00ff6690;
}

.responsible-gaming-section h2 {
    color: #00ff66;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 700;
}

.responsible-gaming-section h3 {
    color: #78c06d;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #00ff66;
    padding-bottom: 4px;
}

.responsible-gaming-section p,
.responsible-gaming-section ul {
    margin-bottom: 1rem;
    color: #c2e6b4;
}

.responsible-gaming-section ul {
    padding-left: 1.4rem;
    list-style-type: disc;
}

.link-primary {
    color: #00ff66;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-primary:hover {
    color: #78c06d;
}

/* Адаптивність */
@media (max-width: 600px) {
    .responsible-gaming-section {
        padding: 2rem 1rem;
        font-size: 0.9rem;
    }

    .responsible-gaming-section h2 {
        font-size: 1.6rem;
    }

    .responsible-gaming-section h3 {
        font-size: 1.1rem;
    }
}