/*********************************
 1) Renk Değişkenleri
**********************************/
:root {
  --custom-color: #EED9B6;
  --custom-text: #1b1917;
  --custom-hover: #d4bb96;
  --rank-blue-active: #3498db;
  --rank-blue-inactive: #2c80b4;
}

/*********************************
 2) Metin Renkleri
**********************************/
a,
button,
.text-primary,
.character-info-data span,
.character .character-basic p,
.character .character-basic span,
.character .character-basic a,
.character-info-data a,
.sidebar-cat ul li a,
.sidebar-cat ul li span,
.breadcrumb-content h2,
.breadcrumb-content .breadcrumb li,
.blog-list-post-content h2,
.sidebar-widget-title h4 span,
.main-page-title,
.main-page-title i,
.home-five-banner .banner-content .sub-title,
.home-five-banner .banner-content .title-two span,
.home-five-footer .newsletter-title h2 span,
.home-five-footer .newsletter-form-grp i,
.home-five-footer .fw-link ul li a:hover,
.home-five-footer .copyright-text p a,
.navbar-wrap ul li a:hover,
.sidebar-cat ul li a:hover,
.character .character-basic-x span,
.breadcrumb-content .breadcrumb li a,
.text-danger,
.page-link:hover,
.page-item.active .page-link {
  color: var(--custom-color) !important;
}

/*********************************
 3) Buton / Arka Plan Renkleri
**********************************/
.btn,
.btn:hover,
.border-btn,
.border-btn:hover,
.btn-primary,
.btn-primary:hover,
.btn.ranking-main-button,
.header-user-login > a i,
.navbar-wrap ul li a::before,
.header-shop-cart a span,
.header-shop-cart .minicart .checkout-link a,
.lg-tag a::before,
.product-content .product-tag a::before,
.tournament-menu button::before,
.tournament-schedule-meta a:hover,
.product-cart-action a:hover,
.newsletter-form button,
.footer-newsletter button,
.transparent-btn:hover,
.fw-title h5::before,
.features-item .product-tag a::before,
.shop-area.black-bg .product-cart-action a:hover,
.latest-match-box .tournament-schedule-meta a:hover,
.features-item .features-list-content .product-tag a:hover::before,
#scrollUp,
.sidebar-nav .nav-link i,
.table > thead,
.table-hover tbody tr:hover,
.character .character-avatar:hover,
.t-header-top-area .header-top-login ul li a,
.home-five-header .t-header-top-area .header-top-login ul li a,
.home-five-header .t-header-top-area .header-top-login ul li a:hover i {
  background-color: var(--custom-color) !important;
  border-color: var(--custom-color) !important;
  color: var(--custom-text) !important;
}

/*********************************
 4) Footer Sosyal İkonları
**********************************/
.footer-social ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-social ul li a {
  background-color: var(--custom-color) !important;
  color: #000 !important;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.footer-social ul li a:hover {
  background-color: var(--custom-hover) !important;
}

/*********************************
 5) Header Sosyal İkonları
**********************************/
.header-top-social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 12px;
}
.header-top-social ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-top-social ul li a {
  background-color: var(--custom-color) !important;
  color: #000 !important;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/*********************************
 6) Header Logo ve Arkaplan
**********************************/
.header-logo-area,
.header-main-wrapper {
  position: relative;
  z-index: 10;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 10px 0;
}
.header-logo-area img,
.header-main-wrapper img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/*********************************
 7) Responsive Ayarlar
**********************************/
@media (max-width: 768px) {
  .footer-social ul li a {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  .footer-social ul li a i,
  .footer-social ul li a svg {
    font-size: 16px;
  }
  .header-top-social ul li a {
    width: 30px;
    height: 30px;
  }
  .header-top-social ul li a i,
  .header-top-social ul li a svg {
    font-size: 13px;
  }
  .header-top-social {
    flex-wrap: wrap;
    gap: 8px;
  }
}