body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a1128;
    color: #F0F8FF;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

.grid-container {
    max-width: 1200px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF8C00;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

h2, h3, h4, h5, h6 {
    color: #FF8C00;
    font-weight: 600;
}

p {
    color: #F0F8FF;
}

a {
    color: #FF8C00;
    text-decoration: none;
}
.accordion-title::before{
    content: none;
}
.accordion-title::after {
    right: 0.5rem!important;
}
a:hover {
    color: #FFA500;
}
@media (max-width:991px) {
    .menu{
        display: none!important;
    }
}
.button {
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: none;
}

.button.primary {
    background-color: #FF8C00;
    color: #0a1128;
    border: 1px solid #FF8C00;
}

.button.primary:hover {
    background-color: #FFA500;
    color: #0a1128;
    border: 1px solid #FFA500;
}

.button.secondary {
    background-color: #122C5C;
    color: #F0F8FF;
    border: 1px solid #122C5C;
}

.button.secondary:hover {
    background-color: #1a3a6a;
    color: #F0F8FF;
    border: 1px solid #1a3a6a;
}

.button.alert {
    background-color: #cc4d4d;
    color: #F0F8FF;
    border: 1px solid #cc4d4d;
}

.button.alert:hover {
    background-color: #d9534f;
    color: #F0F8FF;
    border: 1px solid #d9534f;
}

.button.success {
    background-color: #3cb371;
    color: #F0F8FF;
    border: 1px solid #3cb371;
}

.button.success:hover {
    background-color: #4CAF50;
    color: #F0F8FF;
    border: 1px solid #4CAF50;
}

.button.hollow {
    border: 1px solid #FF8C00;
    color: #FF8C00;
    background-color: transparent;
}

.button.hollow:hover {
    background-color: #FF8C00;
    color: #0a1128;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

.age-modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.age-modal-content {
    background-color: #122C5C;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.age-modal-content h2 {
    color: #FF8C00;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.age-modal-content p {
    color: #F0F8FF;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-modal-actions .button {
    margin-bottom: 1rem;
}

/* Top 18+ Disclaimer Bar */
.top-disclaimer-bar {
    background-color: #FF8C00;
    color: #0a1128;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-disclaimer-bar p {
    margin: 0;
    color: #0a1128;
}

/* Header */
.header-main {
    background-color: #0a1128;
    padding: 1rem 0;
    border-bottom: 1px solid #122C5C;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-logo {
    display: flex;
    align-items: center;
    color: #F0F8FF;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-logo .logo-img {
    height: 40px;
    margin-right: 10px;
}

.site-logo .site-name {
    color: #F0F8FF;
}

.main-navigation .menu a {
    color: #F0F8FF;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: none;
}

.main-navigation .menu a:hover {
    color: #FF8C00;
    background-color: transparent;
}

/* Hero Block */
.hero-block {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-block .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-block .hero-content {
    position: relative;
    z-index: 2;
    color: #F0F8FF;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #F0F8FF;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

/* Offers Showcase Grid */
.offers-showcase-grid {
    padding: 2rem 0;
    background-color: #122C5C;
}

.offer-card {
    background-color: #0a1128;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.offer-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.offer-details h3 {
    color: #FF8C00;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.offer-details p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.star-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.license-info {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-license {
    color: #FF8C00;
}

.license-link {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bonus-info {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.offer-cta {
    width: auto;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* About AviswBgam Section */
.about-section {
    padding: 2rem 0;
    background-color: #0a1128;
}

.about-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    max-width: 80%;
    height: auto;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    padding: 2rem 0;
    background-color: #122C5C;
}

.responsible-gaming-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.responsible-gaming-image {
    max-width: 80%;
    height: auto;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Player Opinions Section */
.player-opinions-section {
    padding: 2rem 0;
    background-color: #0a1128;
}

.review-card {
    background-color: #122C5C;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid #FF8C00;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #F0F8FF;
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
}

.review-card .star-rating {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: #F0F8FF;
    flex-grow: 1;
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background-color: #122C5C;
}

.accordion-item {
    background-color: #0a1128;
    border: 1px solid #1a2a3a;
    margin-bottom: 10px;
    border-radius: 5px;
}

.accordion-title {
    color: #F0F8FF;
    font-weight: 600;
    padding: 1rem 1.5rem;
    display: block;
    position: relative;
    transition: none;
}

.accordion-title:hover {
    color: #FF8C00;
    background-color: #1a2a3a;
}

.accordion-title::after {
    content: "\F282"; /* Bootstrap chevron-down icon */
    font-family: "bootstrap-icons";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: none;
}

.accordion-item.is-active .accordion-title::after {
    content: "\F286"; /* Bootstrap chevron-up icon */
}

.accordion-content {
    padding: 1rem 1.5rem;
    background-color: #1a2a3a;
    border-top: 1px solid #122C5C;
    color: #F0F8FF;
}

.accordion-content p {
    margin-bottom: 0;
}

/* Important Disclaimer Block */
.important-disclaimer-block {
    background-color: #0a1128;
    padding: 2rem 0;
    border-top: 5px solid #FF8C00;
    border-bottom: 5px solid #FF8C00;
}

.disclaimer-content {
    background-color: #122C5C;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #FF8C00;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.disclaimer-icon {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-right: 1rem;
}

.disclaimer-title {
    color: #FF8C00;
    font-size: 2rem;
    margin: 0;
}

.disclaimer-content p {
    margin-bottom: 1rem;
    color: #F0F8FF;
}

.disclaimer-content h4 {
    color: #FF8C00;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.disclaimer-content ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.disclaimer-content ul li {
    margin-bottom: 0.5rem;
    color: #F0F8FF;
}

.disclaimer-content ul li a {
    color: #FF8C00;
}

/* Footer */
.footer-main {
    background-color: #0a1128;
    padding: 3rem 0;
    border-top: 1px solid #122C5C;
    color: #F0F8FF;
}

.footer-main .site-logo {
    margin-bottom: 1rem;
}

.footer-main .site-logo .logo-img {
    height: 35px;
}

.footer-main .site-logo .site-name {
    font-size: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
}

.footer-heading {
    color: #FF8C00;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #F0F8FF;
    transition: none;
}

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

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    flex-shrink: 0;
}

.footer-logo-img.18plus-icon {
    max-width: 50px;
    height: auto;
}

/* Cookie Consent Modal */
.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 9998;
    opacity: 1;
    visibility: visible;
    padding: 1rem;
}

.cookie-modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-modal-content {
    background-color: #122C5C;
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.cookie-modal-content h3 {
    color: #FF8C00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cookie-modal-content p {
    color: #F0F8FF;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.cookie-modal-content p a {
    color: #FF8C00;
    text-decoration: underline;
}

.cookie-categories {
    margin-bottom: 1rem;
}

.cookie-category-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cookie-category-item input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.cookie-category-item label {
    font-weight: 600;
    color: #F0F8FF;
    margin-bottom: 0;
    cursor: pointer;
}

.cookie-category-item p.cookie-desc {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

.cookie-modal-actions .button {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hide {
    display: none;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .hero-block {
        padding: 6rem 0;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
    }

    .offer-card {
        flex-direction: column;
        text-align: center;
    }

    .offer-image {
        margin-bottom: 1.5rem;
    }

    .offer-details {
        text-align: center;
    }

    .offer-cta {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-image, .responsible-gaming-image {
        max-width: 100%;
    }

    .review-card {
        padding: 1rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-date {
        font-size: 0.8rem;
    }

    .disclaimer-icon {
        font-size: 2rem;
    }

    .disclaimer-title {
        font-size: 1.5rem;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-main .site-logo {
        justify-content: center;
    }

    .responsible-gaming-logos {
        justify-content: center;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }

    .cookie-modal-actions .button {
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 3rem;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .offer-details h3 {
        font-size: 1.8rem;
    }

    .footer-logo-img {
        max-width: 100px;
    }
}
/* Styles for the main legal content container */
.legalFoldBox {
    padding-top: 30px; /* Top padding for the legal content box */
    padding-left: 25px; /* Left padding for the legal content box */
    padding-right: 25px; /* Right padding for the legal content box */
    /* Consider adding padding-bottom if needed, or let content dictate it */
}

/* Heading 1 styles within the legal content box */
.legalFoldBox h1 {
    font-size: 28px; /* Moderate font size for main headings */
    margin-top: 30px; /* Top margin for spacing above the heading */
    margin-bottom: 15px; /* Bottom margin for spacing below the heading */
    line-height: 1.2; /* Line height for better readability */
    font-weight: 600; /* Slightly bolder than default for emphasis */
}

/* Heading 2 styles within the legal content box */
.legalFoldBox h2 {
    font-size: 24px; /* Moderate font size for sub-headings */
    margin-top: 25px; /* Top margin for spacing above the heading */
    margin-bottom: 12px; /* Bottom margin for spacing below the heading */
    line-height: 1.25; /* Line height for better readability */
    font-weight: 600; /* Slightly bolder than default for emphasis */
}

/* Heading 3 styles within the legal content box */
.legalFoldBox h3 {
    font-size: 20px; /* Moderate font size for minor headings */
    margin-top: 20px; /* Top margin for spacing above the heading */
    margin-bottom: 10px; /* Bottom margin for spacing below the heading */
    line-height: 1.3; /* Line height for better readability */
    font-weight: 600; /* Slightly bolder than default for emphasis */
}

/* Heading 4 styles within the legal content box */
.legalFoldBox h4 {
    font-size: 18px; /* Moderate font size for sub-minor headings */
    margin-top: 18px; /* Top margin for spacing above the heading */
    margin-bottom: 8px; /* Bottom margin for spacing below the heading */
    line-height: 1.35; /* Line height for better readability */
    font-weight: 600; /* Slightly bolder than default for emphasis */
}

/* Heading 5 styles within the legal content box */
.legalFoldBox h5 {
    font-size: 16px; /* Standard body font size, but bold for heading distinction */
    margin-top: 16px; /* Top margin for spacing above the heading */
    margin-bottom: 6px; /* Bottom margin for spacing below the heading */
    line-height: 1.4; /* Line height for better readability */
    font-weight: 600; /* Bolder than default paragraph text */
}

/* Paragraph styles within the legal content box */
.legalFoldBox p {
    margin-bottom: 1em; /* Bottom margin for spacing between paragraphs */
    line-height: 1.6; /* Increased line height for improved readability of long text */
}

/* Unordered list styles within the legal content box */
.legalFoldBox ul {
    margin-top: 1em; /* Top margin for spacing above the list */
    margin-bottom: 1em; /* Bottom margin for spacing below the list */
    padding-left: 20px; /* Left padding for bullet points */
    list-style-type: disc; /* Default disc bullet style */
}

/* List item styles within the legal content box */
.legalFoldBox li {
    margin-bottom: 0.5em; /* Bottom margin for spacing between list items */
    line-height: 1.5; /* Line height for better readability within list items */
}
.player-opinions-section {
  padding: 60px 20px;
  background: #1f2937;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #4ade80;
  margin-bottom: 40px;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center; /* центрируем карточки */
}

.review-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  flex: 1 1 300px; /* минимальная ширина 300px, растягивается по необходимости */
  max-width: 350px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid #4ade80;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: bold;
  color: #111;
}

.review-date {
  font-size: 14px;
  color: #666;
}

.star-rating {
  color: #fbbf24;
  margin-bottom: 12px;
  font-size: 18px;
}

.review-text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* Адаптив для маленьких экранов */
@media (max-width: 768px) {
  .review-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
