/* ========= GLOBAL ========= */
:root {
  --bg-main: #020414;
  --bg-elevated: #070b22;
  --text-main: #f4f5ff;
  --text-sub: #a5b0ff;
  --accent: #ffcf66;
  --accent-soft: #ff8a4a;
  --card-border: rgba(120, 134, 219, 0.9);
  --radius-card: 24px;
  --shadow-card: 0 22px 55px rgba(0, 0, 0, 0.9);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #141a3c 0, #020414 45%, #000 100%);
  color: var(--text-main);
  font-family: var(--font-main);
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
}

/* ========= LOADER ========= */

.tv-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.tv-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tv-loader-core {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dönen IMAX glow halkası */
.tv-loader-ring {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(92, 130, 255, 0.1) 60deg,
    rgba(92, 130, 255, 0.7) 120deg,
    transparent 200deg
  );
  filter: blur(22px);
  opacity: 0.6;
  animation: tvRingSpin 3.2s linear infinite;
}

/* Logo kutusu */
.tv-loader-logo {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.9),
    0 0 65px rgba(86, 139, 255, 0.9);
  background: #000;
  animation: tvLogoPop 2.4s ease-out forwards;
}

.tv-loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lazer / beam */
.tv-loader-beam {
  position: absolute;
  width: 520px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    transparent
  );
  transform-origin: center left;
  opacity: 0;
  animation: tvBeamSweep 2.2s ease-out 0.4s forwards;
}

/* Alt etiket */
.tv-loader-label {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #7f8cff;
  opacity: 0;
  animation: tvLabelFade 1.3s ease-out 1.3s forwards;
}

/* Loader animasyonları */
@keyframes tvRingSpin {
  0% {
    transform: rotate(0deg) scale(1.06);
  }
  100% {
    transform: rotate(360deg) scale(1.06);
  }
}

@keyframes tvLogoPop {
  0% {
    transform: scale(0.78);
    opacity: 0;
  }
  35% {
    transform: scale(1.06);
    opacity: 1;
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes tvBeamSweep {
  0% {
    opacity: 0;
    transform: translateX(-260px) rotate(-10deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(140px) rotate(-10deg);
  }
}

@keyframes tvLabelFade {
  0% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 600px) {
  .tv-loader-core {
    width: 220px;
    height: 220px;
  }
  .tv-loader-logo {
    width: 150px;
    height: 150px;
  }
}

/* ========= LAYOUT ========= */

.page-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 20px 80px;
  position: relative;
}

.background-glow {
  position: fixed;
  inset: -40%;
  pointer-events: none;
  opacity: 0.3;
  z-index: -1;
  background: radial-gradient(circle at top, #29327b 0, transparent 55%);
}

.background-glow--mid {
  inset: auto;
  top: 30%;
  height: 60%;
  background: radial-gradient(circle at center, #292f78 0, transparent 60%);
}

/* ========= HEADER ========= */

.tv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 24px;
}

.tv-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tv-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at top, #3d4cff, #0b0f25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.tv-logo-triangle {
  width: 20px;
  height: 20px;
  border: 1.6px solid #f3f5ff;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg) translateY(-2px);
  opacity: 0.9;
}

.tv-logo-labels {
  display: flex;
  flex-direction: column;
}

.tv-logo-main {
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
}

.tv-logo-sub {
  font-size: 11px;
  color: var(--text-sub);
}

.tv-nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.tv-nav a {
  text-decoration: none;
  color: var(--text-sub);
  position: relative;
}

.tv-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.18s ease;
}

.tv-nav a:hover {
  color: #ffffff;
}

.tv-nav a:hover::after {
  width: 100%;
}

/* ========= HERO ========= */

.hero {
  padding: 14px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.hero-title {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero-title-imax {
  color: var(--accent);
  display: inline-block;
}

.hero-body {
  font-size: 14px;
  color: var(--text-sub);
  max-width: 520px;
}

.hero-ctas {
  margin: 18px 0 20px;
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ffcf66, #ff8a4a);
  color: #050717;
  box-shadow: 0 15px 32px rgba(255, 148, 64, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(133, 144, 222, 0.8);
  color: var(--text-sub);
  background: rgba(7, 11, 34, 0.8);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metric-card {
  min-width: 150px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: radial-gradient(circle at top left, #262d59, #050818);
  box-shadow: var(--shadow-card);
}

.metric-label {
  font-size: 11px;
  color: var(--text-sub);
}

.metric-value {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.metric-sub {
  font-size: 11px;
  color: var(--text-sub);
}

/* HERO VIDEO DEVICE */

/* HERO VIDEO DEVICE – YATAY IMAX EKRAN */

.hero-video-shell {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Artık telefon değil, yatay IMAX panel */
.device-frame {
    position: relative;
    width: 100%;
    max-width: 430px;
    aspect-ratio: 16 / 9;
    /* gerçek sinema oranı */
    border-radius: 28px;
    padding: 8px;
    background: radial-gradient(circle at top, #1b2248, #050818);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

/* üstte küçük parlama barı */
.device-status-dot {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

/* video artık tam ekran yatay */
.device-video {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
    display: block;
}

/* etiketler sol üstte, card üzerinde */
.device-overlay {
    position: absolute;
    top: 16px;
    left: 20px;
    display: flex;
    gap: 6px;
}

.device-tag {
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.device-tag--yt {
    background: linear-gradient(135deg, #ff4141, #ff8a4a);
}

.device-tag--thisweek {
    background: rgba(0, 0, 0, 0.85);
}

/* Responsive ayar – mobilde de yatay kalsın */
@media (max-width: 960px) {
    .hero-video-shell {
        order: -1;
        /* mobilde üstte video, altında text */
        margin-bottom: 16px;
    }

    .device-frame {
        max-width: 100%;
    }
}

/* ========= ECOSYSTEM ========= */

.section-header {
  margin: 8px 0 18px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.section-header p {
  margin: 0;
  font-size: 13px;
  color: var(--text-sub);
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.video-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.video-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
  background: radial-gradient(circle at top left, #262d59, #050818);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.video-card-header,
.video-card-footer {
  padding: 10px 12px;
}

.video-card-footer h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.video-card-footer p {
  margin: 0;
  font-size: 12px;
  color: var(--text-sub);
}

.video-card-frame {
  position: relative;
  overflow: hidden;
}

.wall-video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  border: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.1),
    transparent
  );
  cursor: pointer;
}

.platform-badge {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  background: rgba(13, 18, 53, 0.9);
  color: #fff;
  margin-right: 6px;
}

.platform-badge--yt {
  background: linear-gradient(135deg, #ff4b4b, #ff9b4b);
}
.platform-badge--ig {
  background: linear-gradient(135deg, #ff00a3, #ffcf66);
}
.platform-badge--fb {
  background: linear-gradient(135deg, #1a68ff, #62a2ff);
}

.scene-tag {
  font-size: 11px;
  color: var(--text-sub);
}

/* ========= SPONSOR ========= */

.sponsor {
  margin: 40px 0 40px;
  position: relative;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 18px;
}

.sponsor-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
  background: radial-gradient(circle at top left, #262d59, #050818);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.sponsor-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.sponsor-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-sub);
}

.sponsor-card li + li {
  margin-top: 4px;
}

.sponsor-card--payments p {
  color: var(--text-sub);
}

.payments-strip img {
  width: 100%;
  max-width: 260px;
  display: block;
  margin-top: 8px;
}

/* ========= STOREFRONT ========= */

.storefront {
  max-width: 1240px;
  margin: 40px auto 60px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.store-card {
  background: radial-gradient(circle at top left, #262d59, #050818);
  border-radius: 24px;
  border: 1px solid rgba(135, 148, 231, 0.75);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
}

.store-media {
  position: relative;
  overflow: hidden;
}
.store-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.store-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.store-card--future .store-tag {
  background: linear-gradient(135deg, #ffcf66, #ff7e41);
  color: #050718;
}

.store-body {
  padding: 14px 16px 16px;
}
.store-body h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.store-body p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--text-sub);
}
.store-note {
  font-size: 11px;
  color: #dbe0ff;
}

.store-cta {
  font-size: 12px;
  text-decoration: none;
  color: #ffcf7a;
}
.store-cta:hover {
  color: #ffe1a9;
}

/* Banner slots */

.store-banner-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1.2fr;
  gap: 14px;
  margin-top: 10px;
}

.store-banner-slot {
  border-radius: 18px;
  padding: 12px 14px;
  background: radial-gradient(circle at top left, #22294e, #040714);
  border: 1px dashed rgba(151, 163, 236, 0.8);
  font-size: 12px;
  color: var(--text-sub);
}
.slot-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffcf7a;
  margin-bottom: 4px;
}
.slot-note {
  font-size: 12px;
}

/* ========= PACKAGES ========= */

.packages {
  max-width: 1240px;
  margin: 40px auto 80px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.package-card {
  background: radial-gradient(circle at top left, #262d59, #050818);
  border-radius: 24px;
  border: 1px solid rgba(135, 148, 231, 0.8);
  padding: 18px 18px 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-card--pro {
  border-color: #ffcf7a;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.95);
}

.package-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.package-tag {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--text-sub);
}

.package-card ul {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 12px;
  color: var(--text-sub);
}
.package-card li + li {
  margin-top: 3px;
}

.package-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  font-size: 12px;
}

.package-price {
  color: #ffcf7a;
}

.package-cta {
  text-decoration: none;
  font-size: 12px;
  color: #dbe2ff;
}
.package-cta:hover {
  color: #ffffff;
}

/* ========= FOOTER ========= */

.footer {
  border-top: 1px solid rgba(120, 134, 219, 0.4);
  padding-top: 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.tv-logo-mark--footer {
  width: 32px;
  height: 32px;
}

.footer-brand h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.footer-brand p {
  margin: 0;
  font-size: 12px;
  color: var(--text-sub);
}

.footer-col h4 {
  margin: 0 0 8px;
  font-size: 13px;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--text-sub);
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-bottom {
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-sub);
}

/* SOCIAL GRID */

.footer-col--social {
  width: 100%;
}

.footer-col--social .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.social-card {
  display: block;
  text-decoration: none;
  color: var(--text-sub);
  background: #04070d;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* neon border */
.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(140deg, #ff9d32, #db01ff, #00eaff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.15;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.07);
  border-color: rgba(255, 214, 94, 0.9);
  box-shadow: 0 0 25px rgba(255, 196, 89, 0.55),
    0 0 45px rgba(255, 123, 39, 0.25) inset;
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 6px;
}

.social-icon-lg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-video {
  width: 100%;
  height: 100px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: #000;
  transition: filter 0.25s ease;
}

.social-card:hover video {
  animation: speedUp 0.35s linear forwards;
}

@keyframes speedUp {
  from {
    filter: brightness(0.9) saturate(1);
  }
  to {
    filter: brightness(1.17) saturate(1.4);
  }
}

/* ========= WHATSAPP FLOAT ========= */

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
}

.wa-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
}

.wa-text {
  line-height: 1.2;
}

/* ========= RESPONSIVE ========= */

/* --------- MOBİL DÜZEN (telefon) --------- */
@media (max-width: 768px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        /* sağa sola kaymayı kes */
    }

    .page-wrap {
        padding-inline: 0;
    }

    /* HERO alanı */
    .hero {
        padding: 96px 20px 56px;
        /* sağ/sol boşlukları küçült */
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        /* önce video, sonra metin */
        gap: 32px;
    }

    .hero-video-shell {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .device-frame {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 24px;
    }

    .hero-copy {
        max-width: 100%;
        text-align: left;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-body {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        /* kartları tek sütun yap */
        gap: 12px;
    }

    /* Sponsor / paket kartları mobilde taşmasın */
    .sponsor-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-card,
    .package-card {
        margin-inline: 16px;
    }

    /* Sosyal grid – 2 kolon (YouTube–IG / FB–TikTok / X–LinkedIn) */
    .social-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 16px;
    }

    .social-card {
        width: 100%;
    }

    /* Alt metinlerin hepsini içeride tutalım */
    .section-header,
    .projects,
    .footer-grid {
        padding-inline: 20px;
    }
}/* ====== BUG OVERLAY – TELEFON CAMINDAN GEÇEN ÖRÜMCEK / AKREP ====== */

.bug-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    /* tıklamaları engellemesin */
    z-index: 9999;
    overflow: visible;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.bug-overlay--visible {
    opacity: 1;
}

/* Tüm böceklerin ortak hali */
.bug {
    position: absolute;
    width: 130px;
    /* istersen 100–160 arası oynayabilirsin */
    image-rendering: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.7));
    opacity: 0;
}

/* ÖRÜMCEK: sol üstten girip sağ alta kaçan */
.bug--spider {
    top: -20%;
    left: -15%;
}

/* AKREP: sağ alttan girip sola doğru kaçan */
.bug--scorpion {
    bottom: -25%;
    right: -20%;
    transform: scale(0.9);
}

/* Animasyon aktifken eklenecek sınıf */
.bug--animate-spider {
    animation: bugSpiderRun 4s linear forwards;
}

.bug--animate-scorpion {
    animation: bugScorpionRun 4s linear forwards;
}

/* ÖRÜMCEK rotası: çapraz, cam üzerinde kayıyor gibi */
@keyframes bugSpiderRun {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    50% {
        transform: translate3d(80vw, 60vh, 0) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translate3d(110vw, 100vh, 0) scale(1.05);
        opacity: 0;
    }
}

/* AKREP rotası: alttan yukarı bir yay çizerek */
@keyframes bugScorpionRun {
    0% {
        transform: translate3d(0, 0, 0) scale(0.9);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    60% {
        transform: translate3d(-75vw, -55vh, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate3d(-110vw, -90vh, 0) scale(1);
        opacity: 0;
    }
}

/* Mobilde görüntü çok büyük olmasın */
@media (max-width: 768px) {
    .bug {
        width: 100px;
    }
}