/* ============================================
   LOGLINE ENTERTAINMENT - PRODUCTION STYLES

   TO EDIT COLORS: Change the variables below
   TO EDIT FONTS: Change the font-family values
   ============================================ */

:root {
  --cream: #F5F2ED;
  --orange: #F5A623;
  --orange-hover: #e09520;
  --dark: #1A1A1A;
  --navy: #1B2A4A;
  --white: #FFFFFF;
  --gray: #888888;
  --gaming-bg: #0a0f1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; }
img { max-width: 100%; height: auto; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(27, 42, 74, 0.9); backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled { background: rgba(27, 42, 74, 0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 40px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 20px; font-weight: 800; color: var(--orange); letter-spacing: 1px; text-decoration: none; }
.logo span { color: var(--white); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--orange); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0d1b2a 0%, var(--navy) 40%, #162544 70%, #0d1b2a 100%);
  position: relative; overflow: hidden; text-align: center;
  padding: 120px 40px 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}
.hero-glow {
  position: absolute; top: -30%; right: -10%; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, rgba(245,166,35,0.05) 40%, transparent 70%);
  border-radius: 50%; pointer-events: none; animation: heroGlowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; bottom: -20%; left: -5%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; animation: heroGlowPulse 8s ease-in-out infinite reverse;
}
.hero-glow-3 {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%); width: 1000px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.06) 0%, transparent 60%);
  pointer-events: none;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
/* Floating geometric shapes */
.hero-float {
  position: absolute; pointer-events: none; border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.15);
}
.hero-float-1 {
  width: 300px; height: 300px; top: 10%; left: 5%;
  animation: heroFloat 20s ease-in-out infinite;
}
.hero-float-2 {
  width: 200px; height: 200px; bottom: 15%; right: 8%;
  border-radius: 30%; animation: heroFloat 15s ease-in-out infinite reverse;
}
.hero-float-3 {
  width: 150px; height: 150px; top: 30%; right: 15%;
  border: 1px solid rgba(255,255,255,0.05);
  animation: heroFloat 18s ease-in-out infinite 2s;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}
/* Decorative lines */
.hero-line {
  position: absolute; pointer-events: none; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.2), transparent);
}
.hero-line-1 { width: 400px; top: 25%; left: -50px; transform: rotate(-15deg); }
.hero-line-2 { width: 300px; bottom: 30%; right: -30px; transform: rotate(20deg); }
/* Hero content styles */
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-block; padding: 8px 20px; border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--orange);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px;
  background: rgba(245,166,35,0.05); backdrop-filter: blur(4px);
}
.hero h1 { font-size: clamp(38px, 5.5vw, 64px); font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 24px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: clamp(16px, 2vw, 18px); color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 36px; font-weight: 300; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-cta-row { display: flex; gap: 16px; justify-content: center; align-items: center; margin-bottom: 50px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-block; padding: 16px 40px; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; font-size: 15px;
  border-radius: 6px; transition: all 0.3s; background: transparent;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: rgba(245,166,35,0.05); }
.hero-stats {
  display: flex; gap: 32px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-stat strong { font-size: 24px; font-weight: 800; color: var(--orange); }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
.hero-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }
.btn-primary {
  display: inline-block; padding: 16px 40px; background: var(--orange); color: var(--white);
  text-decoration: none; font-weight: 600; font-size: 15px; border-radius: 6px;
  letter-spacing: 0.5px; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.3); }

/* ===== SECTIONS ===== */
section { padding: 100px 40px; }
.section-label { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(32px, 4vw, 42px); font-weight: 800; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.section-subtitle { font-size: 17px; color: #666; line-height: 1.7; max-width: 700px; font-weight: 300; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-text p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 20px; }
.about-visual {
  background: linear-gradient(135deg, var(--cream) 0%, #ede8e0 50%, var(--cream) 100%);
  border-radius: 16px; padding: 50px; display: flex;
  align-items: center; justify-content: center; min-height: 400px; position: relative;
  overflow: hidden;
}
.about-visual-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; z-index: 2; width: 100%; gap: 24px;
}
.about-visual-text {
  font-size: 72px; font-weight: 800; color: var(--navy); letter-spacing: -1px;
}
.about-visual-text span { color: var(--orange); }
/* About floating shapes */
.about-float-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.about-shape-1 {
  width: 200px; height: 200px; top: -40px; right: -40px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  animation: aboutFloat 12s ease-in-out infinite;
}
.about-shape-2 {
  width: 150px; height: 150px; bottom: -30px; left: -30px;
  background: radial-gradient(circle, rgba(27,42,74,0.06) 0%, transparent 70%);
  animation: aboutFloat 16s ease-in-out infinite reverse;
}
.about-shape-3 {
  width: 80px; height: 80px; top: 30%; left: 10%;
  border: 1px solid rgba(245,166,35,0.12);
  animation: aboutFloat 10s ease-in-out infinite 2s;
}
@keyframes aboutFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -15px) scale(1.05); }
}

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.service-card {
  background: var(--white); padding: 40px 32px; border-radius: 10px;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { margin-bottom: 20px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== PR SHOWCASE ===== */
.pr-showcase { background: var(--white); }
.pr-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.pr-intro-text h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.pr-intro-text p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.pr-intro-text ul { list-style: none; padding: 0; }
.pr-intro-text li { font-size: 14px; color: #555; padding: 8px 0; padding-left: 24px; position: relative; }
.pr-intro-text li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.pr-hero-image {
  height: 380px; border-radius: 16px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #2c3e6b 100%);
}
.pr-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.pr-hero-image .img-placeholder-text { display: none; }
.pr-hero-image.placeholder-active .img-placeholder-text {
  display: flex; align-items: center; justify-content: center; text-align: center;
  height: 100%; color: rgba(255,255,255,0.35); font-size: 14px; line-height: 1.6;
}
.pr-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.pr-card {
  background: var(--cream); border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.pr-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.pr-img {
  height: 200px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #2c3e6b 100%);
}
.pr-img img { width: 100%; height: 100%; object-fit: cover; }
.pr-img .img-placeholder-text { display: none; }
.pr-img.placeholder-active .img-placeholder-text {
  display: flex; align-items: center; justify-content: center;
  height: 100%; color: rgba(255,255,255,0.35); font-size: 13px;
}
.pr-info { padding: 20px; }
.pr-info h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pr-info p { font-size: 13px; color: var(--gray); line-height: 1.5; }
.tag { display: inline-block; margin-top: 10px; font-size: 10px; font-weight: 700; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; }

/* ===== GAMING ===== */
.gaming { background: var(--gaming-bg); }
.gaming .section-label { color: rgba(245,166,35,0.8); }
.gaming .section-title { color: var(--white); }
.gaming .section-subtitle { color: rgba(255,255,255,0.55); }
.gaming-hero-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  margin-bottom: 20px;
}
.gaming-hero-img {
  display: flex; justify-content: center; align-items: center;
}
.gaming-hero-img img {
  max-width: 100%; max-height: 420px; object-fit: contain; border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.gaming-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.gaming-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 36px 28px; transition: all 0.3s;
}
.gaming-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(245,166,35,0.2); }
.g-icon { margin-bottom: 20px; }
.gaming-card h4 { color: var(--white); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.gaming-card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.gaming-cta { text-align: center; margin-top: 50px; }
.gaming-cta p { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 20px; }

/* ===== CREATORS ===== */
.creators { background: var(--white); }
.creators-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.creator-card { text-align: center; }
.creator-photo {
  width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1); transition: transform 0.3s;
}
.creator-card:hover .creator-photo { transform: scale(1.05); }
.creator-photo.orange { background: var(--orange); }
.creator-photo.navy { background: var(--navy); }
.creator-photo.dark { background: #2c3e50; }
.creator-photo.teal { background: #0891b2; }
.creator-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 2; }
.creator-photo .initials { font-size: 36px; font-weight: 800; color: var(--white); z-index: 1; }
.creator-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.creator-card .handle { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.creator-card .followers { font-size: 13px; color: var(--orange); font-weight: 600; }
.creator-card .category { font-size: 11px; color: #aaa; margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }
.creators-note {
  text-align: center; margin-top: 50px; padding: 40px 30px;
  background: var(--cream); border-radius: 12px;
}
.creators-note .big-num { font-size: 52px; font-weight: 800; color: var(--orange); }
.creators-note p { font-size: 15px; color: #666; margin-top: 10px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== CLIENTS ===== */
.clients { background: var(--cream); text-align: center; }
.client-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px; margin-top: 60px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.client-logo {
  font-size: 13px; font-weight: 700; color: var(--navy); opacity: 0.65;
  padding: 16px 28px; background: transparent; border-radius: 8px;
  transition: all 0.4s ease; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center;
}
.client-logo.has-img {
  padding: 12px 20px; opacity: 0.8;
}
.client-logo.has-img img {
  max-height: 55px; max-width: 130px; object-fit: contain;
}
.client-logo:hover { opacity: 1; transform: translateY(-3px) scale(1.05); }

/* ===== STATS ===== */
.stats { background: var(--navy); }
.stats .section-label { color: rgba(245,166,35,0.8); }
.stats .section-title { color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; }
.stat-item { text-align: center; }
.stat-number, .stat-number-text { font-size: clamp(40px, 5vw, 52px); font-weight: 800; color: var(--orange); display: inline; }
.stat-suffix { font-size: clamp(28px, 3.5vw, 36px); font-weight: 800; color: var(--orange); display: inline; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 8px; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.contact-info h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-detail .icon {
  width: 42px; height: 42px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail .text { font-size: 14px; color: #444; line-height: 1.6; }
.contact-detail .text strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-detail .text a { color: #444; text-decoration: none; transition: color 0.2s; }
.contact-detail .text a:hover { color: var(--orange); }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all 0.3s;
}
.social-btn.ig { background: var(--navy); }
.social-btn.li { background: var(--navy); }
.social-btn.wa { background: #25D366; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.contact-form {
  background: var(--cream); padding: 40px; border-radius: 12px;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 16px 18px; border: 1px solid #ddd; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 14px; margin-bottom: 16px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; background: white;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
.contact-form textarea { height: 130px; resize: vertical; }
.contact-form button {
  width: 100%; padding: 16px; background: var(--orange); color: white; border: none;
  border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.contact-form button:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.3); }

/* ===== FOOTER ===== */
footer { background: var(--dark); padding: 60px 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-size: 18px; font-weight: 800; color: var(--orange); }
.footer-logo span { color: var(--white); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.copyright { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== NAV SOCIAL ICONS ===== */
.nav-social { display: flex; gap: 10px; align-items: center; margin-right: 16px; }
.nav-social-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none;
  position: relative; overflow: hidden;
}
.nav-social-icon::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--orange); transform: scale(0); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-social-icon:hover::before { transform: scale(1); }
.nav-social-icon svg { position: relative; z-index: 1; }
.nav-social-icon:hover { color: white; transform: translateY(-2px) scale(1.1); }

/* ===== HERO FLOATING SOCIAL ICONS ===== */
.hero-social-float {
  position: absolute; pointer-events: none; z-index: 1;
  color: rgba(245,166,35,0.2); width: 44px; height: 44px;
}
.hero-sf-1 {
  top: 18%; left: 12%; animation: socialOrbit1 22s ease-in-out infinite, socialPulse 4s ease-in-out infinite;
}
.hero-sf-2 {
  top: 25%; right: 10%; width: 36px; height: 36px;
  animation: socialOrbit2 18s ease-in-out infinite, socialPulse 5s ease-in-out infinite 1s;
}
.hero-sf-3 {
  bottom: 28%; left: 8%; width: 32px; height: 32px;
  animation: socialOrbit3 25s ease-in-out infinite, socialPulse 3.5s ease-in-out infinite 0.5s;
}
.hero-sf-4 {
  bottom: 18%; right: 14%; width: 28px; height: 28px;
  animation: socialOrbit1 20s ease-in-out infinite reverse, socialPulse 4.5s ease-in-out infinite 2s;
}
.hero-sf-5 {
  top: 35%; left: 3%; width: 28px; height: 28px;
  color: rgba(255,255,255,0.1);
  animation: socialOrbit2 28s ease-in-out infinite, socialPulse 5s ease-in-out infinite 1.5s;
}
.hero-sf-6 {
  top: 15%; right: 20%; width: 34px; height: 34px;
  color: rgba(255,255,255,0.1);
  animation: socialOrbit3 24s ease-in-out infinite reverse, socialPulse 4s ease-in-out infinite 0.8s;
}
@keyframes socialOrbit1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(10deg); }
  50% { transform: translate(-10px, -35px) rotate(-5deg); }
  75% { transform: translate(20px, -10px) rotate(8deg); }
}
@keyframes socialOrbit2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-20px, 15px) rotate(-8deg); }
  50% { transform: translate(10px, 25px) rotate(12deg); }
  75% { transform: translate(-15px, -10px) rotate(-6deg); }
}
@keyframes socialOrbit3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(25px, -15px) rotate(15deg); }
  66% { transform: translate(-20px, 20px) rotate(-10deg); }
}
@keyframes socialPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== FLOATING SOCIAL SIDEBAR ===== */
.social-sidebar {
  position: fixed; left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 90; display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; pointer-events: none; transition: opacity 0.5s ease, transform 0.5s ease;
}
.social-sidebar.visible {
  opacity: 1; pointer-events: auto;
}
.sidebar-social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
  background: rgba(27,42,74,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.sidebar-social-icon::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  transform: scale(0); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sb-ig::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sb-li::before { background: #0077B5; }
.sb-wa::before { background: #25D366; }
.sb-tk::before { background: linear-gradient(135deg, #00f2ea, #ff0050); }
.sidebar-social-icon:hover::before { transform: scale(1); }
.sidebar-social-icon:hover {
  color: white; transform: translateX(6px) scale(1.15);
  border-color: transparent; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.sidebar-social-icon svg { position: relative; z-index: 1; }
.sidebar-line {
  width: 1px; height: 40px; margin-top: 4px;
  background: linear-gradient(to bottom, rgba(245,166,35,0.4), transparent);
}

/* ===== CONTACT SOCIAL ENHANCED ===== */
.social-btn.tk { background: var(--dark); }
.social-btn svg { pointer-events: none; }
.social-btn {
  position: relative; overflow: hidden;
}
.social-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  transform: scale(0); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-btn.ig::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.li::before { background: #0077B5; }
.social-btn.wa::before { background: #128C7E; }
.social-btn.tk::before { background: linear-gradient(135deg, #00f2ea, #ff0050); }
.social-btn:hover::before { transform: scale(1); }
.social-btn svg { position: relative; z-index: 1; }

/* ===== FOOTER SOCIAL ===== */
.footer-social { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08);
  text-decoration: none; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
}
.footer-social-icon::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--orange); transform: scale(0); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-social-icon:hover::after { transform: scale(1); }
.footer-social-icon svg { position: relative; z-index: 1; }
.footer-social-icon:hover { color: white; transform: translateY(-4px) rotate(8deg); box-shadow: 0 6px 20px rgba(245,166,35,0.3); }

/* ===== ANIMATIONS ===== */
.animate-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: all 0.7s ease; }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translate(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .creators-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .gaming-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 70px 24px; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 20px; }
  .hero-float, .hero-line { display: none; }
  .hero-cta-row { flex-direction: column; gap: 12px; }
  .btn-ghost, .hero-cta-row .btn-primary { width: 100%; max-width: 280px; text-align: center; }
  .nav-inner { padding: 14px 24px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(27, 42, 74, 0.98); flex-direction: column;
    align-items: center; justify-content: center; gap: 28px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; }
  .mobile-toggle { display: block; z-index: 101; }
  .nav-social { display: none; }
  .social-sidebar { display: none !important; }
  .hero-social-float { display: none; }
  .footer-social { justify-content: center; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 250px; }
  .services-grid { grid-template-columns: 1fr; }
  .pr-intro { grid-template-columns: 1fr; }
  .pr-gallery { grid-template-columns: 1fr; }
  .gaming-hero-layout { grid-template-columns: 1fr; gap: 30px; }
  .gaming-hero-img img { max-height: 300px; }
  .gaming-grid { grid-template-columns: 1fr; }
  .about-mini-stats { padding: 12px 20px; gap: 14px; }
  .about-logo-img { max-width: 200px; }
  .creators-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .creator-photo { width: 120px; height: 120px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-badge { font-size: 10px; padding: 6px 14px; }
  .hero-stats { gap: 16px; }
  .hero-stat-divider { height: 24px; }
  .creators-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .creator-photo { width: 100px; height: 100px; }
  .client-logos { gap: 10px; }
  .client-logo { padding: 12px 18px; font-size: 11px; }
}
