/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'VT323', monospace;
    background-color: #000;
    color: #FFF;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
  
/* Header Styles */
#header {
    background: #1C003F;
    text-align: center;
    padding: 20px;
  }
  
  #logo {
    font-size: 16px;
    color: #FF1CC0;
    text-shadow: 0 0 10px #FF1CC0;
    margin-bottom: 10px;
  }
  
  /* Top Navigation */
  #top-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid #FF1CC0;
    border-bottom: 1px solid #FF1CC0;
  }
  
  #top-nav a {
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
    text-shadow: 0 0 5px #FFF;
  }
  
  #top-nav a:hover {
    color: #FF1CC0;
    text-shadow: 0 0 10px #FF1CC0;
  }
  
  /* Scrolling Text */
  #scrolling-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: #FF1CC0;
    font-size: 14px;
    text-shadow: 0 0 5px #FF1CC0;
  }
  
  #scrolling-text marquee {
    margin-left: 10px;
    color: #FFF;
    text-shadow: 0 0 5px #FFF;
  }
    
/* Main Content */
#main-content {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    max-width: 1200px;
    margin: 50px auto;
    gap: 20px; /* Space between columns */
  }
  
/* Left Column */
#left-column {
    flex: 2;
    flex-basis: 66.66%; /* Fixed proportion: 2/3 */
    padding: 20px;
    overflow-y: auto; /* Scrollable if content overflows */
    box-sizing: border-box;
  }
  
  /* Main Image */
  #main-image {
    width: 100%; /* Full width */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #FF1CC0;
    margin-bottom: 5px; /* Space between image and content */
  }
    
  #content-display {
    transition: opacity 0.5s ease; /* Smooth content changes */
  }

  #content-display h1 {
    margin: 0px;
  }

/* Tagline */
#tagline {
    color: #B131FA; /* Softer purple */
    font-family: 'Orbitron', sans-serif; /* Futuristic font */
    font-size: 14px; /* Reduced size for subtlety */
    margin: 0px; /* Minimal spacing */
    text-align: left; /* Center aligned */
  }
  
  /* Divider */
  #tagline-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #FF1CC0, #B131FA);
    margin: 10px 0;
  }

  /* Right Column */
  #right-column {
    flex: 1;
    flex-basis: 33.33%; /* Fixed proportion: 1/3 */
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
  }
  
  /* Buttons in Right Column */
/* Navigation Button Container */
.nav-button {
    display: flex;
    justify-content: space-between; /* Space out text and image */
    align-items: center; /* Vertically align items */
    padding: 10px;
    margin: 10px 0;
    background-color: #000000; /* Match site background color */
    border: 1px solid #FF1CC0; /* Neon pink border */
    border-radius: 5px;
    color: #FFF; /* White text */
    font-family: 'Kanit', sans-serif; /* Consistent font */
    text-shadow: 0 0 5px #FFF; /* Subtle text glow */
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
  }
  
  .nav-button:hover {
    background-color: #4A0074; /* Subtle purple hover effect */
    transform: translateY(-3px); /* Slight lift on hover */
  }
  
  .nav-button img {
    width: 40px; /* Fixed size for images */
    height: 40px;
    object-fit: cover; /* Prevent distortion */
    margin-left: 10px; /* Add space between text and image */
    order: 2; /* Force image to align on the right */
  }
  
  .nav-button .button-text {
    flex: 1; /* Allow text to occupy remaining space */
    text-align: left; /* Align text to the left */
    font-size: 16px; /* Match original font size */
    color: #FFF; /* White text */
  }
            
  /* Responsive Design for Mobile */
  @media (max-width: 768px) {
    #main-content {
      flex-direction: column; /* Stack columns */
    }
  
    #left-column,
    #right-column {
      flex-basis: 100%; /* Full width for both columns */
      padding: 10px; /* Reduce padding */
    }
  
    #right-column {
      gap: 10px; /* Adjust spacing between buttons */
    }
  
    .nav-button {
      justify-content: center; /* Center content */
      text-align: center;
    }
  
    .nav-button img {
      margin: 0 auto; /* Center image */
    }
  }
    
  .glitch {
    animation: glitch 1s infinite;
  }
  
  @keyframes glitch {
    0%, 100% {
      text-shadow: -2px 2px #FF1CC0, 2px -2px #B131FA;
    }
    50% {
      text-shadow: 2px -2px #4A0074, -2px 2px #1C3AFF;
    }
  }
  


  /* Footer */
#footer {
    background: #1C003F;
    color: #FFF;
    text-align: center;
    padding: 10px 20px;
    border-top: 2px solid #FF1CC0;
    font-family: 'VT323', monospace;
    font-size: 14px;
    text-shadow: 0 0 5px #FFF;
  }
  
  #footer p {
    margin: 5px 0;
    color: #FF1CC0;
  }
  
  #footer p:first-of-type {
    font-weight: bold;
  }
  

  /* Title and Tagline */
#content-display h1 {
    font-size: 36px;
    color: #FF1CC0; /* Neon pink */
    text-shadow: 0 0 10px #FF1CC0; /* Strong glow */
    margin-bottom: 10px;
  }
  
  #content-display h2 {
    font-size: 20px;
    color: #B131FA; /* Softer purple */
    text-shadow: 0 0 5px #B131FA; /* Subtle glow */
    margin-bottom: 20px;
  }
  
  /* Section Headers */
  #content-display h3 {
    font-size: 24px;
    color: #FFF; /* White text */
    text-shadow: 0 0 5px #FFF; /* Light glow */
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  /* Paragraphs */
  #content-display p {
    font-size: 16px;
    color: #FFF;
    line-height: 1.6;
    text-shadow: 0 0 2px #FFF; /* Subtle glow */
    margin-bottom: 15px;
  }
  
  /* Divider */
  #content-display hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #FF1CC0, #B131FA);
    margin: 20px 0;
  }



  /* Hacked Section Title */
.glitch-title {
    font-size: 36px;
    color: #FF1CC0; /* Neon pink */
    text-shadow: 0 0 5px #FF1CC0, -2px -2px #4A0074, 2px 2px #B131FA;
    position: relative;
    animation: glitch-effect 1.5s infinite;
  }
  
  /* Glitchy Animation */
  @keyframes glitch-effect {
    0% {
      text-shadow: 2px 2px #4A0074, -2px -2px #FF1CC0;
      transform: translate(0, 0);
    }
    20% {
      text-shadow: -2px -2px #FF1CC0, 2px 2px #B131FA;
      transform: translate(-2px, 2px);
    }
    40% {
      text-shadow: 4px 4px #4A0074, -4px -4px #FF1CC0;
      transform: translate(2px, -2px);
    }
    60% {
      text-shadow: -2px -2px #B131FA, 2px 2px #4A0074;
      transform: translate(-2px, -2px);
    }
    100% {
      text-shadow: 0 0 5px #FF1CC0;
      transform: translate(0, 0);
    }
  }
  
  /* Glitchy Text */
  .glitch-text {
    color: #FFF;
    text-shadow: 1px 1px #FF1CC0, -1px -1px #4A0074;
    position: relative;
    animation: glitch-text 2s infinite;
  }
  
 /* @keyframes glitch-text {
    0% {
      text-shadow: 1px 1px #FF1CC0, -1px -1px #4A0074;
    }
    50% {
      text-shadow: 2px -2px #B131FA, -2px 2px #FF1CC0;
    }
    100% {
      text-shadow: 1px 1px #FF1CC0, -1px -1px #4A0074;
    }
  }
  */










  