/* GENERAL STYLING */
body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
  }
  
  /* WEBGL SECTION */
  .webgl-content {
    width: 100%;
    height: 630px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #35495E; /* Neutral dark blue */
    box-sizing: border-box;
  }
  
  .unity-container {
    width: 100%;
    height: 100%;
    background-color: #1E2D3A; /* Darker shade for contrast */
    border: 2px solid #ECECEC; /* Subtle light border */
  }
  
  .webgl-content .fullscreen {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-image: url('fullscreen.png');
    width: 38px;
    height: 38px;
    background-size: cover;
    cursor: pointer;
    z-index: 10;
  }
  
  /* SECTION LAYOUT */
  .section {
    height: 16.67vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    text-align: center;
  }
  
  /* STORY SECTION */
  #story {
    background-color: #007ACC; /* Vibrant blue for story section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    color: white;
    text-align: center;
    height: 320px;
  }
  
  #story-text {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
  }
  
  .story-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 90%;
    margin: 20px auto 0 auto;
  }
  
  .story-content p {
    flex: 1;
    margin: 0;
    padding: 10px;
    background-color: #FFFFFF; /* Clean white for text cards */
    color: #333333; /* Dark gray for readability */
    font-size: 16px;
    font-weight: 300;
    border-radius: 8px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
  }
  
  /* CREDITS SECTION */
  #credits {
    background-color: #FFD700; /* Professional gold shade */
    color: #2E2E2E; /* Dark text for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
  }
  
  #credits-text {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0;
  }
  
  .credits-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    height: 200px;
  }
  
  .square-container {
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
  }
  
  /* CIRCLE IMAGES */
  .circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF; /* White background for image circles */
    border: 2px solid #CCCCCC; /* Soft gray border */
  }
  
  .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* CREDITS TEXT ELEMENTS */
  .user-name {
    font-size: 16px;
    font-weight: bold;
    color: #333333; /* Dark gray */
    margin: 10px 0;
  }
  
  .user-role {
    font-size: 14px;
    color: #555555; /* Medium gray */
    margin: 5px 0;
  }
  
  .user-link {
    font-size: 12px;
    color: #007ACC; /* Vibrant blue for links */
    text-decoration: underline;
    margin: 5px 0;
  }
  
  /* SPECIAL THANKS SECTION */
  #special-thanks {
    background-color: #F5F5F5; /* Light gray for a clean appearance */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    height: 250px;
  }
  
  #special-thanks-text {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-top: 40px;
    color: #333333; /* Dark gray for text */
  }
  
  #special-thanks-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 40px 0 20px;
  }
  
  #special-thanks-logos img {
    width: 180px;
    height: auto;
    object-fit: contain;
  }
  