@font-face {
    font-family: 'Russo One';
    src: url('../fonts/RussoOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*
@font-face {
  font-family: 'TerminaTest';
  src: url('../fonts/TerminaTest-Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  /* If you want the page to scroll (important for long policies!), set to 'auto' */
  overflow: auto;
  padding-top: 50px; /* Offset to avoid overlapping with the top bar */
  margin: 0px;
}

.background-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw; 
  height: auto; 
  transform: translate(-50%, -50%);
  z-index: -1; 
  opacity: 0.5;
}

@media (max-aspect-ratio: 16/9) {
  .background-video {
    width: auto; 
    height: 100vh; 
    opacity: 0.6;
  } 
}

.centered-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  position: relative;
  width: 100%;
  max-width: 1200px; /* Adjust to your preference */
  margin: 0 auto;
  padding: 20px;
  text-align: left;
}

.index-heading {
  font-family: 'TerminaTest', sans-serif;
  font-size: 3rem;
  color: white;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.8));
}

/* VIP Logo */
.vip-logo {
    width: 120px;            /* Adjust size */
    height: auto;            /* Maintain aspect ratio */
    cursor: pointer;         /* Pointer cursor on hover */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)); /* Glow effect */
    will-change: transform, filter; /* Improve rendering */
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth hover effect */
}

.vip-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)); /* Brighter glow */
}


/* Logo Container */
.logo-container {
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    padding: 20px 0;         /* Add spacing above and below */
}

@keyframes smooth-glow {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgb(205, 182, 132));
  }
  50% {
    filter: drop-shadow(0 0 60px rgb(255, 215, 160));
  }
}

.button-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.Discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #5865F2;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  transition: background-color 0.3s, box-shadow 0.3s;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 0 50px rgba(88, 101, 242, 0.8);
  margin-bottom: 20px;
}

.Discord-btn:hover {
  background-color: #4752c4;
  box-shadow: 0 0 20px rgba(88, 101, 242, 1); 
}

.discord-logo {
  position: absolute;
  left: -60px;
  top: 37%;
  transform: translateY(-50%);
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.8));
}

.youtube-link.desktop-only {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

.menu-button {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: 1100;
  cursor: pointer;
  opacity: 0.6;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 4px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
  opacity: 0.6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background: #333;
  border-radius: 8px;
  padding: 10px;
  z-index: 1100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.youtube-link.mobile-only {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-menu.active {
  display: block;
}

@media (max-width: 768px) {
  .centered-layout {
    justify-content: flex-start;
    padding-top: 60px;
  }
  .youtube-link.desktop-only {
    display: none;
  }
  .menu-button {
    display: block;
  }
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-button {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'TerminaTest', sans-serif;
  text-transform: uppercase;
  padding: 8px 15px;
  border: 2px solid white;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.nav-button:hover {
  background-color: white;
  color: black;
}

/* -----------------------------------------
   END: Provided CSS Snippet
----------------------------------------- */

/* 
  BEGIN: Additional styling for an "accordion" / collapsible sections 
*/
.privacy-container {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  width: 100%;
}

/* Collapsible section container */
.collapsible-section {
  margin-bottom: 10px;
}

/* The clickable header for each section */
.collapsible-header {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  font-size: 1.2rem;
  font-family: 'Russo One', sans-serif; 
  text-transform: uppercase;
  margin-bottom: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.collapsible-header:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.collapsible-header::after {
  content: '>'; /* Right-pointing triangle (play) */
  transition: transform 0.3s;
  margin-left: 10px;
}

.collapsible-header.active::after {
  transform: rotate(90deg); /* Rotate triangle to indicate expanded state */
}

/* Content that is hidden/shown on toggle */
.collapsible-content {
  max-height: 0; 
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  margin-bottom: 15px; 
}

/* When expanded, max-height is set dynamically with JS */
.collapsible-content p,
.collapsible-content ul,
.collapsible-content ol,
.collapsible-content li {
  margin-left: 0;
  margin-bottom: 15px;
  line-height: 1.5;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
  text-decoration: underline;
}

.section-subtitle + p,
.section-subtitle + ul {
  margin-left: 15px;
}

/* Footer Styles */
.site-footer {
    text-align: center;
    padding: 8px 20px;
    background: rgba(20, 20, 20, 0.8); /* Semi-transparent background */
    color: white;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    position: fixed; /* Fixes the footer to the bottom */
    bottom: 0; /* Ensures it stays at the very bottom */
    left: 0;
    width: 100%; /* Stretches across the width of the viewport */
    z-index: 100; /* Keeps it above other elements */
}

.site-footer p {
    margin: 0;
    font-family: 'Russo One', sans-serif; /* Matches theme font */
}

/* Footer Button Styles */
.footer-button {
    display: inline-block;
    margin: 0 2px;
    padding: 7px 12px;
    font-size: 0.85rem;
    font-family: 'Russo One', sans-serif;
    color: white;
    background: rgba(50, 50, 50, 0.8); /* Matches the theme */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    border-radius: 5px;
    text-decoration: none; /* Removes underline */
    transition: all 0.3s ease-in-out;
}

.footer-button:hover {
    background: rgba(80, 80, 80, 1); /* Slightly brighter background */
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05); /* Lift effect */
}

.footer-button:active {
    background: rgba(40, 40, 40, 1); /* Darker on click */
    transform: scale(0.95); /* Pressed effect */
}

.footer-button:visited {
    color: white; /* Prevent ugly purple visited state */
}

/* Prevent content overlap */
body {
    padding-bottom: 60px; /* Adjust to match footer height */
}

h1 {
    text-align: center;
}

/* 
  END: Additional styling for collapsible sections 
*/
