body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.bg-dark {
    background-color: #16213e !important;
}

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

.bg-primary {
    background-color: #e94560 !important;
}

.text-primary {
    color: #e94560 !important;
}

.text-success {
    color: #00cc66 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-info {
    color: #0dcaf0 !important;
}

.btn-primary {
    background-color: #e94560;
    border-color: #e94560;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

.btn-outline-primary {
    color: #e94560;
    border-color: #e94560;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: #e94560;
    color: #fff;
}

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

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

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas-header {
    background-color: #16213e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    color: #fff;
}

.offcanvas-body {
    background-color: #16213e;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

/* Responsive Typography for Headings */
.hero-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
}

.site-name {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    .site-name {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
    }
    .navbar-brand .site-logo {
        height: 30px;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    .section-title {
        font-size: clamp(2rem, 4.5vw, 2.2rem);
    }
    .site-name {
        font-size: clamp(1.5rem, 3.5vw, 1.8rem);
    }
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-image: url('photos/content/hero-background_267.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* Game Cards */
.game-card-wrapper {
    display: flex;
}

.game-card-wrapper .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card-wrapper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
}

.game-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.game-rating i {
    font-size: 1.1rem;
}

.play-game-btn {
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.game-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Achievements Section */
.achievement-card {
    background-color: #16213e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.achievement-locked {
    filter: grayscale(100%);
    opacity: 0.7;
}

.achievement-locked i {
    color: #6c757d !important; /* Muted color for locked icons */
}

.achievement-unlocked {
    filter: grayscale(0%);
    opacity: 1;
}

/* Daily Challenges */
.challenge-item {
    background-color: #16213e;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background-color: #e94560;
}

/* Testimonials */
.testimonial-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #e94560;
}

/* FAQ Section */
.accordion-button {
    border-radius: 0.25rem !important;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #e94560;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-item {
    border: none;
}

.accordion-body {
    background-color: #16213e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Form */
.form-control {
    background-color: #0f3460;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    background-color: #0f3460;
    color: #e0e0e0;
    border-color: #e94560;
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}

.form-label {
    color: #e0e0e0;
}

.invalid-feedback {
    color: #dc3545;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #f8d7da !important; /* Light red/pinkish background */
    color: #721c24 !important; /* Dark red text */
    border-top: 5px solid #dc3545;
    border-bottom: 5px solid #dc3545;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.disclaimer-block .bg-light {
    background-color: #fdf3f4 !important;
    border-color: #dc3545 !important;
}

.disclaimer-block h3 {
    color: #dc3545 !important;
    font-weight: 700;
}

/* Footer */
footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #101828 !important; /* Darker background for footer */
}

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

.site-name-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

.footer-logos-container {
    gap: 15px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px; /* Fixed width for logos */
    height: 40px; /* Adjust height as needed, object-fit will handle aspect ratio */
    overflow: hidden;
}

.footer-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none; /* Ensure no grayscale */
}

.footer-logo-text-18plus {
    font-size: 1.5rem;
    padding: 0 5px;
}

.top-disclaimer {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: #16213e !important;
    border: 1px solid #e94560;
}

#ageVerificationModal .modal-header, #ageVerificationModal .modal-footer {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

#ageVerificationModal .modal-title {
    color: #e94560;
    font-weight: 700;
}

/* Game Modal */
.game-modal .modal-dialog {
    margin: 0;
    max-width: 100vw;
    height: 100vh;
}

.game-modal .modal-content {
    background-color: rgba(0, 0, 0, 0.85) !important; /* Dark overlay */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-modal .modal-header {
    z-index: 1060; /* Ensure close button is always on top */
    position: relative;
    flex-shrink: 0;
}

.game-modal .modal-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.game-modal #gameIframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.modal-open .modal-backdrop.show {
    opacity: 0.85; /* Darker backdrop for game modal */
}

.modal-open {
    overflow: hidden; /* Prevent scrolling of content below modal */
}/* Styles for the main content block container */
.infoGuardBlock {
    margin-top: 2.5rem; /* Top margin for separation from content above */
    padding-left: 1.5rem; /* Left padding for content inside the block */
    padding-right: 1.5rem; /* Right padding for content inside the block */
    /* You might want to add max-width and margin: 0 auto for centering on larger screens,
       but it's not explicitly requested here. */
}

/* Heading 1 styles - moderate size */
.infoGuardBlock h1 {
    font-size: 2rem; /* Moderate font size, roughly 32px if base is 16px */
    line-height: 1.2; /* Tighter line height for headings */
    font-weight: 700; /* Bold font weight */
    margin-top: 2.5rem; /* Top margin for separation from previous content */
    margin-bottom: 1rem; /* Bottom margin before following paragraph/element */
}

/* Heading 2 styles - moderate size */
.infoGuardBlock h2 {
    font-size: 1.75rem; /* Moderate font size, roughly 28px */
    line-height: 1.25;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

/* Heading 3 styles - moderate size */
.infoGuardBlock h3 {
    font-size: 1.5rem; /* Moderate font size, roughly 24px */
    line-height: 1.3;
    font-weight: 600;
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
}

/* Heading 4 styles - moderate size */
.infoGuardBlock h4 {
    font-size: 1.25rem; /* Moderate font size, roughly 20px */
    line-height: 1.35;
    font-weight: 500; /* Slightly less bold than H1-H3 */
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

/* Heading 5 styles - moderate size, closer to paragraph text */
.infoGuardBlock h5 {
    font-size: 1.1rem; /* Moderate font size, roughly 17.6px */
    line-height: 1.4;
    font-weight: 500;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Paragraph styles */
.infoGuardBlock p {
    font-size: 1rem; /* Base font size, typically 16px */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered list styles */
.infoGuardBlock ul {
    list-style-type: disc; /* Default bullet points */
    margin-top: 1rem; /* Top margin for the list */
    margin-bottom: 1rem; /* Bottom margin for the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

/* List item styles */
.infoGuardBlock li {
    font-size: 1rem; /* Inherit or explicitly set to base font size */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between individual list items */
}


.game-ifr{
    width: 100%;
    height: 100vh;
}

.accordion-button::after{
    filter: invert(1);
}

.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    main{
        flex: 1;
    }
}