body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    color: #006400;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4CAF50;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.1s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #4CAF50;
    color: #fff;
}

.btn-primary:hover {
    background-color: #388E3C;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #006400;
}

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

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
}

.age-restriction {
    font-size: 0.9rem;
    color: #006400;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.age-restriction i {
    font-size: 1.2rem;
    color: #006400;
}

.hero-section {
    position: relative;
    background-color: #e8f5e9;
    color: #333;
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: white;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.rating-list-section {
    padding: 80px 0;
    background-color: #fff;
}

.rating-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.rating-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.rating-card-image-link {
    display: block;
    margin-bottom: 20px;
}

.rating-card-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.1s ease;
}

.rating-card-image:hover {
    transform: scale(1.03);
}

.rating-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-card-title {
    font-size: 2.2rem;
    color: #006400;
    margin-bottom: 10px;
}

.rating-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}

.rating-score .score {
    color: #006400;
    font-size: 1.5rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.4rem;
}

.rating-description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.rating-bonus, .rating-license {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}

.rating-bonus h4, .rating-license h4 {
    color: #006400;
    margin-top: 0;
    margin-bottom: 10px;
}

.license-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

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

.payment-methods {
    margin-top: 20px;
    text-align: left;
}

.payment-methods h4 {
    color: #006400;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.payment-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.about-us-section {
    padding: 100px 0;
    background-color: #f0fdf0;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.about-us-content p {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
}

.about-us-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.editor-rating-section {
    padding: 80px 0;
    background-color: #fff;
}

.editor-review {
    background-color: #e8f5e9;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.editor-review .review-title {
    font-size: 2rem;
    color: #006400;
    margin-bottom: 25px;
    text-align: center;
}

.pros-cons-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.pros-list, .cons-list {
    flex: 1 1 45%;
    min-width: 300px;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pros-list h4, .cons-list h4 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-list h4 i {
    color: #4CAF50;
}

.cons-list h4 i {
    color: #D32F2F;
}

.pros-list ul, .cons-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li, .cons-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #333;
}

.verdict-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    text-align: center;
    background-color: #dcedc8;
    padding: 20px;
    border-radius: 10px;
}

.rating-criteria-section {
    padding: 80px 0;
    background-color: #f0fdf0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.criteria-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.criteria-icon {
    font-size: 3.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.criteria-title {
    font-size: 1.5rem;
    color: #006400;
    margin-bottom: 15px;
}

.criteria-description {
    font-size: 1rem;
    color: #555;
}

.user-reviews-section {
    padding: 80px 0;
    background-color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.review-author {
    font-size: 1.3rem;
    color: #006400;
    margin: 0;
}

.review-date {
    font-size: 0.9rem;
    color: #777;
    margin-left: auto;
}

.review-text {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
}

.report-abuse {
    color: #D32F2F;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: flex-end;
}

.report-abuse:hover {
    text-decoration: underline;
}

.contact-section {
    padding: 80px 0;
    background-color: #f0fdf0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #006400;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-hint {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    display: block;
}

.btn-submit {
    width: 100%;
    background-color: #4CAF50;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 25px;
}

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

.disclaimer-section {
    background-color: #dcedc8;
    padding: 60px 0;
    border-top: 5px solid #4CAF50;
    border-bottom: 5px solid #4CAF50;
    margin-top: 40px;
    margin-bottom: 40px;
}

.disclaimer-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.disclaimer-title {
    font-size: 2rem;
    color: #D32F2F;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.disclaimer-title i {
    font-size: 2.5rem;
}

.disclaimer-content p, .disclaimer-content li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
}

.disclaimer-content h4 {
    color: #006400;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.disclaimer-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.disclaimer-content ul li {
    margin-bottom: 8px;
}

.disclaimer-content a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.disclaimer-content a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #006400;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.footer-link {
    color: #e8f5e9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.1s ease;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contacts {
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-contact-item i {
    color: #fff;
    font-size: 1.2rem;
}

.footer-contact-item .contact-text {
    color: #e8f5e9;
    text-decoration: none;
}

.footer-contact-item .contact-text:hover {
    text-decoration: underline;
}

.footer-responsible-gaming {
    width: 100%;
    margin-bottom: 30px;
}

.footer-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.footer-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 150px;
    height: auto;
}

.footer-logo-item img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
}

.copyright {
    font-size: 0.9rem;
    color: #a5d6a7;
    margin-top: 20px;
}

.age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease, visibility 0.1s ease;
}

.age-verification-popup.show {
    opacity: 1;
    visibility: visible;
}

.age-verification-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-verification-header h3 {
    color: #006400;
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-verification-body p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.age-verification-body strong {
    color: #D32F2F;
}

.age-verification-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-age-yes, .btn-age-no {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.1s ease;
}

.btn-age-yes {
    background-color: #4CAF50;
    color: #fff;
}

.btn-age-yes:hover {
    background-color: #388E3C;
}

.btn-age-no {
    background-color: #D32F2F;
    color: #fff;
}

.btn-age-no:hover {
    background-color: #C62828;
}

.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 20px;
}

.cookie-consent-popup.show {
    display: flex;
}

.cookie-consent-header h3 {
    color: #006400;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cookie-consent-body p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.cookie-category {
    margin-bottom: 10px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    transform: scale(1.2);
    accent-color: #4CAF50;
}

.cookie-category-description {
    font-size: 0.85rem;
    color: #777;
}

.cookie-policy-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.cookie-settings-actions {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.btn-accept-all, .btn-decline, .btn-configure, .btn-save-selection {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.1s ease;
}

.btn-accept-all, .btn-save-selection {
    background-color: #4CAF50;
    color: #fff;
}

.btn-accept-all:hover, .btn-save-selection:hover {
    background-color: #388E3C;
}

.btn-decline {
    background-color: #F44336;
    color: #fff;
}

.btn-decline:hover {
    background-color: #D32F2F;
}

.btn-configure {
    background-color: #9E9E9E;
    color: #fff;
}

.btn-configure:hover {
    background-color: #757575;
}

@media (min-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
    }

    .rating-list-grid {
        grid-template-columns: 1fr;
    }

    .rating-card {
        flex-direction: row;
        text-align: left;
        padding: 40px;
    }

    .rating-card-image-link {
        margin-right: 30px;
        margin-bottom: 0;
    }

    .rating-card-content {
        align-items: flex-start;
    }

    .rating-score {
        justify-content: flex-start;
    }

    .payment-icons {
        justify-content: flex-start;
    }

    .about-us-content {
        flex-direction: row;
        text-align: left;
    }

    .about-us-content p {
        flex: 1;
        margin-right: 30px;
    }

    .about-us-image {
        max-width: 40%;
    }

    .editor-review .review-title {
        text-align: left;
    }

    .pros-cons-block {
        flex-wrap: nowrap;
    }

    .verdict-text {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .rating-card {
        padding: 20px;
    }

    .rating-card-title {
        font-size: 1.8rem;
    }

    .rating-bonus, .rating-license {
        padding: 10px;
    }

    .pros-list, .cons-list {
        min-width: unset;
        flex: 1 1 100%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .review-date {
        margin-left: 0;
        width: 100%;
        margin-top: 5px;
    }

    .footer-links, .footer-contacts {
        flex-direction: column;
        gap: 10px;
    }

    .footer-logo-grid {
        gap: 15px;
    }

    .footer-logo-item {
        max-width: 120px;
    }

    .age-verification-content, .cookie-consent-content {
        padding: 25px;
    }

    .age-verification-header h3 {
        font-size: 1.5rem;
    }

    .age-verification-body p {
        font-size: 1rem;
    }

    .btn-age-yes, .btn-age-no, .btn-accept-all, .btn-decline, .btn-configure, .btn-save-selection {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* Parent container styling */
.trustPillarUnit {
    padding: 30px 20px; /* Top/bottom and left/right padding for the main unit */
    /* You might want to add a max-width and margin: 0 auto; here for better content readability on very wide screens,
       but it's not explicitly requested for this snippet. */
}

/* Heading styles - keeping them moderate in size as requested */
.trustPillarUnit h1 {
    font-size: 1.8em; /* Approximately 28.8px if base is 16px */
    margin-top: 1.5em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
    line-height: 1.2; /* Line height for better readability */
    font-weight: bold; /* Standard bold weight for headings */
}

.trustPillarUnit h2 {
    font-size: 1.5em; /* Approximately 24px */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.2;
    font-weight: bold;
}

.trustPillarUnit h3 {
    font-size: 1.3em; /* Approximately 20.8px */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.2;
    font-weight: bold;
}

.trustPillarUnit h4 {
    font-size: 1.1em; /* Approximately 17.6px */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.2;
    font-weight: bold;
}

.trustPillarUnit h5 {
    font-size: 1em; /* Approximately 16px, similar to paragraph but bold */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.2;
    font-weight: bold;
}

/* Paragraph styles */
.trustPillarUnit p {
    font-size: 1em; /* Standard paragraph font size */
    line-height: 1.6; /* Improved readability for long text blocks */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.trustPillarUnit ul {
    list-style-type: disc; /* Default bullet style */
    padding-left: 25px; /* Indent for bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
}

/* List item styles */
.trustPillarUnit li {
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.5; /* Line height for list item text */
}
.games2-hpp7-rating-section-09cx {
    padding: 60px 20px;
    background-color: #f7f8fa;
}

.games2-hpp7-title-09cx {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
}

.games2-hpp7-grid-09cx {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.games2-hpp7-item-09cx {
    flex: 1 1 calc(33.333% - 30px);
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.games2-hpp7-item-09cx:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.games2-hpp7-icon-09cx {
    font-size: 40px;
    color: #388E3C;
    margin-bottom: 15px;
}

.games2-hpp7-item-title-09cx {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
}

.games2-hpp7-desc-09cx {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* 📱 Адаптив */
@media (max-width: 992px) {
    .games2-hpp7-item-09cx {
        flex: 1 1 calc(45% - 20px);
    }
}

@media (max-width: 600px) {
    .games2-hpp7-item-09cx {
        flex: 1 1 100%;
    }
}
.games2-hpp7-reviews-section-09cx {
    padding: 60px 20px;
    background-color: #f7f8fa;
}

.games2-hpp7-title-09cx {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
}

.games2-hpp7-reviews-grid-09cx {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.games2-hpp7-review-item-09cx {
    flex: 1 1 calc(33.333% - 30px);
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.games2-hpp7-review-item-09cx:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.games2-hpp7-review-header-09cx {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.games2-hpp7-avatar-09cx {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.games2-hpp7-author-09cx {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.games2-hpp7-date-09cx {
    font-size: 0.9rem;
    color: #777;
}

.games2-hpp7-text-09cx {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.games2-hpp7-report-09cx {
    font-size: 0.9rem;
    color: #388E3C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.games2-hpp7-report-09cx:hover {
    text-decoration: underline;
}

/* 📱 Адаптив */
@media (max-width: 992px) {
    .games2-hpp7-review-item-09cx {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .games2-hpp7-review-item-09cx {
        flex: 1 1 100%;
    }
}
.header-ny25 {
    background: #388E3C;
    color: white;
    font-family: Arial, sans-serif;
}

/* Верхняя полоса с предупреждением */
.header-age-topbar-ny25 {
    background: #388E3C;
    color: #dce3f0;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Контейнер */
.header-container-ny25 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0;
}

/* Логотип */
.header-logo-link-ny25 {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.header-logo-ny25 {
    height: 50px;
    margin-right: 10px;
}

.header-site-name-ny25 {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Меню */
.header-nav-ny25 {
    display: flex;
    gap: 25px;
}

.header-nav-link-ny25 {
    color: #dce3f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.header-nav-link-ny25:hover {
    color: #ffffff;
}

/* Адаптив */
@media (max-width: 768px) {
    .header-container-ny25 {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .header-nav-ny25 {
        margin-top: 8px;
    }

    .header-age-topbar-ny25 {
        font-size: 0.85rem;
        padding: 8px;
    }
}
@media (max-width:575px) {
    .header-nav-ny25{
        display: none;
    }
}