
 :root {
    --background-color-dark: #1A2232;
    --background-color-dark-always: #1A2232;
    --background-color-darker: #121824;
    --background-color-darker-always: #121824;
    --background-color-transparent: rgba(255, 255, 255, 0);
    --color-white: #ffffff;
    --color-white-darker: #cfcfcf;
    --color-faded-white: #ffffff46;
    --color-faded-black: #00000046;
    --color-green: #149b4c;
    --color-red: #ff3131;
    --lutor-blue: #414A80;
    --lutor-light-blue: #414A80;
    --lutor-lighter-blue:rgb(103, 119, 209);
    --lutor-orange: #FF8900;

    --always-white-fade: rgba(255, 255, 255, 0.637);
    --always-white: white;
}


    body, html {
      margin: 0;
      padding: 0;
      background-color: var(--background-color-dark);
      color: var(--color-white);
      position: relative;
      justify-content: center;
      width: 100vw;
      overflow: auto;
      scroll-behavior: smooth;
      overflow-x: hidden;

      transition: all 0.3s ease;
    }
  
    .top-bar {
    backdrop-filter: blur(calc(0.4vh + 0.4vw));
    -webkit-backdrop-filter: blur(calc(0.4vh + 0.4vw));
}

    .game-showcase {
      position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        padding: 40px;
        max-width: 1200px;
        background-color: var(--background-color-dark);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    
        margin: calc(5.4vh + 5.4vw)  auto calc(1.4vh + 1.4vw) auto;
    z-index: 2;
    }

    .game-title{
      display: inline-flex;
      justify-content: space-between;
      width: 100%;
    }

    .game-title button{
      padding:  calc(0.28vh + 0.28vw) calc(1vh + 1vw);
      font-size: calc(0.8vh + 0.8vw);
      font-weight: 500;
      cursor: pointer;
      border-radius: calc(0.1vh + 0.1vw);
      border: 2px solid var(--color-white);

          background: var(--lutor-orange);
      border-color: var(--lutor-orange);

      transition: all 0.3s ease;
    }

    .game-title button:hover{
      background: var(--background-color-dark);
      color: var(--lutor-orange);
      border-color: var(--lutor-orange);
      font-weight: 900;
      padding:  calc(0.25vh + 0.25vw) calc(0.5vh + 0.5vw);
    }
  
    .video-wrapper {
      overflow: hidden;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    }
  
    .video-wrapper iframe {
      width: 100%;
      border: none;
    }
  
    .info {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  
    .info h1 {
      font-size: 2.5rem;
      margin: 0;
      color: var(--lutor-orange);
      
    pointer-events:all;
    user-select:all; 
    }
  
    .info h3{
      font-size: 1.1rem;
      font-weight: 300;
    }

    .info p {
      font-size: 1rem;
      font-weight: 200;
      line-height: 1.6;
      color: var(--color-white-darker);
    }
  
    .about-buttons {
            height: auto;
            font-size: calc(1vh + 1vw);
            width:auto;
                justify-content: flex-start;
                gap: calc(1vh + 1vw);
    }
    
    .about-buttons button:first-of-type {
        font-weight: 600;
        background-color: var(--background-color-transparent);
        border-color:  var(--color-white);
        color: var(--color-white);
    }
  

        .about-buttons button:first-of-type:hover{
            
        font-weight: 900;
        padding: calc(0.2vh + 0.2vw) calc(1vh + 1vw);
        }
    
        .team{
      margin-bottom: 20px;
        }

    .team h3 {
      font-size: 1.6rem;
      font-weight: 200;
      color: var(--always-white);
      margin-bottom: 20px;
    }
    
    .team-cards {
      display: ruby;
      flex-wrap: wrap;
      gap: 40px;
    }
    
    .team-card {
      background-color: var(--background-color-darker);
      border: 1px solid var(--lutor-blue);
      padding: 16px 20px;
      border-radius: 12px;
      min-width: 200px;
      flex: 1 1 200px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      margin-top: 5px;
    }
    
    .team-card:hover {
      transform: translateY(-4px);
    }
    
    .team-card h4 {
      margin: 0;
      font-weight: 500;
      font-size: 1.3rem;
      color: var(--color-white);
    }
    
    .team-card p {
      margin: 6px 0 0;
      font-size: 0.95rem;
      font-weight: 200;
      color: var(--color-white-darker);
    }


.linkedin-icon {
  margin-top: 10px;
  display: inline-block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.linkedin-icon:hover {
  transform: scale(1.1);
}

.linkedin-icon img {
  width: 100%;
  height: 100%;
  display: block;
}




    @media (max-width: 800px) {
      .game-showcase {
        flex-direction: column;
        align-items: center;
      }

      .game-title button{
        display: none;
      }

      .game-title button:hover{
        display: none;
      }
    }