/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  min-height: 100vh;
}

html {
  background: #0a0a0a;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 800px at 50% 20%, rgba(255, 0, 0, 0.15), rgba(0, 0, 0, 0)),
              radial-gradient(900px 700px at 80% 80%, rgba(200, 0, 0, 0.12), rgba(0, 0, 0, 0)),
              linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
  background-attachment: fixed;
  color: #fff;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Top Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: radial-gradient(600px 300px at 50% 0%, rgba(255, 0, 0, 0.25), transparent),
              rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(255, 0, 0, 0.6);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(255, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: "Bebas Neue", Impact, system-ui, sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #ff0000 50%, #cc0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.logo-sub {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ff3333;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  position: relative;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background: #f5f5f5;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

/* Desktop'ta menü içindeki sosyal medya butonlarını gizle */
.menu-social-buttons {
  display: none;
}

.site-nav a {
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.95), rgba(220, 0, 0, 0.95));
  transition: width 0.25s ease;
}

.site-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

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

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: radial-gradient(600px 300px at 50% 0%, rgba(255, 0, 0, 0.4), transparent),
                rgba(5, 5, 5, 0.98);
    border-left: 1px solid rgba(255, 0, 0, 0.58);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    gap: 24px;
    font-size: 16px;
    transition: right 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.active {
    right: 0;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    opacity: 1;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    transform: translateX(5px);
    color: #ff3333;
  }

  /* Menü içindeki sosyal medya butonları - sadece mobilde görünür */
  .menu-social-buttons {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .menu-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1);
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .menu-social-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateX(5px);
  }
  
  .menu-social-btn.whatsapp-btn {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
  }
  
  .menu-social-btn.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
  }
  
  .menu-social-btn.tiktok-btn {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .menu-social-btn.tiktok-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .menu-social-btn.telegram-btn {
    background: rgba(37, 150, 190, 0.15);
    border-color: rgba(37, 150, 190, 0.3);
  }
  
  .menu-social-btn.telegram-btn:hover {
    background: rgba(37, 150, 190, 0.25);
    border-color: rgba(37, 150, 190, 0.5);
  }
  
  .menu-social-btn.telegram-guvence-btn {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
  }
  
  .menu-social-btn.telegram-guvence-btn:hover {
    background: rgba(255, 0, 0, 0.25);
    border-color: rgba(255, 0, 0, 0.5);
  }
  
  .menu-social-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .menu-social-btn span {
    color: #f5f5f5;
  }

  /* Overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 98;
    backdrop-filter: blur(2px);
  }

  .menu-overlay.active {
    display: block;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    padding: 10px 16px;
  }
}

/* Animated background particles effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 0, 0, 0.42), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(220, 0, 0, 0.30), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 50, 50, 0.36), transparent);
  background-size: 200% 200%;
  animation: particleMove 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes particleMove {
  0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
  50% { background-position: 100% 100%, 0% 0%, 50% 50%; }
}

/* Main Page Layout */
.page {
  min-height: 100vh;
  display: grid;
  gap: 6vh;
  align-content: center;
  justify-items: center;
  padding: 5vh 20px;
  position: relative;
  z-index: 1;
}

/* İstatistikler Container */
.stats-container {
  width: min(1000px, 94vw);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 32px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.15), rgba(20, 5, 5, 0.5));
  border: 2px solid rgba(255, 0, 0, 0.5);
  border-radius: 20px;
  box-shadow: 
    0 0 0 1px rgba(220, 0, 0, 0.12) inset,
    0 0 80px rgba(0, 0, 0, 0.6) inset,
    0 6px 24px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(255, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stats-label {
  font-size: 14px;
  font-weight: 600;
  color: #e5e5e5;
  letter-spacing: 0.8px;
  text-align: center;
}

.stats-value {
  font-family: "Bebas Neue", Impact, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #ff3333 38%, #ff0000 72%, #ff1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 2px 8px rgba(220, 0, 0, 0.5),
    0 4px 16px rgba(255, 0, 0, 0.4);
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 24px;
    padding: 18px 24px;
  }

  .stats-label {
    font-size: 12px;
  }

  .stats-value {
    font-size: 28px;
  }
}

/* Frame Container */
.frame {
  width: min(1000px, 94vw);
  padding: 32px;
  border: 2px solid rgba(255, 0, 0, 0.72);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.17), rgba(20, 5, 5, 0.6));
  box-shadow: 
    0 0 0 1px rgba(220, 0, 0, 0.13) inset,
    0 0 100px rgba(0, 0, 0, 0.7) inset,
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(255, 0, 0, 0.20);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.11) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.frame:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 0, 0, 0.92);
  box-shadow: 
    0 0 0 1px rgba(220, 0, 0, 0.19) inset,
    0 0 120px rgba(0, 0, 0, 0.8) inset,
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(255, 0, 0, 0.28);
}

/* Card Layout */
.card {
  display: grid;
  place-items: center;
  gap: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Avatar Container */
.avatar-wrap {
  position: relative;
  display: inline-block;
}

.avatar {
  width: clamp(140px, 24vw, 220px);
  height: clamp(140px, 24vw, 220px);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 7px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  transform-origin: 50% 50%;
}

.avatar-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 75%);
  filter: blur(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Avatar Hover Effects */
.card:has(.cta:hover) .avatar,
.avatar-wrap:hover .avatar {
  transform: scale(1.05) rotate(360deg);
  transition-duration: 0.8s;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 18px 60px rgba(0, 0, 0, 0.9),
    0 0 55px rgba(255, 255, 255, 0.15);
}

.card:has(.cta:hover) .avatar-glow,
.avatar-wrap:hover .avatar-glow {
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 75%);
  filter: blur(14px);
}

@media (prefers-reduced-motion: reduce) {
  .card:has(.cta:hover) .avatar,
  .avatar-wrap:hover .avatar {
    transform: scale(1.05);
  }
  
  body::before,
  .frame::before {
    animation: none;
  }
}

/* Typography */
.headline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.headline .title {
  margin: 0;
  letter-spacing: 2px;
  font-family: "Bebas Neue", Impact, system-ui, sans-serif;
  font-size: clamp(32px, 7.2vw, 64px);
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #ff3333 38%, #ff0000 72%, #ff1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 2px 8px rgba(220, 0, 0, 0.72),
    0 4px 18px rgba(255, 0, 0, 0.62),
    0 0 32px rgba(255, 0, 0, 0.52);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.frame:hover .headline .title {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 26px rgba(255, 0, 0, 0.72));
}

.frame:hover .headline .tagline {
  color: #ffffff;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(220, 0, 0, 0.62),
    0 0 34px rgba(255, 0, 0, 0.52);
}

.headline .tagline {
  margin: 0;
  letter-spacing: 1.2px;
  font-weight: 700;
  font-size: clamp(14px, 2.8vw, 24px);
  color: #f5f5f5;
  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(220, 0, 0, 0.48),
    0 0 26px rgba(255, 0, 0, 0.38);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* CTA Button */
.cta-row {
  margin-top: 12px;
}

.cta {
  display: inline-block;
  padding: 18px 32px;
  border: 2px solid rgba(255, 0, 0, 0.92);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 1px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.33), rgba(255, 30, 30, 0.14));
  box-shadow: 
    0 12px 36px rgba(255, 0, 0, 0.38),
    inset 0 0 24px rgba(255, 0, 0, 0.33),
    0 0 0 0 rgba(255, 0, 0, 0.58);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(220, 0, 0, 0.48);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 20px 54px rgba(255, 0, 0, 0.52),
    inset 0 0 32px rgba(255, 0, 0, 0.43),
    0 0 40px rgba(255, 0, 0, 0.62);
  border-color: rgba(255, 0, 0, 1);
}

.cta:hover::before {
  width: 300px;
  height: 300px;
}

.cta:active {
  transform: translateY(-1px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page {
    gap: 5vh;
    padding: 4vh 16px;
  }
  
  .frame {
    padding: 24px;
    border-radius: 20px;
  }
  
  .card {
    gap: 24px;
  }
  
  .headline .tagline {
    letter-spacing: 0.8px;
  }
  
  .cta {
    padding: 16px 28px;
  }
}

@media (max-width: 560px) {
  .frame {
    padding: 20px;
    border-radius: 18px;
  }
  
  .headline .tagline {
    letter-spacing: 0.5px;
  }
  
  .cta {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Gallery Image Styles */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.gallery-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.gallery-image {
  width: 100%;
  max-width: min(800px, 90vw);
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 16px 60px rgba(0, 0, 0, 0.9),
    0 0 48px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px;
  cursor: pointer;
}

.gallery-glow {
  position: absolute;
  inset: -16px;
  border-radius: 24px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 80%);
  filter: blur(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Gallery Image Hover Effects */
.card:has(.cta:hover) .gallery-image,
.gallery-image-wrap:hover .gallery-image {
  transform: scale(1.02);
  transition-duration: 0.4s;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 22px 74px rgba(0, 0, 0, 0.95),
    0 0 60px rgba(255, 255, 255, 0.15);
}

.card:has(.cta:hover) .gallery-glow,
.gallery-image-wrap:hover .gallery-glow {
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 80%);
  filter: blur(18px);
}

@media (prefers-reduced-motion: reduce) {
  .card:has(.cta:hover) .gallery-image,
  .gallery-image-wrap:hover .gallery-image {
    transform: scale(1.02);
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 
    0 20px 80px rgba(0, 0, 0, 0.95),
    0 0 70px rgba(255, 0, 0, 0.6);
  border: 2px solid rgba(255, 0, 0, 0.9);
  animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(20, 5, 5, 0.9);
  border: 2px solid rgba(255, 0, 0, 0.85);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.7),
    0 0 26px rgba(255, 0, 0, 0.45);
}

.lightbox-close:hover {
  background: rgba(60, 10, 4, 1);
  border-color: rgba(255, 50, 50, 1);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.75),
    0 0 34px rgba(255, 30, 30, 0.6);
}

.lightbox-close:active {
  transform: rotate(90deg) scale(0.95);
}

@media (max-width: 768px) {
  .lightbox-close {
    width: 44px;
    height: 44px;
    font-size: 28px;
    top: 15px;
    right: 15px;
  }
  
  .lightbox-content {
    max-width: 98vw;
    max-height: 98vh;
  }
  
  .lightbox-image {
    max-height: 98vh;
  }
}

/* Fixed Social Buttons */
.fixed-social-buttons {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(255, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 0, 0, 0.6);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.tiktok-btn {
  background: linear-gradient(135deg, #000000, #161823);
  color: #fff;
}

.social-btn:hover {
  transform: scale(1.15) translateX(5px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.65),
    0 0 34px rgba(255, 30, 30, 0.55);
  border-color: rgba(255, 50, 50, 1);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #2FE576, #1AB394);
}

.tiktok-btn:hover {
  background: linear-gradient(135deg, #1a1a1a, #2a2a3a);
}

.social-btn:active {
  transform: scale(1.05) translateX(3px);
}

.social-btn svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .fixed-social-buttons {
    display: none; /* Mobilde sabit butonları gizle */
  }
  
  /* Menü içindeki sosyal medya butonlarını mobilde göster */
  .menu-social-buttons {
    display: flex;
  }
}

@media (max-width: 480px) {
  .fixed-social-buttons {
    display: none; /* Mobilde sabit butonları gizle */
  }
}

/* Reklamlar Section */
.reklam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin-top: 32px;
}

.reklam-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reklam-item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(255, 0, 0, 0.3);
}

.reklam-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 2px solid rgba(255, 0, 0, 0.4);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.3);
}

.reklam-link {
  display: block;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.reklam-link:hover {
  transform: scale(1.02);
}

.reklam-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 2px solid rgba(255, 0, 0, 0.4);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reklam-link:hover .reklam-image {
  border-color: rgba(255, 0, 0, 0.7);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 0, 0, 0.35);
}

.reklam-item-with-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reklam-text {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #f5f5f5;
  text-align: center;
  line-height: 1.6;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.15), rgba(20, 5, 5, 0.4));
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 16px;
  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(255, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

/* Güvence Telegram Kanalı Bölümü */
.guvence-section {
  margin-top: 32px;
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.guvence-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  transition: transform 0.3s ease;
  max-width: 500px;
  width: 100%;
}

.guvence-link:hover {
  transform: translateY(-5px);
}

.guvence-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 2px solid rgba(255, 0, 0, 0.4);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.guvence-link:hover .guvence-image {
  border-color: rgba(255, 0, 0, 0.7);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 0, 0, 0.35);
  transform: scale(1.02);
}

.guvence-text {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #ff3333;
  text-align: center;
  line-height: 1.6;
  padding: 16px 24px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.2), rgba(20, 5, 5, 0.5));
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 16px;
  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 0, 0, 0.4);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.guvence-link:hover .guvence-text {
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.25), rgba(20, 5, 5, 0.6));
  border-color: rgba(255, 0, 0, 0.6);
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(255, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .reklam-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .reklam-item-with-text {
    gap: 16px;
  }

  .reklam-text {
    font-size: 16px;
  }

  .guvence-section {
    margin-top: 32px;
  }

  .guvence-link {
    gap: 20px;
    max-width: 100%;
  }

  .guvence-image {
    max-width: 100%;
  }

  .guvence-text {
    font-size: 18px;
    padding: 14px 20px;
    padding: 14px 16px;
  }
}

/* Referanslar Section */
.referans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  margin-top: 32px;
}

.referans-item {
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.12), rgba(20, 5, 5, 0.5));
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.referans-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 0, 0, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.referans-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 0, 0, 0.25);
}

.referans-item:hover::before {
  opacity: 1;
}

.referans-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.9), rgba(255, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 
    0 6px 16px rgba(255, 0, 0, 0.35),
    0 0 20px rgba(255, 0, 0, 0.2);
  border: 2px solid rgba(220, 0, 0, 0.4);
}

.referans-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.referans-name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.referans-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #e5e5e5;
  flex: 1;
}

.referans-rating {
  color: #ff1a1a;
  font-size: 18px;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 60, 60, 0.4);
}

@media (max-width: 768px) {
  .referans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .referans-item {
    padding: 20px;
    gap: 16px;
  }

  .referans-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 20px;
  }

  .referans-name {
    font-size: 18px;
  }

  .referans-text {
    font-size: 14px;
  }

  .referans-rating {
    font-size: 16px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
