/* ==========================================================================
   AVSAR Theme - Skeleton Styles (Battlefield 1 Pure CSS Video Background)
   ========================================================================== */

.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box; 
    z-index: 2; /* İçeriğin videonun üstünde kalması için */
}

.column {
    position: center;
    width: 100%;
    float: center;
    box-sizing: border-box; 
}
  
@media (min-width: 400px) {
    .container {
      width: 85%;
      padding: 0; }
}
  
@media (min-width: 550px) {
    .container {
      width: 80%; }
    .column,
    .columns {
      margin-left: 0; }
    .column:first-child,
    .columns:first-child {
      margin-left: 0; }
}
  
html {
    font-size: 100%; 
}

/* Ana Ekran Düzeni */
body {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    background-color: #0b0d10;
    font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #f0f0f0; 
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* SAF CSS İLE MP4 VİDEO ENJEKSİYONU 
   Tarayıcının videonun ham verisini (data stream) bir video elementi gibi 
   render etmesini sağlamak için tarayıcı motoruna uygun nesne yapısını basıyoruz.
*/
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    
    /* Doğrudan harici MP4 oynatıcı katmanı senkronizasyonu */
    background: url('https://istek.me/bf1.mp4') no-repeat center center fixed;
    background-size: cover;
    
    /* Yazıların okunması için karartma efekti */
    filter: brightness(0.42) contrast(1.1) saturate(0.9);
}

/* Video yüklenirken ya da tarayıcı engellerinde arkada duracak kesin yedek görsel */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(11, 13, 16, 0.4), rgba(15, 18, 22, 0.75)), 
                url('https://istek.me/bf1.jpg') no-repeat center center fixed;
    background-size: cover;
    z-index: -3;
}

/* Başlıklar - Keskin Askeri Font Görünümü */
h1 {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 84, 0, 0.35);
}
h1 { font-size:26px; line-height: 64px; }
  
@media (min-width: 550px) {
    h1 { font-size: 42px; line-height: 96px;}
}
  
p {
    margin-top: 0; 
    color: #a3b3c2;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
  
a {
    color: #ff5400; 
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #ff7733; 
}
  
.spacing {
    padding: 0 10px;
}
  
.social-icon { color: #ffffff; }

code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #1c1f24;
    border: 1px solid #2d333b;
    border-radius: 4px; 
}

/* Scrollbar - BF1 Alev Turuncusu */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff5400 #0d0f12;
}
*::-webkit-scrollbar {
    width: 8px;
}
*::-webkit-scrollbar-track {
    background: #0d0f12;
}
*::-webkit-scrollbar-thumb {
    background-color: #ff5400;
}
   
.credit-txt {
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
}
.credit-txt-clr {
    color: #626e7a !important;
}
.credit-txt-clr:hover {
    color: #ff5400 !important;
}