html {
    background-color: black;
    background-image: url(virtual%20reality%20computer%20GIF.gif);

}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinning-logo {
    width: 150px;
    height: 150px;
    /* The spinning effect comes from your GIF itself */
}

.loading-text {
    margin-top: 20px;
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
}

.dots {
    display: inline-block;
    width: 24px;
}

.loading-bar {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: none; /* Rectangular shape */
    margin-top: 15px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background-color: white;
    border-radius: none;
    transition: width 2s ease-in-out;
}

/* Updated scrolling banner */
.scrolling-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 12px 0;
    font-family: 'Press Start 2P', cursive;
    z-index: 1000;
    font-size: 14px;
    transform: translateZ(0); /* Force hardware acceleration */
}

.scrolling-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    will-change: transform; /* Hint to browser about animation */
    transform: translateZ(0); /* Force hardware acceleration */
}

.scrolling-content span {
    display: inline-block;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Will be dynamically updated via JS */
    }
}

/* Initially hide main content but keep it loaded */
#main-content {
    display: none;
}

@media screen and (max-width: 768px) {
  /* Container for centering */
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* Unified input/textarea styles */
  input[type="email"],
  input[type="text"],
  textarea {
    /* Sizing */
    width: 90% !important;          /* Slightly less than full width */
    min-height: 44px !important;    /* Standard tap target height */
    padding: 12px 14px !important;  /* Balanced padding */
    
    /* Typography */
    font-size: 16px !important;     /* Prevents zoom + readable */
    line-height: 1.5 !important;
    
    /* Visuals */
    margin: 8px auto !important;    /* Centered with spacing */
    border: 1px solid dimgray !important;
    background: #111;
    color: white;
    border-radius: 4px;
    display: block;                 /* Ensures centering works */
  }

  /* Make Send button match other text */
  .modal-button {
    font-size: 16px !important;      /* Same as inputs */
    padding: 14px 20px !important;   /* Comfortable tap target */
    line-height: 1.6 !important;     /* Matching vertical spacing */
  }

  /* Optional: Visual consistency */
  .modal-button:hover {
    font-size: 16px !important;      /* Prevents text resize on hover */
  }
    
    
  /* Textarea-specific */
  textarea {
    min-height: 120px !important;   /* Taller for messages */
    font-size: 16px !important;     /* Same as inputs */
  }

  /* Focus states */
  input:focus,
  textarea:focus {
    outline: 2px solid white !important;
    box-shadow: none !important;    /* Remove if previously set */
  }
}

/* Apply Monster cursor everywhere */
html, body, a, button {
  cursor: url('cursor.cur'), auto !important;
}

a {
  color: #7cff7c; /* Your light green color */
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 0 currentColor; /* Prep for glow */
  
  /* Optional: Add subtle always-on glow */
  /* text-shadow: 0 0 5px rgba(124, 255, 124, 0.3); */
}

a:hover {
  color: white !important; /* Force white on hover */
  text-shadow: 0 0 8px #7cff7c, 
               0 0 16px #7cff7c,
               0 0 24px #7cff7c;
  
  /* Optional: Animated pulse effect */
  animation: link-pulse 1.5s infinite alternate;
}

body { 
    padding-top: 50px; 
}

@media (min-width: 768px) {
    body {
    padding-left : 170px;
    padding-right : 170px;
}
}

/* Mobile */
@media (max-width: 768px) {
  .scrolling-banner { 
    font-size: 10px;
    padding: 8px 0;
  }
  body { padding-top: 36px; }
  .scrolling-content { 
    animation-duration: 10s; /* Even faster on mobile */
  }
}

#pagefront {
    background-color : black;
    border:groove;
    border-color : dimgray;
}

a {
    color:#09db09
    
}


#subtitle {
    color: white;
    text-align: center;
    padding: auto;
    border: solid 0.5px;
    font-family: Arial, Helvetica, sans-serif;
    
}

#logo {
    text-align: center;
    max-width: 466.5;
    margin: 0 auto;
    border:groove;
    border-color : dimgray;
}

#logo img {
    max-width: 100%; 
    height: auto;
}

#shortbio {
    color : white;
    text-align : center;
    border:groove;
    border-color : dimgray;
    padding:10px;
    

}

#socials_divider {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid dimgray;
    width: 50%; /* Adjust this value to control the length of the line */
    margin: 0.5em  auto; /* Centers the line horizontally */
    padding: 0; /* Reset padding to 0 */
}

#linkssection {
     border:groove;
    border-color : dimgray;
}

#linkstitle {
    color : white;
    border-bottom:outset 2px;
    border-color : dimgray;
     display:grid;
    grid-template-columns: auto auto auto; /* Three columns: left GIF, header, right GIF */
    align-items:center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    gap: 7px; /* Adds space between the GIFs and the header text */
}

.gif-left, .gif-right {
    width: auto; /* Adjust the width of the GIFs */
    height: auto; /* Maintains aspect ratio */
    
}
#links a {
    display: inline-flex;
    align-items: center;
    margin: -2vh;
  
    
}

#links a img {
    transform: scale(0.4);
    padding-left: -2vh;
}
    
/* ===== CONTACT MODAL ===== */
#contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#contact-modal.modal-visible {
  opacity: 1;
  visibility: visible;
}

#contact-modal .modal-content {
  background: #000;
  border: 2px groove dimgray;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  position: relative;
}

#contact-modal.modal-visible .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-title {
  color: white;
  font-family: "Times New Roman", serif;
  margin: 0 0 25px 0;
  padding-bottom: 10px;
  border-bottom: 1px groove dimgray;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 85%;
  padding: 12px;
  background: transparent;
  border: 1px groove dimgray;
  color: white;
  font-family: "Times New Roman", serif;
  text-align: center;
  margin: 0 auto;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.modal-button {
  background: black;
  color: white;
  border: 1px solid dimgray;
  padding: 12px 35px;
  margin-top: 10px;
  font-family: "Times New Roman", serif;
  cursor: pointer;
  transition: all 0.3s;
}

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: dimgray;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #09db09;
}
#links {
    text-align : center;
    
}

#video-container {
  display: none; /* Hide the container initially */
  text-align: center; /* Center the video horizontally */
  margin-top: 20px;
}

#video-container iframe {
  width: 80%; /* Make the video responsive */
  max-width: 800px; /* Set a maximum width */
  height: auto; /* Maintain aspect ratio */
  aspect-ratio: 16 / 9; /* Standard YouTube video aspect ratio */
}

/* FIXED VIDEO CONTAINER STYLES - IMPORTANT OVERRIDES */
#teaser {
    width: 100% !important;
    max-width: 100% !important; /* Full width on mobile */
    margin: 15px auto !important;
    position: relative !important;
    
    /* Cyberpunk glow effect */
    border: 2px solid #09db09 !important;
    box-shadow: 
        0 0 20px rgba(9, 219, 9, 0.6),
        0 0 40px rgba(9, 219, 9, 0.3),
        inset 0 0 20px rgba(9, 219, 9, 0.1) !important;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(9, 219, 9, 0.05) 50%, transparent 70%),
        #000 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    animation: pulse-glow 3s ease-in-out infinite alternate !important;
    
    /* Maintain 16:9 aspect ratio */
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
}

/* Tablet styles */
@media (min-width: 768px) {
    #teaser {
        max-width: 80%; /* Bigger on tablets */
    }
}

/* Desktop styles - much bigger! */
@media (min-width: 1024px) {
    #teaser {
        max-width: 52% !important; /* Much bigger on desktop */
    }
}

/* Large desktop styles */
@media (min-width: 1440px) {
    #teaser {
        max-width: 55% !important; /* Even bigger on large screens */
    }
}

/* Enhanced glow animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 
            0 0 15px rgba(9, 219, 9, 0.4),
            0 0 30px rgba(9, 219, 9, 0.2),
            inset 0 0 15px rgba(9, 219, 9, 0.1);
        border-color: #09db09;
    }
    100% {
        box-shadow: 
            0 0 25px rgba(9, 219, 9, 0.8),
            0 0 50px rgba(9, 219, 9, 0.4),
            0 0 80px rgba(9, 219, 9, 0.2),
            inset 0 0 25px rgba(9, 219, 9, 0.15);
        border-color: #0fff0f;
    }
}

/* Video iframe styles */
#teaser iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(1.1) contrast(1.1) saturate(1.1) !important;
}

/* Add some extra cyberpunk flair */
#teaser::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(9, 219, 9, 0.1), 
        transparent, 
        rgba(9, 219, 9, 0.1)
    );
    z-index: -1;
    animation: border-flow 4s linear infinite;
}

@keyframes border-flow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#tourdates {
    
    color : white;
     border:groove;
    border-color : dimgray;
}
#tourtitle {
    text-align : center;
    border-bottom:outset 2px;
    border-color : dimgray;
      display:grid;
    grid-template-columns: auto auto auto; /* Three columns: left GIF, header, right GIF */
    align-items:center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    gap: 7px; /* Adds space between the GIFs and the header text */
   
    
        
}

#tourdates table {
    
    width: 80%; /* Reduced from 100% to create some margin space */
    border-collapse: collapse; /* Continuous borders */
    background-color: #000000; /* Background color for spacing */
    text-align: center;
  /*  margin: 0 auto; /* This centers the table horizontally */
    max-width: 600px; /* Optional: limits maximum width for large screens */
    margin: auto;
    position: relative;
        
    
}

#tourdates table,tr {
    
   
    border-bottom: 1px solid;
    border-color: #2b2b2b;
    border-spacing: 20px;
}
    
@media (min-width: 768px) {#tourdates table, td {
  padding: 2vh
    
    }}     

@media (max-width: 768px) {#tourdates table, td {
  padding: 0.5vh
    
    }}    
    
#viewcount {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}
@media (min-width: 768px) { #viewcount {
transform: scale(1.5);
    margin: 15px 0;
    }}

@media (max-width: 768px) { #viewcount {
transform: scale(1.6);
    margin: 15px 0;
    }}

@media (min-width: 768px) {
    #tourdates table {
    left: -7px

}
}



@media (max-width: 768px) {
    #tourdates table {
    left : -2px
        
    }
} */


#tourdates table td {
    border-bottom: 1px solid dimgray; /* Continuous bottom border */
    padding: 10px; /* Spacing inside cells */
    background-color: #000000; /* Cell background color */
    font-size: clamp(10px, 3vw, 12px);
    margin: 0; /* Reset margin */
    text-align: center;
    padding-right: 20px; /* Add slightly more padding on the right */
    padding-left: 20px; /* Add more padding on the left to shift text */
}


/* Optional: Add spacing between rows */
#tourdates table tr {
    background-color: #000000; /* Match table background color */
}

#buttons img {
    max-width: 100%; 
    height: auto;
}

@media (max-width: 768px) {
   #buttons img {
   transform: scale(1.09);
       margin: 3px 8px;
}
}


/* Modal styles */
.modal {
    display: flex; /* Changed to flex for smoother transitions */
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Faded black background */
    opacity: 0; /* Start fully transparent */
    visibility: hidden; /* Hide the modal initially */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth fade effect */
}

.modal.modal-visible {
    opacity: 1; /* Fully visible */
    visibility: visible; /* Show the modal */
}

.modal-content {
    background-color: #000000; /* Black background for the box */
    padding: 5px;
    border: 2px groove dimgray; /* Groove border with dimgray color */
    text-align: center;
    width: 90%; /* Responsive width */
    max-width: 400px; /* Maximum width for larger screens */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    opacity: 0; /* Start fully transparent */
    transform: translateY(-20px); /* Slight upward shift */
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s; /* Delayed fade and slide effect */
}

.modal.modal-visible .modal-content {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset to original position */
}

.single-cover {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.single-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
    border-top: 1px;
    border-bottom: 1px;
    border-color: dimgray;
    border-style: groove;
    border-left: none;
    border-right: none;
    
}

.stream-links {
    width: 100%;
    overflow-x: auto; /* Allow horizontal scrolling on small screens */
}

.stream-platforms {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.stream-platforms td {
    padding: 10px;
    border-bottom: 1px solid #444;
    border-top: none;
    border-right: none;
    border-left: none;
    color: #fff;
    text-align: left;
}

.stream-platforms a {
    color: #09db09;
    text-decoration: none;
    text-align: right;
    
}

.stream-platforms a:hover {
    text-decoration: underline;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
}

.close-modal:hover {
    color: #09db09;
}

/* Mobile-specific styles */
@media (max-width: 600px) {
    .modal-content {
        width: 65%; /* Wider on small screens */
        padding: 15px;
    }

    .single-cover {
        max-width: 150px; /* Smaller cover image on mobile */
    }

    .single-title {
        font-size: 1.6em; /* Smaller title on mobile */
    }

    .stream-platforms td {
        padding: 8px; /* Smaller padding on mobile */
        font-size: 1.2em; /* Smaller font size on mobile */
    } }
/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    padding-top: 50px;
}

/* Ensure main content doesn't overflow */
#main-content {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Fix pagefront container */
#pagefront {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Ensure buttons don't cause overflow */
#buttons {
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
}