:root {
    --primary-black: #000000;
    --secondary-dark: #1a1a1a;
    --accent-red: #E50914;
    --text-white: #FFFFFF;
    --text-light-gray: #CCCCCC;
    --text-muted-custom: #888888;
    --border-red: #E50914;
    --gradient-start: #E50914;
    --gradient-end: #FF5733;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    padding-top: 75px; 
}

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

p {
    color: var(--text-light-gray);
}

a {
    color: var(--accent-red);
    text-decoration: none;
}

a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.text-red-custom {
    color: var(--accent-red) !important;
}

.bg-dark-custom {
    background-color: var(--secondary-dark) !important;
}

.bg-black-custom {
    background-color: var(--primary-black) !important;
}

.bg-darker-custom {
    background-color: #0d0d0d !important;
}

.border-red-custom {
    border: 1px solid var(--border-red) !important;
}

.btn-primary-custom {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #CC0711;
    border-color: #CC0711;
    color: var(--text-white);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline-light-custom {
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.btn-outline-light-custom:hover {
    background-color: var(--text-white);
    color: var(--primary-black);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-success-custom {
    background-color: #28a745;
    border-color: #28a745;
    color: var(--text-white);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.btn-success-custom:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: var(--text-white);
    text-decoration: none;
}

.btn-danger-custom {
    background-color: #dc3545;
    border-color: #dc3545;
    color: var(--text-white);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.btn-danger-custom:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: var(--text-white);
    text-decoration: none;
}

.btn-secondary-custom {
    background-color: #6c757d;
    border-color: #6c757d;
    color: var(--text-white);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: var(--text-white);
    text-decoration: none;
}

.section-title-gradient {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.header-bg {
    background-color: var(--primary-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1030;
}

.site-title {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.8rem;
}

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

.nav-link {
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-red) !important;
    transform: translateY(-2px);
}

.navbar-toggler-icon i {
    font-size: 1.5rem;
}

.offcanvas-header {
    border-bottom: 1px solid var(--text-muted-custom);
}

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 75px; 
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-image-vector {
    max-height: 400px;
    width: auto;
}

.licence-img {
    height: 400px;
}

.platform-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.platform-card .card-img-link {
    display: block;
    height: 100%;
    padding: 20px;
}

.platform-card .card-image-full-height {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.platform-card .card-body {
    padding: 1.5rem;
}

.platform-card .list-unstyled li {
    margin-bottom: 0.5rem;
}

.payment-systems i {
    color: var(--text-light-gray);
    transition: color 0.3s ease;
}

.payment-systems i:hover {
    color: var(--text-white);
}

.comparison-table {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-red);
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: rgba(229, 9, 20, 0.3);
}

.comparison-table th {
    background-color: var(--accent-red);
    color: var(--text-white);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: rgba(229, 9, 20, 0.1) !important;
}

.review-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.avatar-small {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid var(--accent-red);
}

.btn-vote {
    background-color: var(--secondary-dark);
    border: 1px solid var(--text-muted-custom);
    color: var(--text-light-gray);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-vote:hover {
    transform: translateY(-1px);
}

.btn-vote.vote-up:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: var(--text-white);
}

.btn-vote.vote-down:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: var(--text-white);
}

.disclaimer-block {
    background-color: #121212;
    border-top: 5px solid var(--accent-red);
    padding: 3rem 0;
    margin-top: 3rem;
}

.disclaimer-block .disclaimer-links li a:hover {
    color: var(--accent-red) !important;
}

.footer-bg {
    background-color: var(--primary-black);
    border-top: 1px solid var(--text-muted-custom);
}

.footer-text {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-red) !important;
    text-decoration: none;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-18plus {
    max-width: 60px;
    height: auto;
    display: block;
}

.cookie-banner {
    background-color: var(--secondary-dark);
    color: var(--text-white);
    padding: 1rem 0;
    z-index: 1040;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.cookie-banner a {
    color: var(--accent-red);
}

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

.modal-content.age-modal-content {
    background-color: var(--secondary-dark);
    border: 1px solid var(--accent-red);
    border-radius: 15px;
}

.modal-content.age-modal-content .modal-header, .modal-content.age-modal-content .modal-footer {
    border: none;
}

.modal-content.age-modal-content .modal-title {
    color: var(--accent-red);
}

@media (max-width: 991.98px) {
    .header-disclaimer {
        display: none !important;
    }
    .site-title {
        font-size: 1.5rem;
    }
    .logo-img {
        height: 35px;
    }
    .hero-section {
        height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .hero-section .display-3 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .hero-image-vector {
        max-height: 300px;
    }
    .platform-card .row > div {
        width: 100%;
    }
    .platform-card .card-image-full-height {
        height: 200px;
        width: 100%;
        border-radius: 15px 15px 0 0 !important;
    }
    .platform-card .card-body {
        padding-top: 1rem;
    }
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 65px;
    }
    .hero-section {
        padding-top: 80px;
    }
    .hero-section .display-3 {
        font-size: 2rem;
    }
    .section-title-gradient {
        font-size: 2.2rem;
    }
    .platform-card .card-image-full-height {
        border-radius: 15px 15px 0 0 !important;
    }
    .footer-badges {
        justify-content: center;
    }
}
/*
 * Base styles for the .userClauseNet container
 * Provides general padding for the content area.
 */
.userClauseNet {
    padding: 30px 40px; /* Top/bottom padding, Left/right padding */
}

/*
 * Heading styles for h1 to h5
 * Font sizes are kept moderate as requested, with appropriate margins for separation.
 */
.userClauseNet h1 {
    font-size: 1.7em; /* Slightly smaller than typical h1, as requested */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-weight: bold;
}

.userClauseNet h2 {
    font-size: 1.4em;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.3;
    font-weight: bold;
}

.userClauseNet h3 {
    font-size: 1.2em;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    font-weight: bold;
}

.userClauseNet h4 {
    font-size: 1.1em;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.4;
    font-weight: bold;
}

.userClauseNet h5 {
    font-size: 1em; /* Standard text size, but bold for emphasis */
    margin-top: 1em;
    margin-bottom: 0.4em;
    line-height: 1.5;
    font-weight: bold;
}

/*
 * Paragraph styles
 * Provides bottom margin for separation between paragraphs.
 */
.userClauseNet p {
    margin-bottom: 1em;
    line-height: 1.6; /* Improved readability for body text */
}

/*
 * Unordered list styles
 * Adds padding for bullet points and vertical margins for separation.
 */
.userClauseNet ul {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 2em; /* Indentation for bullet points */
    list-style-type: disc; /* Default bullet style */
}

/*
 * List item styles
 * Adds bottom margin for spacing between list items.
 */
.userClauseNet li {
    margin-bottom: 0.5em;
    line-height: 1.5;
}

/* Removes bottom margin from the last list item to prevent excess space */
.userClauseNet li:last-child {
    margin-bottom: 0;
}
