:root {
  --body-bg-color: #000000;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d8a;
  --link-color: #d9f5d3;
  --header-bg-color: #ffffff;
  --font-family: "Playfair Display", Serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #f5f5f5;
}
html {
  overflow-x: hidden;
}
body {
  background-image: url('/images/game-bg.webp');
  background-repeat: no-repeat;  
  background-size: cover;          
  background-position: center;       
  background-attachment: fixed;     
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--body-text-color) !important;
  position: relative; 
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 41, 38, 0.233); 
  z-index: -1;
}
@media (min-width: 900px) {
  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(206, 255, 234, 0.9) 1px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: moveParticlesFast 30s linear infinite, pulseParticles 2s ease-in-out infinite alternate;
  }
  @keyframes moveParticlesFast {
    0% { background-position: 0 0; }
    100% { background-position: 400px 400px; }
  }
  @keyframes pulseParticles {
    0% { opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { opacity: 0.2; }
  }
  body::before {
    z-index: -1;
  }
  body > * {
    position: relative;
    z-index: 1;
  }
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    font-weight: 700;
    color: #d6ffe8;
    text-align: center;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
    text-shadow: 
        0 0 10px rgba(180,255,200,0.6),
        0 0 20px rgba(140,255,200,0.5),
        0 0 35px rgba(100,255,180,0.4);
    animation: h1GlowPulse 6s ease-in-out infinite;
    z-index: 5;
}
h1::before {
    content: "";
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(circle at 20% 30%, rgba(180,255,200,0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(150,255,190,0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(255,255,255,0.15) 0%, transparent 45%);
    mix-blend-mode: screen;
    filter: blur(6px);
    opacity: 0.45;
    animation: h1ParticlesMove 22s linear infinite;
    z-index: -1;
}
h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(180,255,200,0.9),
        transparent
    );
    box-shadow: 0 0 15px rgba(180,255,200,0.7);
    animation: h1Beam 4s ease-in-out infinite;
    border-radius: 50px;
}
@keyframes h1GlowPulse {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(180,255,200,0.6),
            0 0 20px rgba(140,255,200,0.5),
            0 0 35px rgba(100,255,180,0.4);
        opacity: 1;
    }
    50% {
        text-shadow:
            0 0 18px rgba(180,255,200,0.9),
            0 0 28px rgba(140,255,200,0.9),
            0 0 55px rgba(100,255,180,0.75);
        opacity: 0.95;
    }
}
@keyframes h1ParticlesMove {
    0% { transform: translate(0,0); opacity: 0.45; }
    50% { transform: translate(-30px, -25px); opacity: 0.6; }
    100% { transform: translate(-60px, 15px); opacity: 0.35; }
}
@keyframes h1Beam {
    0%, 100% { width: 70%; opacity: 0.9; }
    50% { width: 85%; opacity: 1; }
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color) !important;
}
.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
  .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
  .twitter-tweet {
  width: 279px !important;
}
.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
    .footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}
.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}
 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero-section {
  padding: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.with-bg {
  background-image: url('/images/.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.418));
  opacity: 0.5;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
   .contact-container {
  width: 500px;
  margin: 100px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}
@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}
.contact-header i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}
.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}
.style-section {
    position: relative;
    padding: 40px 20px;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(180, 255, 200, 0.61);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.6);
    overflow: hidden;
}
.style-section::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -50px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(150,255,200,0.45), transparent 70%);
    filter: blur(8px);
    opacity: 0.85;
    z-index: 1;
    animation: auraDrift 16s ease-in-out infinite alternate;
}
.style-section::after {
    content: "";
    position: absolute;
    inset: -60px;
    background-image:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.25) 0, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(150,255,200,0.35) 0, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(255,255,255,0.18) 0, transparent 40%),
        radial-gradient(circle at 90% 35%, rgba(160,255,210,0.3) 0, transparent 55%);
    opacity: 0.45;
    mix-blend-mode: screen;
    animation: particleFloat 26s linear infinite;
    z-index: 1;
}
.style-section > * {
    position: relative;
    z-index: 10;
}
.style-section h2 {
    color: #caffea;
    font-size: 34px;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow:
        0 0 14px rgba(160,255,200,0.8),
        0 0 30px rgba(130,255,190,0.6);
    position: relative;
    padding-left: 48px;
}
.style-section h2::before {
    content: "✧";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 2rem;
    animation: floatH2 3.5s ease-in-out infinite;
}
.style-section h3 {
    color: #dbfff4;
    font-size: 24px;
    margin: 15px 0 10px;
    letter-spacing: 0.5px;
    text-shadow:
        0 0 12px rgba(140,255,190,0.8),
        0 0 20px rgba(110,255,180,0.6);
    position: relative;
    padding-left: 36px;
}
.style-section h3::before {
    content: "✧";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.6rem;
    animation: floatH3 3s ease-in-out infinite;
}
.style-section p {
    color: #eafff5;
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.96;
}
@keyframes auraDrift {
    0%   { transform: translate(0,0) scale(1); opacity: 0.6; }
    50%  { transform: translate(30px,35px) scale(1.25); opacity: 1; }
    100% { transform: translate(-20px,-15px) scale(1.1); opacity: 0.7; }
}
@keyframes particleFloat {
    0%   { transform: translate(0,0); opacity: 0.38; }
    50%  { transform: translate(-55px,-35px); opacity: 0.52; }
    100% { transform: translate(-120px,30px); opacity: 0.35; }
}
@keyframes floatH2 {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%     { transform: translateY(-6px) rotate(6deg); }
}
@keyframes floatH3 {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-4px); }
}
.newsletter {
    position: relative;
    margin-top: 30px;
    padding: 22px 20px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(180, 255, 200, 0.45);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}
.newsletter::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(180,255,200,0.5), transparent 70%);
    filter: blur(4px);
    opacity: 0.85;
    z-index: 1;
    animation: newsGlow 18s ease-in-out infinite alternate;
}
.newsletter::after {
    content: "";
    position: absolute;
    inset: -40px;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(170,255,190,0.4) 0, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0, transparent 40%);
    opacity: 0.4;
    mix-blend-mode: screen;
    z-index: 1;
    animation: newsParticles 26s linear infinite;
}
.newsletter > * {
    position: relative;
    z-index: 5;
}
.newsletter h3 {
    margin: 0 0 10px 0;
    padding-left: 30px;
    color: #c4ffe2;
    text-shadow:
        0 0 12px rgba(180,255,200,0.6),
        0 0 24px rgba(140,220,180,0.6);
    position: relative;
    letter-spacing: 1px;
}
.newsletter h3::before {
    content: "📬";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.4rem;
    animation: newsIconFloat 3.4s ease-in-out infinite;
}
.newsletter p {
    color: #e9fff5;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 14px;
}
.newsletter-input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(200,255,220,0.4);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    cursor: not-allowed;
    opacity: 0.8;
    filter: blur(0.3px);
}
.newsletter-btn {
    width: 100%;
    padding: 12px;
    background: rgba(180,255,200,0.3);
    border: 1px solid rgba(180,255,200,0.6);
    border-radius: 10px;
    color: #ddffe9;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(180,255,200,0.7);
    cursor: not-allowed;
    opacity: 0.75;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.newsletter-btn:hover {
    transform: translateY(-2px);
    opacity: 1;
}
@keyframes newsGlow {
    0%   { transform: translate(0,0) scale(1); opacity: 0.5; }
    50%  { transform: translate(-30px,20px) scale(1.2); opacity: 0.9; }
    100% { transform: translate(-60px,-10px) scale(1.05); opacity: 0.6; }
}
@keyframes newsParticles {
    0%   { transform: translate(0,0); opacity: 0.35; }
    50%  { transform: translate(-25px,-35px); opacity: 0.5; }
    100% { transform: translate(-50px,20px); opacity: 0.3; }
}
@keyframes newsIconFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-4px); }
}
.tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 25px;
    position: relative;
    margin-top: 35px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(180,255,200,0.45);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.6);
    overflow: hidden;
}
.tw-container::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle,
        rgba(180,255,200,0.6),
        transparent 70%
    );
    filter: blur(5px);
    opacity: 0.75;
    z-index: 1;
    animation: twGlow 18s ease-in-out infinite alternate;
}
.tw-container::after {
    content: "";
    position: absolute;
    inset: -40px;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(180,255,200,0.35) 0, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.18) 0, transparent 40%);
    mix-blend-mode: screen;
    opacity: 0.45;
    animation: twParticles 26s linear infinite;
    z-index: 1;
}
.tw-container > * {
    position: relative;
    z-index: 5;
}
@keyframes twGlow {
    0% { transform: translate(0,0) scale(1); opacity: 0.5; }
    50% { transform: translate(-25px,20px) scale(1.15); opacity: 0.9; }
    100% { transform: translate(-55px,-10px) scale(1.05); opacity: 0.6; }
}
@keyframes twParticles {
    0%   { transform: translate(0,0); opacity: 0.35; }
    50%  { transform: translate(-30px,-35px); opacity: 0.55; }
    100% { transform: translate(-60px,20px); opacity: 0.3; }
}
.section-wallets {
    position: relative;
    padding: 60px 30px;
    margin-top: 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)), url('/img/bingo-bg.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(180,255,200,0.25);
    box-shadow:
        0 0 25px rgba(0,255,180,0.3),
        0 0 50px rgba(0,255,180,0.1);
    overflow: hidden;
}
.section-wallets::before {
    content: "";
    position: absolute;
    inset: -40px;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(180,255,200,0.2) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(150,255,180,0.25) 0, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(255,255,255,0.15) 0, transparent 45%);
    mix-blend-mode: screen;
    filter: blur(6px);
    opacity: 0.45;
    animation: walletsParticles 25s linear infinite;
    z-index: 1;
}
.section-wallets > * {
    position: relative;
    z-index: 5;
}
.section-wallets h2 {
    color: #b9c2e7;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow:
        0 0 10px rgba(180,255,200,0.6),
        0 0 20px rgba(140,255,180,0.5);
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(180,255,200,0.9), rgba(255,255,255,0.7), rgba(180,255,200,0.9));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
    animation: underlineFlow 4s ease infinite;
}
.section-wallets h3 {
    background: rgba(180,255,200,0.12);
    border: 1px solid rgba(180,255,200,0.35);
    padding: 10px 18px;
    color: #ddfff0;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
    text-shadow: 0 0 8px rgba(180,255,200,0.5);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(180,255,200,0.2);
}
.section-wallets ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #e0fff2;
}
.section-wallets ul li::before {
    content: "✨";
    font-size: 1.4rem;
    color: #c4ffe2;
    text-shadow: 0 0 10px rgba(180,255,200,0.7);
    animation: liSparkle 2.8s ease-in-out infinite;
}
@keyframes walletsParticles {
    0%   { transform: translate(0,0); opacity: .35; }
    50%  { transform: translate(-30px,-40px); opacity: .55; }
    100% { transform: translate(-55px,25px); opacity: .3; }
}
@keyframes underlineFlow {
    0%,100% { opacity: 0.4; }
    50% { opacity: 1; }
}
@keyframes liSparkle {
    0%,100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(-3px); opacity: 1; }
}
@media (max-width: 768px) {
    .section-wallets {
        padding: 40px 20px;
    }
    .section-wallets h2 {
        font-size: 2rem;
    }
    .section-wallets h3 {
        font-size: 1.4rem;
    }
    .section-wallets ul li {
        font-size: 1rem;
    }
}
