body {
    background-color: #1a1a1a;
    background-image: url('assets/images/background.svg');
    background-size: cover;
    background-position: center;
    color: #ff6600;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/background.svg');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    z-index: -1;
  }
  

  /* Fade-in animation */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .main-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    padding: 20px;
    border: 3px solid silver;
    border-radius: 10px;
    background-color: transparent;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out forwards;
  }
  
  .title {
    font-size: 3em;
    font-weight: bold;
    position: absolute;
    top: -40px;
    right: 20px;
    font-family: 'Bungee', sans-serif;
    text-shadow: 0 0 10px #ff6600;
  }
  
  .container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .profile-container {
    position: relative;
    width: 300px;
    height: 750px;
    border-radius: 10px;
    border: 3px solid #ff6600;
    overflow: hidden;
  }
  
  .profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .carousel-buttons button {
    background: rgba(0, 0, 0, 0.5);
    color: #ff6600;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 1em;
  }
  
  .photo-credit {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    background: rgba(0, 0, 0, 0.5);
    color: white;
  }
  
  .info {
    text-align: left;
    font-size: 1.2em;
    line-height: 1.5;
  }
  
  .links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-family: 'Bungee', sans-serif;
  }
  
  .links a {
    text-decoration: none;
    color: #ff6600;
    font-size: 1.5em;
    transition: text-shadow 0.3s ease-in-out;
  }
  
  .links a:hover {
    text-shadow: 0 0 10px #ff6600;
  }
  
  
  /* Secondary links styling */
  .links-secondary {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    font-family: 'Bungee', sans-serif;
  }
  
  .links-secondary a {
    text-decoration: none;
    color: #ff6600;
    font-size: 1.5em;
    transition: text-shadow 0.3s ease-in-out;
  }
  
  .links-secondary a:hover {
    text-shadow: 0 0 10px #ff6600;
  }
  
  /* AD mode button styling */
  #adModeButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6600;
    color: #1a1a1a;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  #adModeButton:hover {
    background-color: silver;
  }