/*
Theme Name: VP Player
Theme URI: https://vpplayer.com
Author: VP Player Team
Description: One Page APK Download Theme for VP Player App
Version: 1.0
License: GNU General Public License v2 or later
Tags: one-page, app-download, apk, video-player, blue
*/

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --blue-deep: #0a1628;
  --blue-dark: #0d1f3c;
  --blue-mid: #1a3a6b;
  --blue-primary: #1565C0;
  --blue-accent: #1E88E5;
  --blue-light: #42A5F5;
  --blue-glow: #64B5F6;
  --white: #ffffff;
  --white-dim: rgba(255,255,255,0.85);
  --white-soft: rgba(255,255,255,0.6);
  --white-ghost: rgba(255,255,255,0.08);
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a3a6b 50%, #0d2a52 100%);
  --gradient-btn: linear-gradient(135deg, #1565C0, #1E88E5);
  --shadow-blue: 0 8px 32px rgba(21, 101, 192, 0.4);
  --shadow-glow: 0 0 40px rgba(66, 165, 245, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--blue-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.vp-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(66,165,245,0.15);
  transition: all 0.3s ease;
}

.vp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.vp-logo-icon {
  width: 42px; height: 42px;
  background: var(--gradient-btn);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-blue);
}

.vp-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.vp-logo-text span { color: var(--blue-light); }

.vp-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.vp-nav-links a {
  color: var(--white-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.vp-nav-links a:hover { color: var(--blue-light); }

.vp-nav-cta {
  background: var(--gradient-btn);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-blue);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.vp-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(21,101,192,0.6) !important;
  color: var(--white) !important;
}

/* ===== HERO ===== */
.vp-hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 40px 60px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(66,165,245,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66,165,245,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,136,229,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: pulse 4s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,101,192,0.12) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  animation: pulse 6s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.vp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66,165,245,0.15);
  border: 1px solid rgba(66,165,245,0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}

.hero-badge span { font-size: 16px; }

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeDown 0.8s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--white-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeDown 0.8s ease 0.2s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  animation: fadeDown 0.8s ease 0.3s both;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-light);
}
.stat-label { font-size: 12px; color: var(--white-soft); font-weight: 600; letter-spacing: 0.5px; }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown 0.8s ease 0.4s both;
}

/* Google Play Style Button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: #1a1a1a;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  color: #1a1a1a;
  text-decoration: none;
}

.btn-play-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #00C853, #1DE9B6);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.btn-play-text { line-height: 1.2; }
.btn-play-text small { font-size: 10px; font-weight: 400; color: #666; display: block; }
.btn-play-text strong { font-size: 15px; }

/* APK Direct Download */
.btn-apk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-btn);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(66,165,245,0.3);
}

.btn-apk:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(21,101,192,0.6);
  color: var(--white);
  text-decoration: none;
}

.btn-apk-icon { font-size: 22px; }

/* Hero Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeLeft 1s ease 0.3s both;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: linear-gradient(145deg, #1a2a4a, #0d1f3c);
  border-radius: 40px;
  border: 3px solid rgba(66,165,245,0.3);
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--shadow-glow);
  overflow: hidden;
  transform: perspective(800px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s;
}

.phone-mockup:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.phone-notch {
  width: 100px; height: 22px;
  background: #0a1628;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.phone-screen {
  padding: 12px;
  height: calc(100% - 22px);
  background: #0a0f1e;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-app-header {
  background: var(--gradient-btn);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.phone-video-thumb {
  background: linear-gradient(135deg, #1a3a6b, #0d2a52);
  border-radius: 8px;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}

.phone-video-thumb::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border: 3px solid rgba(255,255,255,0.6);
  border-radius: 50%;
}

.phone-controls {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px;
  font-size: 18px;
}

/* ===== FEATURES ===== */
.vp-features {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(66,165,245,0.1);
  border: 1px solid rgba(66,165,245,0.25);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight {
  color: var(--blue-light);
}

.section-desc {
  color: var(--white-soft);
  font-size: 16px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(66,165,245,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(66,165,245,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(21,101,192,0.2);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(21,101,192,0.3), rgba(30,136,229,0.2));
  border: 1px solid rgba(66,165,245,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.feature-desc {
  font-size: 14px;
  color: var(--white-soft);
  line-height: 1.7;
}

/* ===== SCREENSHOTS ===== */
.vp-screenshots {
  padding: 100px 40px;
  background: var(--blue-deep);
  overflow: hidden;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  animation: scrollLeft 25s linear infinite;
  width: max-content;
  margin-top: 40px;
}

.screenshots-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.screenshot-card {
  width: 200px;
  height: 380px;
  background: linear-gradient(145deg, #1a2a4a, #0d1f3c);
  border-radius: 24px;
  border: 2px solid rgba(66,165,245,0.2);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.screenshot-card:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: rgba(66,165,245,0.5);
}

.screenshot-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 16px;
  gap: 10px;
}

.ss-header {
  background: var(--gradient-btn);
  border-radius: 8px;
  height: 36px;
  display: flex; align-items: center;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
}

.ss-video {
  flex: 1;
  background: linear-gradient(135deg, #0d1f3c, #1a3a6b);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  position: relative;
}

.ss-controls {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  height: 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  font-size: 14px;
}

.ss-progress {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.ss-progress-bar {
  height: 100%;
  background: var(--blue-accent);
  width: 45%;
  border-radius: 2px;
}

/* ===== DOWNLOAD CTA ===== */
.vp-download {
  padding: 100px 40px;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 50%, #0d1f3c 100%);
  position: relative;
  overflow: hidden;
}

.download-bg-circle {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(30,136,229,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.vp-download-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.download-icon {
  width: 90px; height: 90px;
  background: var(--gradient-btn);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-blue);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.download-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  margin-bottom: 16px;
}

.download-desc {
  color: var(--white-soft);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-play-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  color: #1a1a1a;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.btn-play-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  color: #1a1a1a;
  text-decoration: none;
}

.btn-play-large-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #00C853, #1DE9B6);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

.btn-apk-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  border: 2px solid rgba(66,165,245,0.5);
}

.btn-apk-large:hover {
  background: rgba(66,165,245,0.1);
  border-color: var(--blue-light);
  transform: translateY(-4px);
  color: var(--white);
  text-decoration: none;
}

.download-note {
  font-size: 13px;
  color: var(--white-soft);
}

.download-note a {
  color: var(--blue-light);
  text-decoration: none;
}

/* ===== FOOTER ===== */
.vp-footer {
  background: #060e1a;
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(66,165,245,0.1);
}

.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo span { color: var(--blue-light); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--white-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--blue-light); }

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .vp-navbar { padding: 16px 20px; }
  .vp-nav-links { display: none; }
  .vp-hero { padding: 90px 20px 60px; }
  .vp-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .vp-features, .vp-screenshots, .vp-download { padding: 70px 20px; }
  .download-buttons { flex-direction: column; align-items: center; }
}
