html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* TOP BAR */
.topbar {
  height: 60px;
  background: linear-gradient(#111, #000);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #1a1a1a;
}

/* HAMBURGER */
.hamburger {
  width: 30px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #e70700;
  margin: 6px 0;
  border-radius: 2px;
}

/* TEXT LOGO */
.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 6px;
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
}

/* VIP */
.vip-text {
  color: #e70700;
}

/* GARAGE */
.garage-text {
  color: #ffffff;
}


/* LANGUAGE BOX */
.lang-box {
  position: relative;
  font-size: 14px;
  user-select: none;
}

/* CURRENT */
.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-current:hover {
  background: #111;
  box-shadow: 0 0 0 1px #e7070022;
}

/* FLAG */
.lang-current img {
  width: 22px;
  border-radius: 4px;
}

/* DROPDOWN ICON */
.lang-current i {
  font-size: 11px;
  opacity: 0.7;
}

/* LIST */
.lang-list {
  position: absolute;
  right: 0;
  top: 48px;
  width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 14px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid #1a1a1a;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* ITEM */
.lang-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* ITEM HOVER */
.lang-list li:hover {
  background: #151515;
  color: #fff;
}

/* FLAG */
.lang-list img {
  width: 20px;
  border-radius: 4px;
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #0b0b0b;
  border-right: 1px solid #e70700;
  padding-top: 70px;
  transition: 0.3s ease;
  z-index: 200;
}

.side-menu.active {
  left: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #111;
}

.side-menu li a:hover {
  background: #111;
  color: #e70700;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  display: none;
  z-index: 150;
}

.overlay.active {
  display: block;
}
/* MENU TITLE */
.menu-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #1a1a1a;
}

.menu-title .vip {
  color: #fff;
}

.menu-title .garage {
  color: #e70700;
}
/* FOOTER */
footer {
  background: #0b0b0b;
  border-top: 1px solid #1a1a1a;
  padding: 30px 20px 15px;
  color: #ccc;
  font-size: 14px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* FOOTER SECTION */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* LOGO */
.footer-logo {
  justify-content: center;
}

.footer-logo img {
  max-width: 220px;
  height: auto;
}

/* HEADINGS */
.footer-section h3 {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

.footer-section h3::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #e70700;
  display: block;
  margin-top: 5px;
}

/* LINKS */
.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
}

.footer-section a:hover {
  color: #e70700;
}

/* FOOTER BOTTOM */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
  margin: 10px 0 0;
  font-size: 12px;
  color: #777;
}

/* SOCIAL BAR */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-bar a {
  color: #fff;
  font-size: 22px;
}

.social-bar a:hover {
  color: #e70700;
}

/* MOBILE */
@media (max-width: 600px) {
  footer {
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .footer-section h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}
footer {
  margin-top: auto;
}
/* ============================= */
/* FILES PAGE */
/* ============================= */

/* GRID KAPSAYICI */
#downloadGrid {
  max-width: 1100px;              /* SAYFAYI DARALTIR */
  margin: 40px auto 0 auto;       /* ORTALAR + YAN BOŞLUK */
  padding: 0 24px;                /* DUVARLA KART ARASI */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

/* CARD */
.dl-card {
  background: linear-gradient(145deg, #141414, #0a0a0a);
  border: 1px solid #1c1c1c;
  border-radius: 14px;            /* BİRAZ KÜÇÜLDÜ */
  padding: 20px 18px;             /* KART İÇİ BOŞLUK AZALDI */
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: 0.3s ease;
  overflow: hidden;
}

/* ALT KIRMIZI ŞERİT */
.dl-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #e70700;
  transition: width 0.3s ease;
}

.dl-card:hover::after {
  width: 100%;
}

.dl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(231,7,0,0.2);
}

/* FILE ICON */
.file-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(231,7,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-icon i {
  font-size: 22px;
  color: #e70700;
}

/* FILE INFO */
.file-info {
  flex: 1;
}

.file-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.file-size {
  font-size: 12px;
  color: #aaa;
}

/* DOWNLOAD BUTTON */
.btn-dl-trigger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #e70700;
  color: #fff;
  cursor: pointer;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-dl-trigger i {
  font-size: 14px;
}

.btn-dl-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 5px rgba(231,7,0,0.25);
}

/* NOTE */
.note {
  margin: 35px auto 0;
  text-align: center;
  font-size: 13px;
  color: #bbb;
  max-width: 900px;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {
  #downloadGrid {
    padding: 0 16px;
  }

  .dl-card {
    padding: 18px 16px;
  }
}

