@font-face {
  font-family: Roboto-medium;
  src: url(../fonts/Roboto/static/Roboto-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Roboto-italic;
  src: url(../fonts/Roboto/static/Roboto-Italic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto-medium-italic;
  src: url(../fonts/Roboto/static/Roboto-MediumItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto-bold;
  src: url(../fonts/Roboto/static/Roboto-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Roboto-regular;
  src: url(../fonts/Roboto/static/Roboto-Regular.ttf) format("truetype");
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Roboto-medium;
  background-image: url(../images/background.png);
  background-repeat: repeat;
  position: relative;
  overflow-x: clip;

}


div {
  background-color: #1a1a1a;
}

#menubar {
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  background: linear-gradient(to right, #373737, #575351);
  box-shadow: 0 5px 20px rgb(0, 0, 0);
  display: flex;
  align-items: center;
  transition: background 0.9s ease;
  width: 100%;
}

nav:hover {
  background: linear-gradient(to right, #6d655d, #7c7877);
}

nav ul li:hover {
  scale: 1.05;
  transition: scale 0.3s ease;
}
nav ul {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;

}
nav ul li {
  list-style: none;
  font-size: 2rem;
  padding: 0 10px;
  margin: 0 20px;
  cursor: pointer;
  position: relative;
  color: #e6e1d9
}
nav ul li:after {
  content: "";
  width: 0;
  height: 3px;
  background: #e6e1d9;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
}
nav ul li:hover::after {
  width: 100%;
}
#icon {
  width: 70px;
  height: auto;
  margin-right: 20px;
  border-radius: 0px;
  margin-left: 5px;
  transition: transform 0.3s;
}

#icon:hover {
  transform: scale(1.1);
}


.mobile-title {
  display: none;
}

.section {
  background-color: #262626;
  padding: 20px;
  margin: 20px;
  margin-top: 40px;
  border-radius: 25px;
  scroll-margin-top: 90px;
}

h2 {
  color: #e6e1d9;
  font-size: 62px;
  text-align: center;
}

h3 {
  color: #e6e1d9;
  font-size: 28px;
}

h4 {
  font-size: 28px;
  color: #e6e1d9;
}
p {
  color: #a6a29a;
  font-size: 23px;
}

.carousel{ 
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  .carousel-slide{
    width: 400%;
    display: flex;
    animation: carousel-animation 15s infinite alternate;
  & img{       
    width: calc(100% / 4);
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    }
  }
}

@keyframes carousel-animation {
  0%{
    transform: translateX(0);
  }
  25%{
    transform: translateX(0);
  }
  50%{
    transform: translateX(-25%);
  }
   75%{
    transform: translateX(-50%);
  }
   100%{
    transform: translateX(-75%);
  }

}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); 
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none; 
  color: #e6e1d9;
  font-size: 68px;
  text-shadow:
    -2px -2px 0 black,
     2px -2px 0 black,
    -2px  2px 0 black,
     2px  2px 0 black;
  pointer-events: none;

}


.sub_section {
  background-color: #3d3d3d;
  padding: 20px;
  margin: 10px;
  border-radius: 25px;
}

.old_news {
  background-color: #4d4d4d;
  padding: 20px;
  margin: 10px;
  border-radius: 25px;
  width: 300px;
  transition: transform 0.2s;
}

.old_news:hover {
  transform: scale(1.05);
}

summary {
  color: #a6a29a ;
  font-size: 32px;
  padding-bottom: 20px;
}

details p {
  margin-top: 0px;
  margin-left: 30px;
}

details {
  margin-left: 20px;
}

.section_paragraph {
  margin-left: 20px;
}

#more_news {
  display: flex;
  gap: 10px;             
  overflow-x: auto;       
  padding: 20px;
  scroll-behavior: smooth;
}

#more_news::-webkit-scrollbar {
  height: 8px;
}

#more_news::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 10px;
}

.old_news {
  flex: 0 0 auto;
}

.old_news a {
  text-decoration: none;
}

a h4 {
  margin-top: 0px;
  margin-bottom: 10px;
}

a img {
  max-width: 100%;
}

img {
  border-radius: 20px;
}

#bitwatson_logo {
  border-radius: 40px;
  margin-left: 12.5%;
  width: 75%;}

.footer {
  background: #262626;
  color: #eee;
  padding: 1px 20px 20px;
  font-family: Arial, sans-serif;
  border-radius: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  background: #1a1a1a;  
  border-radius: 20px;
  overflow: hidden;     
  max-width: 100%;    
  margin: 40px auto;   
  padding: 30px;
}

.footer h2, .footer h3 {
  margin-bottom: 10px;
}

.footer p {
  color: #a6a29a;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #fff;
}

.social-icons a {
  font-size: 20px;
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #1da1f2;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 10px;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  font-size: 14px;
  color: #777;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.footer-brand {
  padding-left: 20px;
}

.footer-brand p {
  padding-left: 16px;
}

.poster {
  width: 580px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.poster:hover {
  transform: scale(1.05);
}
.poster-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  background-color: #262626;
  padding: 20px;
  border-radius: 20px;
}

.poster-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 43%;
  background-color: transparent;
}

.poster-row a {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.poster-row a:hover {
  text-decoration: none;
  color: white;
  transform: scale(1.05);
}

img {
  width: 100%;
}

.platform-icon {
  width: 60px;
  height: 60px;
  margin-top: 10px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.poster-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.social_icon {
  width: 50px;
  height: auto;
  filter: brightness(0) invert(1);

}

.social-icons {
  margin-left: 40px;
}

#game_footer_qoute {
  margin-left: 7px;
}

.menubar-link {
  color: #e6e1d9;
  text-decoration: none;

}

.blog-date {
  margin-left: 20px;
}

#latest-blog-date {
  margin-left: 0px;
}

.content {
  background-color: #3d3d3d;
  padding: 20px;
  margin: 10px;
  border-radius: 25px;
}

.content-auto {
  background-color: #3d3d3d
}

.post {
 background-color: #3d3d3d
}

#app {
  color: red;
}

.blog-title {
  font-size: 35px;
}
.FAQ-section-title {
  padding-left: 20px;
  padding-top: 10px;
  margin-bottom: 5px;
  font-size: 35px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin: 10px;
}

.menu-toggle span {
  height: 4px;
  width: 25px;
  background: #e6e1d9;
  margin: 4px 0;
  border-radius: 2px;
}

#watson-self-portrait {
  width: 30%;
  padding-left: 35%;
  border-radius: 0%;
}

#portrait-name {
  text-align: center;
}

#unearthed-hero-logo {
  width: 75%;
  margin-bottom: 0px;
}

.game-feature-text h3 {
  font-size: 48px;
  margin-bottom: 25px;
}

@media (max-width: 980px) {
  .carousel {
    height: auto;
  }
}

@media (max-width: 1080px) {
  .footer-brand {
    padding-left: 0px;
  }

  #watson-self-portrait {
  width: 75%;
  padding-left: 12.5%;
  border-radius: 0%;
}

  .social-icons {
    margin-left: 0px;
  }

  #unearthed-hero-logo {
    scale: 0.75;
    margin-bottom: 0px;
  }

  #bitwatson_logo {
    width: 100%;
    margin-left: 0px;
    
  }

  .game-feature-text h3 {
    font-size: 30px;
  }

  .content-auto img{
    max-width: 100%;
  }

  .section {
    margin-left: 5px;
    margin-right: 5px;
  }

  .sub_section {
    margin-left: 5px;
    margin-right: 5px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .menu-toggle span {
    height: 4px;
    width: 30px;
    background: #e6e1d9;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  nav {
    position: relative
  }

  .platform-icon {
    margin-right: 20px;
    scale: 0.75;
    margin-bottom: -10px;
  }


  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background: linear-gradient(to right, #373737, #575351);

  }

  nav ul.active {
    display: flex;
  }
   nav ul li {
    margin: 15px 0;
    font-size: 2rem;
  }

  nav ul {
    padding: 20px 0;
  }

  p {
    font-size: 18px;  
  }

  summary {
    font-size: 22px;
  }

  details p {
    margin-left: 0px;
  }

  h2 {
    text-align: center;
    padding-left: 0px;
    font-size: 45px;
  }
  .footer-brand #game_footer_qoute {
    margin-left: -8px;
  }

  .old_news {
    width: 150px; 
  }
   .mobile-title {
    display: block;
    color: #e6e1d9;
    font-size: 2.8rem;
    font-family: Roboto-bold;
    margin: 0 auto;
    text-align: center;
    flex: 1;
    background-color: transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .game-feature {
    flex-direction: column;
  }
  .game-feature img {
    width: 100%;
  }

   .fade-left {
    transform: translateX(-80px);
  }

  .fade-right {
    transform: translateX(80px);
  }
  #trailer-video {
  background-color: transparent;
  width: 100%;
  padding-left: 0;
  }
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 770px) {
  .footer-brand #game_footer_qoute {
    margin-left: 8px;
  }
}




.hero-btn {
  pointer-events: all;
  text-decoration: none;
  border-radius: 10px;
  font-family: Roboto-bold;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.4s ease;
  display: inline-block;
  text-align: center;
}

.hero-btn:hover {
  transition: scale 0.3s ease;
  scale: 105%;
}

.wishlist-btn {
  background-color: #e6e1d9;
  color: #e6e1d9;
  font-size: 1.6rem;
  padding: 14px 36px;
  margin-top: 20px;
  border: 2px solid #000000;
}

.wishlist-btn:hover {
  background-color: #9a9494;
}

.read-more-btn {
  background-color: transparent;
  color: #e6e1d9;
  font-size: 1rem;
  padding: 8px 22px;
  margin-top: 10px;
  border: 1px solid #e6e1d9;
}

.read-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.fade-left {
  opacity: 0;
  transform: translateX(-300px);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(300px);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.section_qoute {
  text-align: center;
  margin-bottom: 60px;
  font-size: 25px;

}

.game-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 30px;
} 


.game-feature-text {
  flex: 1;
  text-align: center;
  padding-left: 0;
  background-color: transparent;
  justify-content: center;
  align-items: center;
}


.game-feature-image {
  flex: 1;
  height: auto;
  width: 50%;
}

table {
  width: 75%; 
  border-collapse: separate; 
  margin: 0 auto;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
}

thead tr { 
  background: #2C2C2A; 
  color: #D3D1C7; 
}
th { 
  padding: 12px 16px; 
  text-align: center; 
  font-size: 15px; 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
}
td { 
  padding: 11px 16px; 
  border-bottom: 1px solid #ddd; 
}

tbody tr:nth-child(odd)  { 
  background: #ffffff; 
}
tbody tr:nth-child(even) { 
  background: #f5f5f5; 
}

tfoot tr { 
  background: #26215C; 
  color: #CECBF6; 
  font-weight: bold; 
  font-style: italic; 
}

tfoot td {
  border-bottom: none;
}

.badge {
  padding: 3px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: bold;
}

.common    { background: #D3D1C7; color: #444441; }
.uncommon  { background: #C0DD97; color: #27500A; }
.rare      { background: #FAC775; color: #633806; }
.legendary { background: #F4C0D1; color: #72243E; }
.endgame { background: #534AB7; color: #EEEDFE; }

#previus_games_p {
    text-align: center;
    margin-left: 0px;
  }

  form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

label {
  color: #e6e1d9;
  font-size: 18px;
}

input, textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #444;
  background-color: #2a2a2a;
  color: #e6e1d9;
  font-size: 16px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #e6e1d9;
}

button[type="submit"] {
  padding: 12px;
  background-color: #e6e1d9;
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #9a9494;
}

#trailer-video {
  background-color: transparent;
  width: 50%;
  padding-left: 25%;
}

.dev_tool_link {
  text-decoration: none;
}

.dev_tool_link:hover {
  text-decoration: dotted;
  color: #929ad6;
}

#dev_tools_p {
  text-align: center;
  margin-top: -20px;
  padding-left: 0px;
  margin-bottom: 30px;

}

.game_feature_image {
  max-width: 600px;
}

.table-wrapper {
  margin: 0px;
  background-color: transparent;
}