:root {
    --primary-purple: #6A0DAD;
    --secondary-blue: #007BFF;
    --dark-bg: #1a1a2e;
    --light-bg: #2e2e4a;
    --text-light: #f8f9fa;
    --text-muted-light: #ced4da;
    --accent-yellow: #ffc107;
    --danger-red: #dc3545;
    --success-green: #28a745;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-weight: 700;
}

a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-purple);
}

.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #7B1FA2;
    border-color: #7B1FA2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar {
    background-color: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-purple);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.header-top-bar {
    background-color: var(--primary-purple);
    color: var(--text-light);
    font-size: 0.85rem;
}

.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 400;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    color: var(--primary-purple);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.about-section {
    background-color: var(--dark-bg);
    color: var(--text-muted-light);
}

.about-section h2 {
    color: var(--text-light);
}

.icon-box {
    background-color: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.platforms-section {
    background-color: var(--light-bg);
    padding-bottom: 5rem;
}

.platform-card {
    background-color: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.platform-card .card-img-top {
    height: 180px;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    transition: transform 0.3s ease;
}

.platform-card .platform-image-link:hover .card-img-top {
    transform: scale(1.05);
}

.platform-card .card-body {
    color: var(--text-muted-light);
}

.platform-card .card-title {
    color: var(--text-light);
    font-size: 1.75rem;
}

.platform-card .rating i {
    color: var(--accent-yellow);
}

.platform-card .advantages-list li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.platform-card .advantages-list i {
    color: var(--success-green);
}

.payment-methods .payment-icon {
    height: 30px;
    width: auto;
    filter: brightness(0.8) contrast(1.2);
}

.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 0;
    color: var(--text-light);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.disclaimer-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
}

.disclaimer-box {
    background-color: #330033;
    border: 3px solid var(--danger-red);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.disclaimer-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(var(--danger-red), 0.1), transparent 50%, rgba(var(--danger-red), 0.1));
    z-index: 0;
    opacity: 0.3;
}

.disclaimer-box > * {
    position: relative;
    z-index: 1;
}

.disclaimer-box h3 {
    color: var(--danger-red);
}

.footer-section {
    background-color: #111122;
    color: var(--text-muted-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .section-title {
    color: var(--text-light);
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0.8);
}

.footer-logo-link:hover .footer-logo {
    filter: brightness(1);
}

.footer-links li a {
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: var(--primary-purple);
}

.partner-logos {
    gap: 1.5rem;
}

.footer-partner-logo {
    max-width: 120px;
    height: auto;
    display: block;
    object-fit: contain;
}

.18plus-icon {
    max-width: 60px;
    height: auto;
    filter: none;
}

.review-item {
    background-color: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: var(--text-light);
}

.review-item .lead {
    font-style: italic;
    font-size: 1.1rem;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(var(--primary-purple), 0.7);
    border-radius: 50%;
    padding: 1rem;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.cookie-banner {
    z-index: 1050;
    background-color: #1a1a2e !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner p {
    color: var(--text-muted-light);
}

.cookie-banner .btn {
    border-radius: 0.3rem;
}

.modal-content {
    background-color: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--text-light);
}

.modal-body p {
    color: var(--text-muted-light);
}

.modal-header .btn-close-white {
    filter: invert(1);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--light-bg);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-section {
        padding-top: 220px;
        min-height: 80vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

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

    .platform-card .card-img-top {
        height: 150px;
    }

    .disclaimer-box {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

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

    .cookie-banner .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner .btn {
        width: 100%;
    }

    .cookie-banner p {
        text-align: center;
    }
}
/* Styles for the main content wrapper */
.rightsCloudWrap {
    margin-top: 60px; /* Top margin for the wrapper */
    padding-left: 30px; /* Left padding for content inside the wrapper */
    padding-right: 30px; /* Right padding for content inside the wrapper */
    padding-bottom: 40px; /* Bottom padding for content inside the wrapper */
    /* Optional: You might want to add max-width and margin: 0 auto for centering */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles within .rightsCloudWrap */
.rightsCloudWrap h1 {
    font-size: 1.8em; /* Not excessively large, suitable for main titles */
    line-height: 1.2; /* Improved readability for headings */
    margin-top: 1.5em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
    font-weight: bold; /* Ensure it's bold */
}

.rightsCloudWrap h2 {
    font-size: 1.5em; /* Slightly smaller than h1 */
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: 0.7em;
    font-weight: bold;
}

.rightsCloudWrap h3 {
    font-size: 1.3em; /* Moderately sized heading */
    line-height: 1.4;
    margin-top: 1.1em;
    margin-bottom: 0.6em;
    font-weight: bold;
}

.rightsCloudWrap h4 {
    font-size: 1.1em; /* Smaller sub-heading */
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.rightsCloudWrap h5 {
    font-size: 1em; /* Smallest heading, often used for minor sections */
    line-height: 1.6;
    margin-top: 0.9em;
    margin-bottom: 0.4em;
    font-weight: 600; /* Slightly less bold than default 'bold' */
}

/* Paragraph styles within .rightsCloudWrap */
.rightsCloudWrap p {
    font-size: 1em; /* Standard body text size */
    line-height: 1.6; /* Good for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles within .rightsCloudWrap */
.rightsCloudWrap ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 2em; /* Indent for list markers */
}

/* List item styles within .rightsCloudWrap */
.rightsCloudWrap li {
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Ensure list items have good line height */
}


.dop-fz{
    font-size: 16px !important;
}