/* ==========================================================================
   AVSAR Theme - Brands & Buttons Layout (Video Glassmorphism Mode)
   ========================================================================== */

.rounded-avatar {
  border-radius: 4px;
  border: 2px solid #ff5400;
  box-shadow: 0 0 20px rgba(255, 84, 0, 0.4);
}

.social-icon {
  font-size: 28px;
  padding: 10px;
  transition: transform 0.2s, color 0.2s;
  position: relative;
  z-index: 5;
}
.social-icon:hover {
  color: #ff5400 !important;
  transform: scale(1.15);
}
.social-icon-div {
  padding-bottom: 30px;
}

/* Ana Keskin Köşeli HUD Buton Yapısı */
.button,
button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  width: 300px;
  font-weight: 700;
  line-height: 20px;
  padding: 15px 12px 13px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: wrap;
  outline: none;
  border-radius: 0px; /* Keskin askeri tasarım */
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden; 
  z-index: 3;
  
  /* Videonun alttan pürüzsüzce akmasını sağlayan şeffaflık ve hafif buzlanma */
  background: rgba(14, 17, 22, 0.72) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid #4a545e;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(3px); /* Butonun altından geçen videoyu hafif flulaştırır */
  -webkit-backdrop-filter: blur(3px);
}

/* Taktik Şok/Parlama Dalga Efekti */
.button::before,
button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 84, 0, 0.3) 50%, 
    transparent
  );
  transition: none;
}

/* Buton Hover (Üzerine Gelindiğinde) */
.button:hover,
button:hover {
  color: #ffffff !important;
  background: rgba(22, 27, 34, 0.85) !important;
  border-color: rgba(255, 84, 0, 0.5);
  border-left: 4px solid #ff5400 !important; /* İkonik BF1 Turuncusu Şerit */
  box-shadow: -5px 0 20px rgba(255, 84, 0, 0.35), inset 0 0 15px rgba(0, 0, 0, 0.5);
  transform: translateX(6px); /* Sağa doğru hafif askeri kayma */
}

/* Üzerine gelindiğinde animasyonu tetikle */
.button:hover::before,
button:hover::before {
  animation: battle-flash 0.6s ease-out;
}

@keyframes battle-flash {
  0% { left: -100%; }
  100% { left: 100%; }
}

.icon {
  padding: 0px 8px 3.5px 0px;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}

/* Marka Renklerini Ezerek HUD Bütünlüğünü Koruma */
.button.button-custom,
.button.button-default,
.button.button-littlelink-custom,
.button.button-website,
.button.button-github,
.button.button-instagram,
.button.button-twitter,
.button.button-facebook,
.button.button-youtube,
.button.button-linkedin {
  background-image: none !important;
}