/* ============================================
   BABA YAGA - Casino & Slot Affiliate
   Ana Stil Dosyası
   Düzenleyen: Manus AI
   Tarih: 2026-02-12
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #0a0a0f;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(10, 10, 15, 0.8); }
::-webkit-scrollbar-thumb { background: rgba(0, 255, 100, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 255, 100, 0.5); }

/* === CONTAINER === */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; max-width: 1400px; }
}

/* === NEON UTILITIES === */
.neon-text-green {
  text-shadow: 0 0 10px rgba(0, 255, 100, 0.5), 0 0 30px rgba(0, 255, 100, 0.2);
}
.neon-text-gold {
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.5), 0 0 30px rgba(212, 160, 23, 0.2);
}
.neon-line {
  background: linear-gradient(to right, transparent, #00ff64, transparent);
  box-shadow: 0 0 10px rgba(0, 255, 100, 0.5);
}

/* === GLASS CARD === */
.glass-card {
  background: rgba(15, 15, 25, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 100, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  border-color: rgba(0, 255, 100, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.15), 0 0 60px rgba(0, 255, 100, 0.05);
}

/* === SPONSOR CARD === */
.sponsor-card {
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.8), rgba(10, 30, 15, 0.6));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 100, 0.12);
  border-radius: 0.75rem;
  overflow: hidden;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sponsor-card:hover {
  border-color: rgba(0, 255, 100, 0.5);
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.2), 0 0 60px rgba(0, 255, 100, 0.08);
  transform: translateY(-4px);
}

/* === VIP CARD === */
.vip-card {
  border: 1px solid rgba(212, 160, 23, 0.3);
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.8), rgba(40, 30, 10, 0.5));
  border-radius: 0.75rem;
  overflow: hidden;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vip-card:hover {
  border-color: rgba(212, 160, 23, 0.6);
  box-shadow: 0 0 25px rgba(212, 160, 23, 0.2), 0 0 60px rgba(212, 160, 23, 0.08);
  transform: translateY(-4px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 100, 0.15);
  box-shadow: 0 4px 30px rgba(0, 255, 100, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) {
  .header-inner { height: 80px; }
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 255, 100, 0.3);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .header-logo img { width: 56px; height: 56px; }
}
.header-logo:hover img {
  border-color: rgba(0, 255, 100, 0.6);
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.3);
}
.header-logo-text { display: none; }
@media (min-width: 640px) {
  .header-logo-text { display: block; }
}
.header-logo-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (min-width: 768px) {
  .header-logo-text h1 { font-size: 1.25rem; }
}
.header-logo-text p {
  font-size: 10px;
  color: #9ca3af;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .header-logo-text p { font-size: 12px; }
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}
.desktop-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  position: relative;
}
.desktop-nav a:hover { color: #00ff64; }
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #00ff64;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 255, 100, 0.5);
}
.desktop-nav a:hover::after { width: 75%; }

/* Desktop Social */
.desktop-social {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .desktop-social { display: flex; }
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-icon-btn:hover {
  background: rgba(0, 255, 100, 0.15);
  border-color: rgba(0, 255, 100, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 100, 0.2);
  color: #fff;
  transition: color 0.3s ease;
}
@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}
.mobile-menu-btn:hover { color: #00ff64; }

/* Hamburger Icon */
.hamburger-icon {
  width: 20px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}
.mobile-menu-inner {
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 255, 100, 0.1);
  padding: 0.5rem 1rem 1.5rem;
}
.mobile-menu-inner nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.mobile-menu-inner nav a {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.mobile-menu-inner nav a:hover {
  color: #00ff64;
  background: rgba(0, 255, 100, 0.05);
}
.mobile-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
}
.mobile-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  color: #d1d5db;
}
.mobile-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.mobile-social a:hover {
  background: rgba(0, 255, 100, 0.15);
  border-color: rgba(0, 255, 100, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,15,0.6), rgba(10,10,15,0.4), #0a0a0f);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-logo-img {
  width: 9rem;
  height: 9rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 255, 100, 0.3);
  box-shadow: 0 0 40px rgba(0, 255, 100, 0.2), 0 0 80px rgba(0, 255, 100, 0.1);
  animation: pulse-glow 3s ease-in-out infinite;
}
@media (min-width: 768px) {
  .hero-logo-img { width: 12rem; height: 12rem; }
}
@media (min-width: 1024px) {
  .hero-logo-img { width: 14rem; height: 14rem; }
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: #fff;
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}
.hero-divider {
  width: 6rem;
  height: 4px;
  margin: 1rem auto;
}
.hero-subtitle {
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  max-width: 32rem;
  margin: 0 auto 0.75rem;
}
@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .hero-subtitle { font-size: 1.25rem; }
}
.hero-desc {
  color: #6b7280;
  font-size: 0.875rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .hero-desc { font-size: 1rem; }
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}
.btn-primary {
  padding: 0.875rem 2rem;
  background: linear-gradient(to right, #00cc50, #00ff64);
  color: #0a0a0f;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.4);
  transform: scale(1.05);
}
.btn-primary:active { transform: scale(0.95); }

.btn-outline {
  padding: 0.875rem 2rem;
  border: 1px solid rgba(0, 255, 100, 0.3);
  color: #00ff64;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline:hover {
  background: rgba(0, 255, 100, 0.1);
  border-color: rgba(0, 255, 100, 0.5);
  transform: scale(1.05);
}
.btn-outline:active { transform: scale(0.95); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(0, 255, 100, 0.5);
  animation: float 2s ease-in-out infinite;
  transition: color 0.3s ease;
}
.scroll-indicator:hover { color: #00ff64; }

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  position: relative;
  background: #0a0a0f;
  border-top: 1px solid rgba(0, 255, 100, 0.1);
  border-bottom: 1px solid rgba(0, 255, 100, 0.1);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-fade-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5rem;
  background: linear-gradient(to right, #0a0a0f, transparent);
  z-index: 10;
}
.marquee-fade-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5rem;
  background: linear-gradient(to left, #0a0a0f, transparent);
  z-index: 10;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 2rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}
.marquee-item:hover { color: #00ff64; }
.marquee-item .icon { font-size: 1.5rem; }
.marquee-item .text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================
   SPONSORS SECTION
   ============================================ */
.sponsors-section {
  position: relative;
  padding: 4rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (min-width: 768px) {
  .sponsors-section { padding: 6rem 0; }
}
.sponsors-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
}
.sponsors-content {
  position: relative;
  z-index: 10;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-title { margin-bottom: 3.5rem; }
}
.section-title h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .section-title h2 { font-size: 2.25rem; }
}
.section-title .divider {
  width: 5rem;
  height: 4px;
  margin: 0 auto 1rem;
}
.section-title p {
  color: #9ca3af;
  font-size: 0.875rem;
  max-width: 32rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-title p { font-size: 1rem; }
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .filter-buttons { margin-bottom: 3rem; }
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  border: 1px solid rgba(0, 255, 100, 0.1);
}
@media (min-width: 768px) {
  .filter-btn { font-size: 0.875rem; }
}
.filter-btn:hover {
  border-color: rgba(0, 255, 100, 0.3);
  color: #fff;
}
.filter-btn.active {
  background: #00ff64;
  color: #0a0a0f;
  border-color: #00ff64;
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.3);
}

/* Tier Header */
.tier-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.tier-header h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
.tier-header .line {
  flex: 1;
  height: 1px;
}

/* Sponsor Grid */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .sponsor-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .sponsor-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .sponsor-grid { gap: 1.5rem; }
}

/* Card Inner */
.card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.badge-vip {
  background: linear-gradient(to right, #d4a017, #ffd700);
  color: #0a0a0f;
}
.badge-main {
  background: linear-gradient(to right, #00cc50, #00ff64);
  color: #0a0a0f;
}
.badge-trusted {
  background: rgba(0, 255, 100, 0.15);
  border: 1px solid rgba(0, 255, 100, 0.3);
  color: #00ff64;
}

.card-logo-area {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 640px) {
  .card-logo-area { height: 6rem; }
}
@media (min-width: 768px) {
  .card-logo-area { height: 8rem; }
}
.card-logo-area.vip-bg {
  background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.02));
}
.card-logo-area.green-bg {
  background: linear-gradient(135deg, rgba(0,255,100,0.05), transparent);
}
.card-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: transform 0.3s ease;
}
@media (min-width: 640px) {
  .card-logo-text { font-size: 1.125rem; }
}
@media (min-width: 768px) {
  .card-logo-text { font-size: 1.25rem; }
}
.sponsor-card:hover .card-logo-text,
.vip-card:hover .card-logo-text {
  transform: scale(1.1);
}
.card-logo-text.gold { color: #ffd700; }
.card-logo-text.green { color: #00ff64; }

.card-info { padding: 0.75rem; }
@media (min-width: 640px) {
  .card-info { padding: 1rem; }
}
.card-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .card-info h3 { font-size: 0.875rem; }
}
.card-info .desc {
  color: #6b7280;
  font-size: 0.65rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .card-info .desc { font-size: 0.75rem; margin-bottom: 0.75rem; }
}
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .bonus-badge { gap: 0.375rem; padding: 0.375rem 0.75rem; font-size: 0.75rem; }
}
.bonus-badge.gold {
  background: rgba(212, 160, 23, 0.15);
  color: #ffd700;
  border: 1px solid rgba(212, 160, 23, 0.2);
}
.bonus-badge.green {
  background: rgba(0, 255, 100, 0.1);
  color: #00ff64;
  border: 1px solid rgba(0, 255, 100, 0.15);
}
.card-cta {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
@media (min-width: 640px) {
  .card-cta { margin-top: 1rem; gap: 0.5rem; padding: 0.625rem; font-size: 0.75rem; }
}
.card-cta.gold-cta {
  background: linear-gradient(to right, #d4a017, #ffd700);
  color: #0a0a0f;
}
.card-cta.green-cta {
  background: linear-gradient(to right, #00cc50, #00ff64);
  color: #0a0a0f;
}
.vip-card:hover .card-cta.gold-cta { box-shadow: 0 0 20px rgba(212, 160, 23, 0.3); }
.sponsor-card:hover .card-cta.green-cta { box-shadow: 0 0 20px rgba(0, 255, 100, 0.3); }

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .social-section { padding: 6rem 0; }
}
.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.80);
}
.social-content {
  position: relative;
  z-index: 10;
}
.silhouette-decoration {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  opacity: 0.2;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .silhouette-decoration { display: block; width: 400px; }
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .social-grid { gap: 1.5rem; }
}
.social-card {
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: block;
}
@media (min-width: 768px) {
  .social-card { padding: 1.5rem; }
}
.social-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.social-icon-box {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.social-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.social-card:hover .social-icon-box { transform: scale(1.1); }
.social-card-info { flex: 1; min-width: 0; }
.social-card-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}
.social-card-info p {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.5;
}
.social-card-follow {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  transition: color 0.3s ease;
}
.social-card:hover .social-card-follow { color: #d1d5db; }
.social-card-follow .arrow {
  transition: transform 0.3s ease;
}
.social-card:hover .social-card-follow .arrow { transform: translateX(4px); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-size: cover;
  background-position: center top;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.90);
}
.footer-neon-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.footer-content {
  position: relative;
  z-index: 10;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-brand .brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand .brand-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 255, 100, 0.3);
}
.footer-brand .brand-header h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-brand .brand-header p {
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-brand .brand-desc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-links h4,
.footer-social-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links nav a {
  color: #6b7280;
  font-size: 0.875rem;
}
.footer-links nav a:hover { color: #00ff64; }
.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  color: #d1d5db;
}
.footer-social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-social-icons a:hover {
  background: rgba(0, 255, 100, 0.15);
  border-color: rgba(0, 255, 100, 0.3);
}

/* Disclaimer */
.disclaimer-wrapper {
  border-top: 1px solid rgba(0, 255, 100, 0.1);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.disclaimer-box {
  border-radius: 0.5rem;
  padding: 1rem;
}
.disclaimer-box p {
  color: #4b5563;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
.disclaimer-box strong { color: #6b7280; }

/* Bottom Bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: #4b5563;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-bottom-links a:hover { color: #00ff64; }
.footer-bottom-links .dot {
  width: 4px;
  height: 4px;
  background: #374151;
  border-radius: 50%;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 100, 0.3); }
  50% { box-shadow: 0 0 25px rgba(0, 255, 100, 0.5), 0 0 50px rgba(0, 255, 100, 0.2); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
