/* content/theme.css */

/* Global Styles & Variables */
:root {
    --primary-purple: #6A0DAD; /* Deep Purple */
    --secondary-red: #DC143C; /* Crimson */
    --accent-pink: #FF69B4;   /* Hot Pink */
    --white-color: #FFFFFF;
    --light-gray: #F8F8F8;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --border-color: #E0E0E0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --warning-background: #fff3cd; /* Light yellow for disclaimer */
    --warning-border: #ffeeba;
    --warning-text: #856404;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure all text is visible and readable */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-purple);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 2em;
    position: relative;
    padding-bottom: 0.5em;
    color: var(--primary-purple);
    font-weight: 700;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-decoration: none !important; /* Important: remove underline */
    transition: background-color 0s ease; /* No animation */
}

.btn-primary {
    background-color: var(--secondary-red);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #B20C2D; /* A darker red */
}

.btn-secondary {
    background-color: var(--primary-purple);
    color: var(--white-color);
    border: 1px solid var(--primary-purple);
}

.btn-secondary:hover {
    background-color: #4A087A; /* A darker purple */
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 6px;
}

/* Header */
.site-header {
    background-color: var(--primary-purple);
    color: var(--white-color);
    padding: 15px 0;
    box-shadow: var(--shadow-color) 0px 2px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-header .logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 40px; /* Adjust as needed */
    max-width: 180px;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav .nav-link {
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.05em;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
}

.main-nav .nav-link:hover {
    text-decoration: none;
    color: var(--accent-pink);
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-pink);
    transition: width 0s ease; /* No animation */
}

.main-nav .nav-link:hover::after {
    width: 100%;
}

.nav-email {
    color: var(--accent-pink) !important;
}

/* Hero Section */
.hero-section {
    background-image: url(photos/pics/irish-landscape.jpg);
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 13, 173, 0.7), rgba(255, 105, 180, 0.7)); /* Purple to Pink overlay */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4em;
    margin-bottom: 0.2em;
    color: var(--white-color);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .tagline {
    font-size: 1.8em;
    margin-bottom: 1em;
    color: var(--white-color);
    font-weight: 600;
}

.hero-section p {
    font-size: 1.2em;
    color: var(--white-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFD700; /* Gold color for stars */
    margin-bottom: 10px;
}

.rating-stars .material-symbols-outlined {
    font-size: 1.2em;
    color: #ccc; /* Default empty star color */
}

.rating-stars .material-symbols-outlined.filled {
    color: #FFD700; /* Gold for filled stars */
    font-variation-settings: 'FILL' 1; /* Fill the star icon */
}

.rating-stars .material-symbols-outlined.half-filled {
    color: #FFD700; /* Gold for half-filled stars */
    font-variation-settings: 'FILL' 0.5; /* Partially fill the star icon, if supported, otherwise it will be a regular star */
}

.rating-stars .rating-value {
    color: var(--dark-gray);
    font-weight: 600;
    margin-left: 5px;
}

.rating-stars.small-stars .material-symbols-outlined {
    font-size: 1em;
}

/* Rating List Section (Chessboard Pattern) */
.rating-list-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.rating-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background-color: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-color) 0px 5px 15px;
    padding: 30px;
}

.rating-item:last-child {
    margin-bottom: 0;
}

.rating-item .item-image {
    flex: 1;
    min-width: 300px;
    padding: 15px;
}

.rating-item .item-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    width: 100%;
    height: 250px; /* Fixed height for images */
}

.rating-item .item-content {
    flex: 2;
    padding: 15px;
}

.rating-item h3 {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.rating-item .item-description {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: var(--medium-gray);
}

.rating-item .item-features h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.rating-item .item-features ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.rating-item .item-features li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: var(--medium-gray);
}

.rating-item .item-features li .icon-small {
    font-size: 1.1em;
    margin-right: 8px;
    color: var(--secondary-red);
}

.rating-item .item-bonus {
    font-weight: 600;
    color: var(--secondary-red);
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Chessboard layout specific styles */
.rating-item.item-left {
    flex-direction: row;
}

.rating-item.item-right {
    flex-direction: row-reverse;
}

/* Comparison Table Section */
.comparison-table-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-color) 0px 5px 15px;
    min-width: 700px; /* Ensure table is not too narrow on smaller screens */
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th {
    background-color: var(--primary-purple);
    color: var(--white-color);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for sort icon */
}

.comparison-table thead th .sort-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tbody tr:hover {
    background-color: #f0f0f0;
}

.comparison-table td a {
    color: var(--primary-purple);
    font-weight: 600;
}

.comparison-table .feature-list {
    padding-left: 0;
    margin-bottom: 0;
}

.comparison-table .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: var(--medium-gray);
}

.comparison-table .feature-list li:last-child {
    margin-bottom: 0;
}

.comparison-table .feature-list li .icon-small {
    font-size: 1em;
    margin-right: 5px;
    color: var(--secondary-red);
}

/* User Reviews Section */
.user-reviews-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-item {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-color) 0px 3px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures footer is at bottom */
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent-pink);
}

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

.review-author {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.review-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 15px;
    flex-grow: 1; /* Allows text to take up available space */
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    color: var(--medium-gray);
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.report-link {
    color: var(--secondary-red);
    font-weight: 500;
    text-decoration: none;
}

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

.add-review-section {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-color) 0px 5px 15px;
    max-width: 700px;
    margin: 0 auto;
}

.add-review-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.review-form input[type="text"],
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white-color);
}

.review-form input[type="text"]::placeholder,
.review-form textarea::placeholder {
    color: #999;
}

.review-form textarea {
    resize: vertical;
    min-height: 100px;
}

.review-form button {
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: var(--warning-background);
    border: 1px solid var(--warning-border);
    padding: 40px 0;
    margin-top: 50px; /* Separate from previous section */
    color: var(--warning-text);
    text-align: center;
    box-shadow: var(--shadow-color) 0px -2px 10px;
}

.disclaimer-block .disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.disclaimer-block .warning-icon {
    font-size: 3em;
    color: var(--secondary-red);
    margin-bottom: 15px;
    display: block;
}

.disclaimer-block p {
    margin-bottom: 1em;
    font-size: 1em;
    line-height: 1.7;
}

.disclaimer-block strong {
    color: var(--secondary-red);
}

.disclaimer-block a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
}

.disclaimer-block a:hover {
    color: var(--secondary-red);
}

.disclaimer-block .support-links {
    margin-top: 20px;
    font-size: 0.95em;
}

/* Footer */
.site-footer {
    background-color: var(--dark-gray);
    color: var(--white-color);
    padding: 40px 0 20px;
    font-size: 0.9em;
    text-align: center;
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .logo-link {
    margin-bottom: 15px;
}

.site-footer .site-logo {
    height: 35px;
    max-width: 160px;
}

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

.site-footer .footer-links a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
}

.site-footer .footer-links a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .update-info {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.site-footer .request-review-btn {
    background-color: var(--accent-pink);
    color: var(--white-color);
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 6px;
}

.site-footer .request-review-btn:hover {
    background-color: #E04C99; /* A darker pink */
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.footer-logos img {
    max-width: 130px; /* Adjusted to 130px for 6 images to fit better */
    height: 70px;
    object-fit: contain;
    display: block;
}

.footer-logos .age-restriction-icon {
    max-width: 50px; /* Make 18+ icon smaller */
    filter: none; /* Ensure no grayscale */
}

.site-footer .copyright {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* Modal Overlay (for age verification and cookie config) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0s ease, visibility 0s ease; /* No animation */
}

.modal-overlay.show {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-color) 0px 10px 30px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(-20px); /* No animation, but initial state for 'show' */
    transition: transform 0s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    color: var(--primary-purple);
    font-size: 2em;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

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

/* Age Verification Specifics */
.age-verification-modal .btn {
    min-width: 120px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    background-color: var(--primary-purple);
    color: var(--white-color);
    padding: 10px 0;
    z-index: 1500;
    box-shadow: var(--shadow-color) 0px 2px 10px;
    display: none; /* Hidden by default, shown by JS */
    align-items: center;
}

.cookie-banner.show {
    display: flex;
}

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

.cookie-banner p {
    margin: 0;
    font-size: 0.95em;
    flex-grow: 1;
}

.cookie-banner p a {
    color: var(--accent-pink);
    text-decoration: underline;
}

.cookie-banner p a:hover {
    color: var(--white-color);
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-banner .btn {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 6px;
}

/* Cookie Configuration Modal */
.cookie-config-modal .cookie-categories {
    text-align: left;
    margin-bottom: 30px;
}

.cookie-config-modal .cookie-category-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-config-modal .cookie-category-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-config-modal input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    vertical-align: middle;
}

.cookie-config-modal label {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 1.1em;
    vertical-align: middle;
}

.cookie-config-modal .category-description {
    font-size: 0.9em;
    color: var(--medium-gray);
    margin-left: 30px;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }
    .main-nav {
        gap: 15px;
    }
    .hero-section h1 {
        font-size: 3.2em;
    }
    .hero-section .tagline {
        font-size: 1.5em;
    }
    .rating-item {
        flex-direction: column !important; /* Override chessboard for small screens */
        text-align: center;
    }
    .rating-item .item-image,
    .rating-item .item-content {
        padding: 15px 0;
        width: 100%;
    }
    .rating-item .item-image img {
        height: 200px; /* Adjust image height for mobile */
    }
    .rating-item .item-content h3 {
        margin-top: 15px;
    }
    .rating-item .item-features ul {
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .rating-stars {
        justify-content: center;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-item {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    .site-footer .footer-top,
    .site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .site-footer .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }
    .hero-section {
        padding: 80px 0;
        min-height: 400px;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section .tagline {
        font-size: 1.2em;
    }
    .main-nav {
        font-size: 0.9em;
    }
    .site-logo {
        height: 35px;
    }
    .modal-content {
        padding: 30px 20px;
    }
    .modal-content h2 {
        font-size: 1.8em;
    }
    .modal-content p {
        font-size: 1em;
    }
    .disclaimer-block {
        padding: 30px 0;
    }
    .disclaimer-block p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 10px 0;
    }
    .site-logo {
        height: 30px;
    }
    .main-nav {
        gap: 10px;
        font-size: 0.8em;
    }
    .hero-section h1 {
        font-size: 2em;
    }
    .hero-section .tagline {
        font-size: 1em;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .rating-item {
        padding: 20px;
    }
    .rating-item .item-image img {
        height: 150px;
    }
    .rating-item h3 {
        font-size: 1.5em;
    }
    .rating-item .item-bonus {
        font-size: 1em;
    }
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    .review-author {
        font-size: 1em;
    }
    .review-text {
        font-size: 0.95em;
    }
    .footer-logos img {
        max-width: 100px; /* Further reduce for very small screens */
    }
}/* New styles for .rightsCloudWrap and its children */

.rightsCloudWrap {
    padding-top: 60px; /* Top padding for the content wrapper */
    padding-bottom: 60px; /* Bottom padding for the content wrapper */
    padding-left: 20px; /* Left padding for the content wrapper */
    padding-right: 20px; /* Right padding for the content wrapper */
    max-width: 1160px; /* Maximum width for the content area */
    margin: 0 auto; /* Center the content wrapper horizontally */
    background-color: var(--white-color); /* White background for content block */
    border-radius: 12px; /* Slightly rounded corners */
    box-shadow: var(--shadow-color) 0px 5px 15px; /* Subtle shadow */
    margin-top: 40px; /* Space above the content block */
    margin-bottom: 40px; /* Space below the content block */
}

.rightsCloudWrap h1 {
    font-size: 2em; /* Heading 1 font size (approx. 32px) */
    margin-bottom: 0.8em; /* Bottom margin for heading 1 */
    line-height: 1.2; /* Line height for heading 1 */
    color: var(--dark-gray); /* Default dark color for headings */
    font-weight: 700; /* Bold font weight */
}

.rightsCloudWrap h2 {
    font-size: 1.75em; /* Heading 2 font size (approx. 28px) */
    margin-bottom: 0.7em; /* Bottom margin for heading 2 */
    line-height: 1.3; /* Line height for heading 2 */
    color: var(--dark-gray); /* Default dark color for headings */
    font-weight: 600; /* Semi-bold font weight */
}

.rightsCloudWrap h3 {
    font-size: 1.5em; /* Heading 3 font size (approx. 24px) */
    margin-bottom: 0.6em; /* Bottom margin for heading 3 */
    line-height: 1.4; /* Line height for heading 3 */
    color: var(--dark-gray); /* Default dark color for headings */
    font-weight: 600; /* Semi-bold font weight */
}

.rightsCloudWrap h4 {
    font-size: 1.25em; /* Heading 4 font size (approx. 20px) */
    margin-bottom: 0.5em; /* Bottom margin for heading 4 */
    line-height: 1.5; /* Line height for heading 4 */
    color: var(--dark-gray); /* Default dark color for headings */
    font-weight: 500; /* Medium font weight */
}

.rightsCloudWrap h5 {
    font-size: 1.1em; /* Heading 5 font size (approx. 17.6px) */
    margin-bottom: 0.4em; /* Bottom margin for heading 5 */
    line-height: 1.5; /* Line height for heading 5 */
    color: var(--dark-gray); /* Default dark color for headings */
    font-weight: 500; /* Medium font weight */
}

.rightsCloudWrap p {
    font-size: 1em; /* Paragraph font size (approx. 16px) */
    margin-bottom: 1em; /* Bottom margin for paragraphs */
    line-height: 1.6; /* Line height for paragraphs */
    color: var(--medium-gray); /* Default medium gray color for text */
}

.rightsCloudWrap ul {
    list-style: disc; /* Default disc list style */
    margin-left: 20px; /* Indentation for list items */
    margin-bottom: 1em; /* Bottom margin for unordered lists */
    padding-left: 0; /* No extra padding, margin-left handles indentation */
    color: var(--medium-gray); /* Default color for list items */
}

.rightsCloudWrap li {
    font-size: 1em; /* List item font size (approx. 16px) */
    margin-bottom: 0.5em; /* Bottom margin for list items */
    line-height: 1.6; /* Line height for list items */
    color: var(--medium-gray); /* Default color for list items */
}

/* Responsive adjustments for .rightsCloudWrap and its children */
@media (max-width: 768px) {
    .rightsCloudWrap {
        padding-top: 40px; /* Adjust top padding for smaller screens */
        padding-bottom: 40px; /* Adjust bottom padding for smaller screens */
        padding-left: 15px; /* Adjust side padding for smaller screens */
        padding-right: 15px; /* Adjust side padding for smaller screens */
        margin-top: 30px; /* Adjust top margin for smaller screens */
        margin-bottom: 30px; /* Adjust bottom margin for smaller screens */
    }

    .rightsCloudWrap h1 {
        font-size: 1.8em; /* Smaller H1 on mobile */
    }
    .rightsCloudWrap h2 {
        font-size: 1.5em; /* Smaller H2 on mobile */
    }
    .rightsCloudWrap h3 {
        font-size: 1.3em; /* Smaller H3 on mobile */
    }
    .rightsCloudWrap h4 {
        font-size: 1.1em; /* Smaller H4 on mobile */
    }
    .rightsCloudWrap h5 {
        font-size: 1em; /* Smaller H5 on mobile */
    }
    .rightsCloudWrap p,
    .rightsCloudWrap li {
        font-size: 0.95em; /* Slightly smaller text on mobile */
    }
    .rightsCloudWrap ul {
        margin-left: 15px; /* Adjust list indentation on mobile */
    }
}

@media (max-width: 480px) {
    .rightsCloudWrap {
        padding-top: 30px; /* Further adjust top padding for very small screens */
        padding-bottom: 30px; /* Further adjust bottom padding for very small screens */
        padding-left: 10px; /* Further adjust side padding for very small screens */
        padding-right: 10px; /* Further adjust side padding for very small screens */
        margin-top: 20px; /* Adjust top margin for very small screens */
        margin-bottom: 20px; /* Adjust bottom margin for very small screens */
    }

    .rightsCloudWrap h1 {
        font-size: 1.6em; /* Even smaller H1 on very small screens */
    }
    .rightsCloudWrap h2 {
        font-size: 1.4em; /* Even smaller H2 on very small screens */
    }
    .rightsCloudWrap h3 {
        font-size: 1.2em; /* Even smaller H3 on very small screens */
    }
    .rightsCloudWrap p,
    .rightsCloudWrap li {
        font-size: 0.9em; /* Even smaller text on very small screens */
    }
    .rightsCloudWrap ul {
        margin-left: 10px; /* Adjust list indentation for very small screens */
    }
}

.logo-link{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: clamp(18px, 4vw, 24px);
    color: #fff;
}

.header-content{
      display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.main-nav {
  display: flex;
  gap: 1rem;
}


@media (max-width: 991px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #4A087A;
    position: absolute;
    top: 60px; /* высота шапки */
    right: 0;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block !important;
    background: none;
    border: none;
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
  }

    .rating-item.item-right:nth-of-type(2){
        flex-direction: column-reverse !important;
    }
}

.menu-toggle {
  display: none;
}




 @media screen and (max-width: 768px) {
            .comparison-table {
                display: block;
                border: none;
                min-width: auto;
            }
            
            .comparison-table thead {
                display: none;
            }
            
            .comparison-table tbody,
            .comparison-table tr,
            .comparison-table td {
                display: block;
                width: 100%;
            }
            
            .comparison-table tr {
                margin-bottom: 20px;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
                background: white;
            }
            
            .comparison-table td {
                padding: 12px 15px;
                border-bottom: 1px solid #eaecef;
                position: relative;
                padding-left: 45%;
            }
            
            .comparison-table td:before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                font-weight: 600;
                color: #2c3e50;
                width: 40%;
            }
            
            .comparison-table td:last-child {
                border-bottom: none;
                text-align: center;
                padding-left: 15px;
            }
            
            .comparison-table td:last-child:before {
                display: none;
            }
            
            /* Специфические стили для мобильных данных */
            .comparison-table td[data-value] {
                padding-left: 15px;
            }
            
            .comparison-table td[data-value]:before {
                display: none;
            }
            
            .rating-stars {
                justify-content: center;
            }
            
            .feature-list li {
                margin-bottom: 5px;
            }
        }
        
        /* Дополнительные адаптивные стили для очень маленьких экранов */
        @media screen and (max-width: 480px) {
            .comparison-table td {
                padding-left: 40%;
            }
            
            .comparison-table td:before {
                width: 35%;
                font-size: 14px;
            }
            
            .btn-small {
                padding: 10px;
                display: block;
            }
        }
        
        /* Вспомогательные классы для иконок */
        .filled {
            font-variation-settings: 'FILL' 1;
        }
        
        .half-filled {
            position: relative;
            font-variation-settings: 'FILL' 0;
        }
        
        .half-filled:after {
            content: "star_half";
            position: absolute;
            left: 0;
            font-variation-settings: 'FILL' 1;
        }