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

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529;
}

/* Responsive Typography for Headers */
.display-3 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Mobile: ~2rem, Tablet: ~2.5rem, Desktop: ~3.5rem */
}

.display-5 {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Mobile: ~1.8rem, Tablet: ~2.2rem, Desktop: ~2.8rem */
}

.site-name {
    font-size: clamp(1.1rem, 3vw, 1.5rem); /* Mobile: ~1.1rem, Tablet: ~1.3rem, Desktop: ~1.5rem */
}

.logo-img {
    height: clamp(25px, 6vw, 40px);
    width: auto;
}

/* Top Disclaimer */
.top-disclaimer {
    z-index: 1060; /* Above navbar */
    position: relative;
}

/* Header */
.header {
    background-color: #1a1a2e; /* Dark blue/purple */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1050;
}

.navbar-brand .site-name {
    color: #fff;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

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

.offcanvas-body {
    background-color: #1a1a2e;
}

.offcanvas .nav-link {
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero-section {
    background-image: url('photos/media/social-gaming-background_2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
    color: #fff;
    padding: 100px 0;
}

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

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

.hero-section .lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section ul {
    padding-left: 0;
}

.hero-section ul li {
    font-size: 1.1rem;
    text-align: left;
}

.play-now-btn {
    background-color: #ff6b6b; /* Reddish-orange */
    border-color: #ff6b6b;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.play-now-btn:hover {
    background-color: #e65a5a;
    border-color: #e65a5a;
    transform: translateY(-3px);
}

/* General Section Styling */
section {
    padding: 80px 0;
}

/* Games Section */
.game-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.game-img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

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

.game-card .card-title {
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.play-game-btn {
    background-color: #4CAF50; /* Green */
    border-color: #4CAF50;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.play-game-btn:hover {
    background-color: #45a049;
    border-color: #45a049;
}

/* About Platform Section */
.bg-dark {
    background-color: #1a1a2e !important;
}

.bg-dark h2 {
    color: #fff;
}

.about-platform-img {
    border-radius: 15px;
}

/* Game Comparison Section */
.table-responsive {
    border-radius: 15px;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    border-bottom: none;
    padding: 1rem;
}

.table tbody tr td,
.table tbody tr th {
    padding: 1rem;
}

.table-dark {
    background-color: #1a1a2e;
    color: #fff;
}

/* How to Play Section */
.bg-primary {
    background-color: #6a1b9a !important; /* Deep Purple */
}

.how-to-card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.how-to-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.how-to-card i {
    color: #FFD700; /* Gold */
}

/* Testimonials Section */
.testimonial-card {
    border: none;
    border-radius: 15px;
    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.1) !important;
}

.avatar-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid #6a1b9a;
}

/* FAQ Section */
.accordion-item {
    background-color: #333; /* Darker grey for accordion */
    border: none;
    border-radius: 15px;
}

.accordion-button {
    background-color: #333;
    color: #fff;
    border-radius: 15px;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #444;
    color: #fff;
    box-shadow: none;
}

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

.accordion-body {
    background-color: #2c2c2c;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Contact Form Section */
.contact-form-section .form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

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

.contact-form-section .btn-primary {
    background-color: #6a1b9a;
    border-color: #6a1b9a;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form-section .btn-primary:hover {
    background-color: #5a158a;
    border-color: #5a158a;
}

/* Responsible Gaming Disclaimer */
.responsible-gaming-disclaimer {
    background-color: #3f51b5; /* Indigo */
    border-top: 5px solid #FFD700; /* Gold border */
    padding: 60px 0;
}

.responsible-gaming-disclaimer h3 {
    color: #FFD700;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.responsible-gaming-disclaimer p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.responsible-gaming-disclaimer a {
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #1a1a2e !important;
    color: rgba(255, 255, 255, 0.7);
}

.footer .navbar-brand .site-name {
    color: #fff;
}


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

.footer a:hover {
    color: #fff;
}

.footer-partners {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partner-logo {
    max-width: 120px;
    height: auto;
    margin: 0 10px;
    display: block; /* Ensures centering with flexbox */
}

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

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000; /* Highest z-index */
    display: none; /* Hidden by default */
    overflow: auto;
}

.age-verification-modal .modal-content {
    background-color: #212529 !important;
    border-radius: 15px;
    max-width: 500px;
    margin: auto;
    border: none;
}

.age-verification-modal h2 {
    color: #fff;
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1900; /* Below age verification, above cookie */
    display: none; /* Hidden by default */
    overflow: hidden;
}

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

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2000; /* Ensure close button is always on top */
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 0.75rem;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.game-modal-close:hover {
    background-color: #fff;
}

.game-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #000;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1040; /* Below navbar, above regular content */
    display: none; /* Hidden by default */
    border-top: 3px solid #6a1b9a;
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1080; /* Above cookie banner, below age verification and game modal */
    display: none; /* Hidden by default */
    overflow: auto;
    padding: 20px;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cookie-settings-content {
    position: relative;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 10px;
    z-index: 1046;
}

.form-check-label {
    font-weight: 600;
}

/* Utility classes for responsive buttons */
.btn {
    white-space: normal;
    word-break: break-word;
    text-align: center;
    text-decoration: none !important;
}

/* Mobile adaptations */
@media (max-width: 1199px) {
    .navbar-collapse {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
        padding: 80px 0;
    }

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

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

    .play-now-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .footer-partners .d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .footer-partner-logo, .footer-partner-logo-18plus {
        margin: 0 auto;
    }

    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner .btn {
        flex: 1;
    }

    .cookie-settings-content {
        margin: 20px auto;
    }
}
/* Styles for the main container of policy content */
.policyOrbitalShell {
    padding: 1.5rem; /* Padding on all sides for the container */
}

/* Styles for H1 heading */
.policyOrbitalShell h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-top: 2rem; /* Space above H1 */
    margin-bottom: 1rem; /* Space below H1 */
}

/* Styles for H2 heading */
.policyOrbitalShell h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    font-weight: bold;
    line-height: 1.2;
    margin-top: 1.8rem; /* Space above H2 */
    margin-bottom: 0.9rem; /* Space below H2 */
}

/* Styles for H3 heading */
.policyOrbitalShell h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    font-weight: bold;
    line-height: 1.3;
    margin-top: 1.5rem; /* Space above H3 */
    margin-bottom: 0.8rem; /* Space below H3 */
}

/* Styles for H4 heading */
.policyOrbitalShell h4 {
    font-size: 1.2rem; /* Moderate font size for H4 */
    font-weight: bold;
    line-height: 1.4;
    margin-top: 1.2rem; /* Space above H4 */
    margin-bottom: 0.7rem; /* Space below H4 */
}

/* Styles for H5 heading */
.policyOrbitalShell h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    font-weight: bold;
    line-height: 1.5;
    margin-top: 1rem; /* Space above H5 */
    margin-bottom: 0.6rem; /* Space below H5 */
}

/* Styles for paragraphs */
.policyOrbitalShell p {
    font-size: 1rem; /* Standard font size for paragraphs */
    line-height: 1.6; /* Improved readability for paragraphs */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Styles for unordered lists */
.policyOrbitalShell ul {
    list-style-type: disc; /* Default disc bullet */
    padding-left: 1.5em; /* Indent for list markers */
    margin-bottom: 1em; /* Space after the list */
    margin-top: 0.5em; /* Space before the list */
}

/* Styles for list items */
.policyOrbitalShell li {
    font-size: 1rem; /* Standard font size for list items */
    line-height: 1.5;
    margin-bottom: 0.5em; /* Space between list items */
}

/* Optional: Remove bottom margin from the last paragraph or list if it's the very last element in the shell */
.policyOrbitalShell p:last-child,
.policyOrbitalShell ul:last-child {
    margin-bottom: 0;
}

main{
    overflow: hidden !important;
}

header{
    background: #000;
}

.neo-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.neo-burger{
    display: none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  width:48px;
  height:48px;
  background:rgba(255,255,255,.15);
  border:2px solid rgba(255,255,255,.3);
  border-radius:12px;
  cursor:pointer;
  padding:0;
  z-index: 9999;
}

.neo-burger span{
  display:block !important;
  width:26px;
  height:3px;
  margin:4px 0;
  background:#ffffff !important;
  border-radius:2px;
}

.neo-burger-line{
  display:block;
  width:100%;
  height:3px;             
  margin:6px 0;
  background:#ffffff;      
  border-radius:3px;
  transition:background .2s, transform .3s;
}


.neo-burger{
  background:rgba(255,255,255,.08);
  border-radius:12px;
}


.neo-burger:hover .neo-burger-line{
  background:#3b82f6;      
}


/* Desktop menu */
.neo-menu-list{
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}

.neo-link{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
}
.neo-link:hover{ color:#fff; background:rgba(255,255,255,.08); }

/* Mobile */
@media (max-width: 991.98px){
  .neo-burger{ display:inline-flex; flex-direction:column; justify-content:center; }

  .neo-menu{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    z-index:1050;
  }

  .neo-menu.is-open{ display:block; }

  .neo-menu-list{
    position:absolute;
    top:0;
    right:0;
    height:100%;
    width:min(320px, 85vw);
    background:#111;
    padding:80px 18px 18px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .neo-link{ padding:12px 12px; }
}


.neo-brand {
    text-decoration: none;
}

.neo-brand span{
    color: #fff !important;
}