body {
    background-color: #0F0F0F;
    color: #ffffff;
    font-family: 'Be Vietnam Pro', sans-serif;
    margin: 0;
    padding: 0;
    padding-left: 60px;
}

.sidebar {
    width: 60px;
    height: 100vh;
    background-color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    position: fixed; 
    left: 0;
    top: 0;
    border-right: 1px solid #353535; 
}


.sidebar-icon {
    width: 60px;
    height: 60px; 
    font-size: 21px;
    color: #808080;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color 0.3s ease; 
    z-index: 1; 
}

.sidebar-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #353535; 
    transform: scale(1);
    opacity: 0; 
    transition: opacity 0.3s ease; 
    z-index: -1;
}

.sidebar a {
    text-decoration: none; 
}

.sidebar-icon:hover::before {
    opacity: 1; 
}


.sidebar-icon:hover {
    color: #fff; 
}

.sidebar-icon:last-child {
    margin-top: auto;
    margin-bottom: 20px; 
}

h1 {
    font-size: 65px;
    text-align: center;
    font-weight: 1000;
}

p {
    margin-top: -25px;
    color: #D6D6D6;
    font-size: 14px;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.play-button {
    padding: 13px 30px;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    background-color: #C93131;
    color: white;
    box-shadow: 0 1px 7px #000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.play-button:hover {
    background-color: #b52126;
}

.line {
    width: 1300px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), #b03232 60%, #b03232 30%, rgba(255, 255, 255, 0.2));
    margin: 0 auto;
}


  .iframebox {
  left: 2.05%;
  width: 1240px;
  border-radius: 7px;
  margin: 15px auto;
  display: flex;
  flex-direction: column;
  position: relative; 
}

.iframebox iframe {
  margin-top: 10px;
  width: 100%;
  height: 625px;
  box-shadow: 0px 0px 7px #000;
  border: 2px solid #222222;
  border-radius: 7px;
}

.iframebox2 {
  position: absolute; 
  bottom:20px; 
  left: 50%;
  transform: translateX(-50%); 
  box-shadow: 0px 0px 7px #000;
  border-radius: 7px;
  padding: 13px;
  background-color: #C93131;
  width: 130px;
  display: flex;
  flex-direction: column;
}

            .icon-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 105px;
      }

      .icon-container i {
          font-size: 24px;
          margin-right: 28px;
          cursor: pointer;
          transition: transform 0.5s ease;
      }

      .icon-container i.reload-icon:hover {
          transform: rotate(360deg);
      }

      .icon-container i.fullscreen-icon:hover {
          transform: rotate(-10deg) scaleX(1.1);
      }

      .icon-container i.arrow-icon:hover {
          transform: scale(1.1);
      }

b {
    font-size: 14px;
    margin-right: 47%;
}

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

.rect1, .rect2, .rect3, .rect4, .rect5 {
    background-color: #C93131;
    height: 100px;
    width: 20px;
    margin: 0 3px;
    display: inline-block;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

@keyframes stretchdelay {
    0%, 40%, 100% { transform: scaleY(0.4) }
    20% { transform: scaleY(1.0) }
}

::-webkit-scrollbar {
    width: 4px;
    border-radius: 5px;
  }

  ::-webkit-scrollbar-thumb {
    background: #C93131;
    height: 2px;
  }

.features-section {
    background: linear-gradient(to bottom, #1c1c1c 70%, #0F0F0F 100%);
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 50px;

}

.feature-box {
    background-color: #252525;
    margin-top: 110px;
    padding: 20px;
    border-radius: 12px;
    width: 210px;
    height: 200px;
    text-align: center;
    margin: 10px;
    box-shadow: 0px 6px 17px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
}

.feature-box .icon-containerr {
    background-color: #1a1a1a;
    border-radius: 50%;
    padding: 20px;
    margin-bottom: 1px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.feature-box:hover .icon-containerr {
    background-color: #333333;
}

.feature-box .icon {
    font-size: 40px;
    color: #C93131;
}

.feature-box h2 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-box p {
    color: #d6d6d6;
    font-size: 14px;
    line-height: 1.4;
}

.main-content {
    display: flex;
    justify-content: center;
    padding-left: 80px; 
    padding-right: 20px; 
}


 .fog-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; 
    z-index: 1; 
}

.fog {
    position: absolute;
    background-color: #C93131;
    opacity: 0.10; 
    border-radius: 50%; 
    width: 300px;
    height: 300px;
    filter: blur(80px); 
}

.fog:nth-child(1) {
    top: 10%;
    left: 15%;
    width: 400px;
    height: 400px;
}

.fog:nth-child(2) {
    top: 45%;
    left: 60%;
    width: 350px;
    height: 350px;
}

.fog:nth-child(3) {
    top: 80%;
    left: 30%;
    width: 500px;
    height: 500px;
}

.discord-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(140deg, #1C1C1C, #000000 50%, #1C1C1C 100%);
  color: white;
  font-size: 16px;
  border: 1px solid #353535;
  font-family: 'Arial', sans-serif; 
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  opacity: 0.9; 
}

.discord-button:hover {
  box-shadow: 0 2px 2px #515DDC;
}

.discord-button:active {
  background-color: #3a45b3;
}

.discord-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
