
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1; /* Videoyu arka plana atar */
        }

        /* Video ayarları */
        .video-container video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
        }

.list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
}

.link::before,
.link::after {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ff0000;
  transform: scaleX(0);
  transition: transform 0.25s;
}

.link::before {
  transform-origin: left;
}

.link::after {
  transform-origin: right;
}

.link:hover::before,
.link:hover::after,
.active::before,
.active::after {
  transform: scaleX(1);
}

#carousel_games {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1300px) {
  #carousel_games {
    min-height: 300px;
  }
}
@media (max-width: 992px) {
  #carousel_games {
    min-height: 280px;
  }
}
@media (max-width: 768px) {
  #carousel_games {
    min-height: 230px;
  }
}
@media (max-width: 480px) {
  #carousel_games {
    min-height: 150px;
  }
}
#ffqadir {
  width: 100%;
  height: auto;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#ffqadir .ffqadiraz {
  width: 100%;
  height: auto;
  min-height: 50px;
  color: rgb(161, 98, 35);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.224);
}
#ffqadir .ffqadiraz .games_right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 2px;
}
#ffqadir .ffqadiraz .games_right a {
  margin-bottom: 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  text-decoration: none;
  color: rgb(161, 98, 35);
}
#ffqadir .ffqadiraz .games_right i {
  font-size: 9px;
}
#ffqadir .ffqadiraz .games_left p {
  margin-bottom: 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  padding: 10px;
}

#games {
  width: 100%;
  height: auto;
  min-height: 340px;
}

#games .games {
  width: 100%;
  height: auto;
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#games .games img {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
}

@media (max-width: 600px) {
  #games,
  #games .games {
    min-height: 300px;
  }
}
#games .games img:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease;
}

.straight {
  width: 100%;
  height: 1px;
  background-color: rgb(212, 193, 193);
  margin: 10px 0 20px 0;
}

#productList .boxDiv td {
  font-size: 14px;
  font-weight: 500;
  color: #3e3f5e;
}
#productList .boxDiv td .number_type {
  width: 100%;
  max-width: 35px;
  border: none;
}
#productList .boxDiv .last_th {
  text-align: center;
}
#productList .boxDiv a {
  color: white;
  text-decoration: none;
}
#productList .boxDiv a:hover {
  color: black;
}
#productList .boxDiv button {
  border: none;
  padding: 5px;
  border-radius: 5px;
  max-width: 110px;
  width: 100%;
  background-color: #6b8aaf;
  color: white;
}
#productList .boxDiv button span {
  padding-left: 5px;
  font-size: 14px;
}
#productList .boxDiv button i {
  font-size: 14px;
}
@media (max-width: 768px) {
  #productList .boxDiv td {
    font-size: 12px;
  }
  #productList .boxDiv button {
    max-width: 65px;
  }
  #productList .boxDiv button span {
    display: none;
  }
  #productList .boxDiv button i {
    font-size: 16px;
  }
}

table tr th {
  font-size: 16px;
}
@media (max-width: 768px) {
  table tr th {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  table tr th {
    font-size: 13px;
  }
}

#wp .show-wp-button {
  background: #27ae60;
  font-size: 34px;
  line-height: 54px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  left: 25px;
  bottom: 25px;
  border-radius: 100%;
  border: solid 5px #27ae60;
  animation: showwpbutton 2s ease infinite;
  backface-visibility: hidden;
}
#wp a {
  text-decoration: none !important;
}
#wp a {
  color: #0d6efd;
  text-decoration: underline;
}
#wp * {
  font-style: normal;
}
#wp *, #wp ::after, #wp ::before {
  box-sizing: border-box;
}
@keyframes showwpbutton {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

header {
  /* background-color: #FFFFFF; */
  /* Mobil ve Tablet için Media Query */
}
header .container .navbar {
  /* background-color: #FFFFFF; */
  padding: 1rem 0; /* Sadece üst ve alt boşluk bırakıldı */
}
header .container .navbar .navbar-nav {
  display: flex;
  gap: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
header .container .navbar .navbar-brand img {
  max-width: 180px;
}
header .container .navbar .search-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  max-width: 300px;
  margin: 0 auto;
}
header .container .navbar .search-box input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
}
header .container .navbar .search-box .suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 292px;
  /* background-color: #fff; */
  border-radius: 4px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
}
header .container .navbar .search-box .suggestion-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
header .container .navbar .search-box .suggestion-item:hover {
  /* background-color: #f0f0f0; */
}
header .container .navbar .search-box .suggestion-item img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 4px;
}
header .container .navbar .search-box .suggestion-item span {
  font-size: 16px;
  color: #333;
}
header .container .navbar .navbar-toggler {
  border: none;
  background: transparent;
}
header .container .navbar .navbar-toggler:focus {
  outline: none;
}
header .container .navbar .nav-link, header .container .navbar .dropdown-item {
  color: #000 !important; /* Yazı rengi siyah */
  font-weight: 600;
}
header .container .navbar .nav-link:hover, header .container .navbar .dropdown-item:hover {
  color: #333 !important;
}
header .container .navbar .dropdown-menu {
  /* background: #FFFFFF; */
}
header .container .navbar .dropdown-menu .dropdown-item {
  color: #000 !important;
}
header .container .navbar .dropdown-menu .dropdown-item:hover {
  background: #e9ecef;
}
@media (max-width: 991px) {
  header {
    /* Pubg Mobile, Tiktok ve Mobile Aksesuar menü öğeleri */
  }
  header .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  header .navbar-collapse .search-box {
    margin-bottom: 1rem;
  }
  header .navbar-collapse .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .navbar-collapse .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
  }
  header .dropdown-menu {
    /* background: #FFFFFF; */
    max-width: 250px; /* Menü genişliği sınırlı */
    padding: 0.5rem; /* Yumuşak padding */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    border-radius: 8px;
  }
  header .dropdown-item {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    color: #333;
    font-weight: 500;
    /* background-color: #FFFFFF; */
    border-bottom: 1px solid #f0f0f0; /* Her madde arasında ince çizgi */
    text-align: left;
  }
  header .dropdown-item:hover {
    background-color: #f7f7f7; /* Hover efekti */
  }
  header .dropdown-item:last-child {
    border-bottom: none;
  }
  header .navbar-toggler {
    display: block;
    margin-left: auto;
  }
}

#txt .feature-box {
  text-align: center;
  color: red;
  padding: 20px; /* Tüm kenarlar için 20px padding */
  padding-left: 0;
  padding-right: 0;
}
#txt .feature-box i {
  font-size: 50px; /* İkon boyutu */
  margin-bottom: 15px;
}
#txt .feature-box h4 {
  font-size: 18px; /* Başlık boyutu */
  margin-bottom: 10px;
  font-weight: bold;
}
#txt .feature-box p {
  font-size: 14px; /* Açıklama yazısı boyutu */
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 990px) {
  #txt .feature-box i {
    font-size: 45px;
  }
  #txt .feature-box h4 {
    font-size: 17px; /* Başlık boyutu */
  }
  #txt .feature-box p {
    max-width: 280px;
    margin: auto;
    font-size: 13px;
  }
}

footer {
  width: 100%;
  background-color: #222222;
  color: rgb(85, 96, 96);
  height: auto;
  min-height: 70px;
}
footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 70px;
  width: 100%;
}
footer .copyright p {
  margin-bottom: 0;
  font-weight: 600;
}

.product-list .product-row {
  padding: 15px 10px;
  margin-bottom: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.product-list .product-image {
  width: 100%;
  max-width: 130px;
  height: auto;
  border-radius: 8px;
}
.product-list .product-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.product-list .product-delivery {
  font-size: 0.875rem;
  color: #666;
  margin-top: 5px;
}
.product-list .product-price {
  font-size: 1rem;
  color: #28a745;
  font-weight: bold;
  border: 1px solid #28a745;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}
.product-list a {
  text-decoration: none;
}
.product-list a .add-to-cart {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}
.product-list .add-to-cart:hover {
  background-color: #ff0303;
}
@media (max-width: 768px) {
  .product-list .product-row {
    flex-direction: row;
    align-items: flex-start;
    padding: 10px;
  }
  .product-list .col-3 {
    max-width: 30%;
    flex: 0 0 30%;
    text-align: center;
  }
  .product-list .product-image {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .product-list .col-9 {
    max-width: 70%;
    flex: 0 0 70%;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-list .product-title, .product-list .product-delivery, .product-list .product-price, .product-list .add-to-cart {
    margin-top: 5px;
    width: 100%;
    text-align: left;
  }
  .product-list .product-title {
    font-size: 1rem;
  }
  .product-list .product-price {
    font-size: 0.9rem;
    margin-top: 5px;
    max-width: 90px;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-list a {
    text-decoration: none;
  }
  .product-list a:hover {
    text-decoration: none;
  }
  .product-list a .add-to-cart {
    font-size: 15px;
  }
}

#faq {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#faq .faq-title b {
  font-size: 35px;
  text-align: center;
  color: #a30000;
}
#faq .faq-description {
  min-height: 100px;
}
#faq .faq-description p {
  font-size: 14px;
  text-align: center;
  color: #a30000;
}
#faq .faq {
  border-bottom: 1px solid #a30000;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
#faq .faq .question-box {
  margin-bottom: 1rem;
}
#faq .faq .question-box .num {
  font-size: 18px;
  color: #a30000;
}
#faq .faq .question-box .num::after {
  content: ".";
}
#faq .faq .question-box .question {
  font-weight: 500;
  font-size: 16px;
}
#faq .faq .question-box .icon {
  cursor: pointer;
  float: right;
}
#faq .faq .question-box #close {
  display: none;
}
#faq .faq .answer-box .answer {
  padding-right: 2rem;
}
#faq .faq .answer-box .answer p {
  font-size: 14px;
  color: #a30000;
}
#faq .faq .answer-box .answer a {
  color: #fd475d;
}
#faq .faq .closed {
  display: none;
}

#game-title {
  width: 100%;
  height: auto;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: repeat;
  background-size: 700px 150px;
}
#game-title .game_title {
  width: 100%;
  height: auto;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#game-title .game_title p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 0;
  color: white;
}
@media (max-width: 600px) {
  #game-title .game_title p {
    font-size: 22px;
  }
}

.about-section {
  width: 100%;
  height: auto;
  min-height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section .about_text {
  width: 100%;
  height: auto;
  min-height: 210px;
  padding: 20px;
}

#rules {
  /* background-color: #F8F8FB; */
  width: 100%;
  height: auto;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#rules .about_rules {
  width: 100%;
  height: auto;
  min-height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 20px;
  padding-bottom: 10px;
}
#rules .about_rules ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
#rules .about_rules ul li {
  counter-increment: item;
  margin-bottom: 1rem;
  font-size: 16px;
}
#rules .about_rules ul li strong {
  font-weight: 700;
}
#rules .about_rules ul li::before {
  content: counter(item) ".";
  margin-right: 0.5rem;
  color: #333;
  font-weight: bold;
}
@media (max-width: 768px) {
  #rules {
    flex-direction: column;
  }
  #rules .about_rules {
    text-align: center;
  }
}

#address {
  width: 100%;
  height: auto;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #F8F8FB; */
  padding: 20px;
}
#address .address_text {
  width: 100%;
  height: auto;
  min-height: 220px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  border: 1px solid #c9d3d7;
  margin-bottom: 20px;
  background-color: white;
}
#address .address_text a {
  text-decoration: none;
}
#address .address_text i {
  font-size: 35px;
  border: 1px solid #11BEFD;
  padding: 20px;
  border-radius: 100%;
  color: #11BEFD;
}
#address .address_text i:hover {
  color: #124645;
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#address .address_text span {
  font-size: 22px;
  font-weight: 400;
  color: #212529;
  line-height: 2;
}
#address .address_text p {
  color: #646464;
  margin-bottom: 0;
}


