/* Global Styles */
* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: #e94560;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

a {
    color: #e94560;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fc7300;
}

.btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-primary {
    background-color: #e94560;
    border-color: #e94560;
    color: #fff;
}

.btn-primary:hover {
    background-color: #fc7300;
    border-color: #fc7300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #e94560;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #e94560;
    border-radius: 2px;
}

/* Background Gradients */
.bg-light-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #e0e0e0;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: #e0e0e0;
}

.bg-dark-footer {
    background: linear-gradient(135deg, #0a192f 0%, #0f3460 100%);
    color: #e0e0e0;
}

/* Top Bar */
.top-bar {
    background-color: #0a192f;
    color: #e94560;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1040; /* Above header */
}

/* Header */
.header {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1030;
    position: relative;
}

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

.header .navbar-brand .site-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #e94560;
    font-weight: 700;
}

.header .nav-link {
    color: #e0e0e0;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e94560;
    transition: width 0.3s ease;
}

.header .nav-link:hover::after,
.header .nav-link.active::after {
    width: 100%;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: #e94560;
}

.navbar-toggler {
    border-color: #e94560;
}

.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%28233, 69, 96, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: #0a192f;
    color: #e0e0e0;
}

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

.offcanvas .offcanvas-title {
    color: #e94560;
    font-family: 'Orbitron', sans-serif;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas .nav-link {
    padding: 10px 15px;
    color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.offcanvas .nav-link:hover {
    background-color: #0f3460;
    color: #e94560;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('assets/media/machines-on-symbols-neon-machine-slot-slot-illustration-gaming-vector.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 120px; /* Adjust for fixed header */
    padding-bottom: 60px;
    overflow: hidden;
}

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

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e94560;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.25rem;
    color: #f0f0f0;
}

.game-cards-stack {
    position: relative;
    width: 300px;
    height: 400px;
    perspective: 1000px;
}

.game-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.game-card.card-1 {
    transform: rotateY(15deg) rotateX(5deg) translateX(10px) translateY(10px) translateZ(0);
    z-index: 3;
}

.game-card.card-2 {
    transform: rotateY(-10deg) rotateX(-3deg) translateX(-10px) translateY(-5px) translateZ(10px);
    z-index: 2;
}

.game-card.card-3 {
    transform: rotateY(5deg) rotateX(8deg) translateX(0px) translateY(15px) translateZ(20px);
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #e94560;
    font-size: 2.5rem;
    animation: pulse 1.5s infinite ease-in-out;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.7; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Feature Cards (Block 1) */
.feature-card {
    background-color: #0f3460;
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card .icon-large {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 15px;
}

/* Games Showcase Section */
.game-card-item {
    background-color: #0f3460;
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.game-card-item .card-img-top {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover;
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
}

.game-card-item .card-body {
    padding: 20px;
    color: #e0e0e0;
}

.game-card-item .card-title {
    color: #e94560;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-card-item .card-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.game-card-item .game-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

/* Game Modal */
.modal-fullscreen .modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 0;
}

.modal-fullscreen .modal-header {
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1060;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-fullscreen .modal-title {
    color: #e94560;
    font-family: 'Orbitron', sans-serif;
}

.modal-fullscreen .btn-close {
    filter: invert(1);
    opacity: 1;
    font-size: 1.5rem;
}

.modal-fullscreen .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Space for header */
}

.modal-fullscreen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Section (Block 3) */
.about-points {
    padding-left: 0;
    list-style: none;
}

.about-points li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-points li i {
    color: #e94560;
    font-size: 1.2rem;
}

/* Testimonials Section (Block 4) */
.testimonial-card {
    background-color: #0f3460;
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.testimonial-card h5 {
    color: #e94560;
    font-family: 'Poppins', sans-serif; /* Keep names readable */
}

.testimonial-card small {
    color: #b0b0b0;
}

/* FAQ Section (Block 5) */
.accordion-item {
    background-color: #0f3460;
    border: 1px solid rgba(233, 69, 96, 0.3);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #0f3460;
    color: #e94560;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 20px;
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #1a1a2e;
    color: #fc7300;
}

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

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(290deg) brightness(1.2);
}

.accordion-body {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px;
    border-top: 1px solid rgba(233, 69, 96, 0.1);
}

/* Contact Form (Block 6) */
.contact-form {
    background-color: #0f3460;
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: #e0e0e0;
}

.contact-form .form-label {
    color: #e0e0e0;
    font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    background-color: #1a1a2e;
    border-color: #0f3460;
    color: #e0e0e0;
}

.contact-form .form-control::placeholder {
    color: #b0b0b0;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}

.contact-form .invalid-feedback {
    color: #ff6b6b;
}

/* Responsible Gaming Disclaimer */
.responsible-gaming-disclaimer {
    background: linear-gradient(135deg, #e94560 0%, #fc7300 100%);
    color: #fff;
    padding: 60px 0;
}

.disclaimer-content {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #fff;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-icon {
    font-size: 4rem;
    color: #fff;
}

.responsible-gaming-disclaimer h3 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
}

.responsible-gaming-disclaimer p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.responsible-gaming-disclaimer a {
    color: #fff;
    font-weight: 700;
}

.responsible-gaming-disclaimer a:hover {
    color: #f0f0f0;
}

/* Cookie Banner */
.cookie-banner {
    background-color: #0a192f;
    color: #e0e0e0;
    padding: 15px 0;
    z-index: 1045; /* Above other content, below age modal */
    display: none; /* Hidden by default, shown by JS */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner a {
    color: #e94560;
}

.cookie-banner a:hover {
    color: #fc7300;
}

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

/* Cookie Config Modal */
#cookieConfigModal .modal-content {
    background-color: #1a1a2e;
    color: #e0e0e0;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

#cookieConfigModal .modal-header {
    border-bottom-color: rgba(233, 69, 96, 0.2);
}

#cookieConfigModal .modal-title {
    color: #e94560;
}

#cookieConfigModal .btn-close {
    filter: invert(1);
}

#cookieConfigModal .form-check-label {
    color: #e0e0e0;
}

#cookieConfigModal .form-check-input:checked {
    background-color: #e94560;
    border-color: #e94560;
}

#cookieConfigModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}

/* Footer */
.footer {
    padding-top: 50px;
    padding-bottom: 30px;
}

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

.footer .footer-brand .site-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #e94560;
    font-weight: 700;
}

.footer .footer-text {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.footer h5 {
    color: #e94560;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
}

.footer ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #e94560;
}

.footer .newsletter-form .form-control {
    background-color: #1a1a2e;
    border-color: #0f3460;
    color: #e0e0e0;
}

.footer .newsletter-form .form-control::placeholder {
    color: #b0b0b0;
}

.footer .newsletter-form .btn-primary {
    background-color: #e94560;
    border-color: #e94560;
}

.footer .newsletter-form .btn-primary:hover {
    background-color: #fc7300;
    border-color: #fc7300;
}

.community-messages-slider {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(233, 69, 96, 0.1);
    border-radius: 8px;
    padding: 10px 20px;
    text-align: center;
    font-style: italic;
    color: #e94560;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

.community-message {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.community-message.active {
    opacity: 1;
}

.footer-logos {
    margin-top: 30px;
}

.footer-logo {
    height: auto;
    max-width: 120px;
    width: 100%;
    object-fit: contain;
    margin: 10px;
}

.footer-logo-18plus {
    max-width: 60px;
}

/* Age Verification Pop-up */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verification-content {
    background-color: #0f3460;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #e0e0e0;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
    border: 2px solid #e94560;
}

.age-verification-content h2 {
    color: #e94560;
    margin-bottom: 15px;
    font-size: 2rem;
}

.age-verification-content h3 {
    color: #fc7300;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.age-verification-buttons button {
    margin: 0 10px;
    min-width: 120px;
}

/* Responsive Typography */
@media (max-width: 1200px) {
    .header .navbar-brand .site-name {
        font-size: 1.6rem;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1100px) {
    .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .navbar-nav::-webkit-scrollbar {
        display: none;
    }
    .navbar-nav {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .header .navbar-brand .site-name {
        font-size: 1.5rem;
    }
    .hero-section h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .header .navbar-brand .site-name {
        font-size: 1.4rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .hero-section .hero-cta-buttons .btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    .game-cards-stack {
        width: 250px;
        height: 350px;
    }
    .hero-section {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .top-bar p {
        font-size: 0.8rem;
    }
    .header .navbar-brand .logo-img {
        height: 35px;
    }
    .header .navbar-brand .site-name {
        font-size: 1.25rem;
    }
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .hero-section p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .hero-section .col-md-6 {
        text-align: center !important;
    }
    .game-cards-stack {
        width: 200px;
        height: 280px;
        margin-top: 30px;
    }
    .scroll-indicator {
        font-size: 2rem;
        bottom: 15px;
    }
    .section-title {
        font-size: 2rem;
    }
    .game-card-item .card-title {
        font-size: 1.3rem;
    }
    .game-card-item .card-img-top {
        height: 180px;
    }
    .testimonial-card h5 {
        font-size: 1.1rem;
    }
    .testimonial-card p {
        font-size: 0.9rem;
    }
    .accordion-button {
        font-size: 1rem;
    }
    .responsible-gaming-disclaimer h3 {
        font-size: 1.5rem;
    }
    .responsible-gaming-disclaimer p {
        font-size: 0.95rem;
    }
    .footer .footer-brand .site-name {
        font-size: 1.25rem;
    }
    .footer h5 {
        font-size: 1.1rem;
    }
    .footer-logo {
        max-width: 100px;
    }
    .footer-logo-18plus {
        max-width: 50px;
    }
    .age-verification-content h2 {
        font-size: 1.5rem;
    }
    .age-verification-content h3 {
        font-size: 1.2rem;
    }
    .age-verification-buttons button {
        min-width: 100px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner p {
        margin-bottom: 10px !important;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        flex-grow: 1;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .hero-section .hero-cta-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
    .game-cards-stack {
        width: 180px;
        height: 250px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .game-card-item .card-img-top {
        height: 160px;
    }
    .footer-logos {
        gap: 15px;
    }
    .footer-logo {
        max-width: 90px;
    }
    .footer-logo-18plus {
        max-width: 45px;
    }
}
/* Parent container styling for top and side padding */
.termsCaveBox {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Heading 1 styles (not too large) */
.termsCaveBox h1 {
    font-size: 1.8em; /* Example: ~28.8px if base font is 16px */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

/* Heading 2 styles */
.termsCaveBox h2 {
    font-size: 1.5em; /* Example: ~24px */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.3;
}

/* Heading 3 styles */
.termsCaveBox h3 {
    font-size: 1.25em; /* Example: ~20px */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.4;
}

/* Heading 4 styles */
.termsCaveBox h4 {
    font-size: 1.1em; /* Example: ~17.6px */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.5;
}

/* Heading 5 styles */
.termsCaveBox h5 {
    font-size: 1em; /* Example: ~16px (often base font size) */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.6;
}

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

/* Unordered list styles */
.termsCaveBox ul {
    list-style-type: disc; /* Default bullet points */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px; /* Indent for bullet points */
}

/* List item styles */
.termsCaveBox li {
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Ensure readability for list content */
}



/* --- BURGER --- */
.burger {
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    height: 3px;
    background: #fff;
    width: 100%;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -260px;        
    width: 260px;
    max-width: 100vw;
    height: 100vh;
    background: #000;
    padding: 20px;
    transition: right 0.35s ease;
    z-index: 9999;
}

.mobile-menu.open {
    right: 0;            
}


.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

@media (min-width: 992px) {
    .mobile-menu,
    .burger {
        display: none;
    }
}


main{
    overflow: hidden !important;
}

html,
body {
    overflow-x: hidden !important;
}


@media (max-width: 991px) {
    .des-nav{
        display: none !important;
    }
}

.des-nav{
    display: flex;
    gap: 20px;
    margin: 0;
}

.des-nav li {
    list-style: none;
}