body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.6;
}

:root {
    --primary-blue: #007bff;
    --secondary-red: #dc3545;
    --dark-bg: #212529;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --warning-subtle: #fff3cd;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.text-danger {
    color: var(--secondary-red) !important;
}

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

.bg-danger {
    background-color: var(--secondary-red) !important;
}

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

.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-secondary {
    background-color: #495057 !important;
}

.bg-warning-subtle {
    background-color: var(--warning-subtle) !important;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-danger {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
}

.btn {
    text-decoration: none !important;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 8rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-img {
    top: 0;
    left: 0;
    filter: brightness(0.4);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.6), rgba(220, 53, 69, 0.6));
    z-index: 0;
}

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

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

.hero-section p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.platform-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-card img {
    height: 200px;
    object-fit: contain;
    width: 100%;
}

@media (max-width: 767.98px) {
    .platform-card img {
        height: 150px;
    }
    .platform-card .col-md-4, .platform-card .col-md-8 {
        order: unset !important;
    }
    .platform-card .rounded-start, .platform-card .rounded-end {
        border-radius: var(--bs-border-radius) !important;
    }
}

.avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
}

.disclaimer-block {
    background-image: url('media/uploads/warning-pattern_2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--dark-bg);
}

.disclaimer-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85); 
    z-index: 0;
}

.disclaimer-block .container > div {
    position: relative;
    z-index: 1;
}

.responsible-gaming-logos img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    margin: 10px 15px;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
        min-height: 450px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .responsible-gaming-logos img {
        max-width: 100px;
        margin: 8px 10px;
    }
}
/* Parent container styling for overall layout */
.regShieldWrap {
    margin-top: 20px; /* Top margin for the wrapper */
    margin-left: 15px; /* Left margin for the wrapper */
    margin-right: 15px; /* Right margin for the wrapper */
    /* Consider adding max-width and auto margins for better readability on larger screens, e.g.: */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles - keeping font sizes moderate as requested */
.regShieldWrap h1 {
    font-size: 28px; /* Moderate size for H1 */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Line height for readability */
    margin-top: 1.5em; /* Top margin for separation */
    margin-bottom: 0.75em; /* Bottom margin for separation */
}

.regShieldWrap h2 {
    font-size: 24px; /* Moderate size for H2 */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
}

.regShieldWrap h3 {
    font-size: 20px; /* Moderate size for H3 */
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
}

.regShieldWrap h4 {
    font-size: 18px; /* Moderate size for H4 */
    font-weight: 700;
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}

.regShieldWrap h5 {
    font-size: 16px; /* Moderate size for H5 */
    font-weight: 700;
    line-height: 1.6;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
}

/* Paragraph styles */
.regShieldWrap p {
    font-size: 16px; /* Standard paragraph font size */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.regShieldWrap ul {
    list-style-type: disc; /* Standard bullet points */
    padding-left: 20px; /* Indentation for bullet points */
    margin-top: 1em; /* Top margin for the list */
    margin-bottom: 1em; /* Bottom margin for the list */
}

/* List item styles */
.regShieldWrap li {
    font-size: 16px; /* Standard list item font size */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 0.5em; /* Space between list items */
}

#contactForm input::placeholder, #contactForm textarea::placeholder{
    color: #fff;
}

.text-primary-link{
    color: var(--primary-blue);
    text-decoration: none;
}