/* Modern Minimalist Styles - Freedom Soft */

/* CSS Variables for consistent theming */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #ffffff;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --radius: 30px;
  --radius-lg: 44px;
  --radius-sm: 10px;
  --transition: all 0.2s ease;
}

/* Reset and base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header */
.header {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navigation {
  padding: 1rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a.active {
  color: var(--primary);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* App Hero (for VPN/IPTV pages) */
.app-hero {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
  text-align: center;
}

.app-hero .hero-content {
  max-width: 600px;
}

.app-hero h1 {
  margin-bottom: 0.75rem;
}

.app-hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--text-muted);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* App Cards */
.app-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.app-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.app-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.app-card a {
  display: block;
  padding: 2rem;
  text-align: center;
}

.app-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.app-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Feature List */
.features {
  background-color: var(--bg-secondary);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background-color: var(--bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* About Section */
.about {
  background-color: var(--bg-primary);
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Screenshots */
.screenshots {
  background-color: var(--bg-secondary);
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.screenshot-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--bg-primary);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.screenshot-item:hover img {
  transform: scale(1.02);
}

/* Download Section */
.download {
  background-color: var(--bg-primary);
}

.download-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background-color: var(--text-primary);
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
}

.download-btn:hover {
  background-color: var(--primary);
  transform: translateY(-1px);
}

.download-btn i {
  font-size: 1.25rem;
}

/* Download Badges */
.download-badge {
  display: inline-block;
  transition: var(--transition);
}

.download-badge img {
  height: 48px;
  width: auto;
  display: block;
}

.download-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Channels Section (IPTV) */
.channels {
  background-color: var(--bg-secondary);
}

.channel-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.category {
  background-color: var(--bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.category h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--primary);
}

.category ul {
  list-style: none;
}

.category li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.category li:last-child {
  border-bottom: none;
}

/* Footer */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* VPN and IPTV specific colors and enhanced styles */

/* VPN Styles - Red Theme */
.vpn {
  --product-primary: #ef4444;
  --product-primary-dark: #dc2626;
  --product-primary-light: #f87171;
  --product-bg: #fef2f2;
  --product-bg-gradient: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.vpn .app-hero {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fecaca 100%);
  position: relative;
  overflow: hidden;
}

.vpn .app-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.vpn .app-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.vpn .hero-content {
  position: relative;
  z-index: 1;
}

.vpn .btn-primary {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.vpn .btn-primary:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
  transform: translateY(-2px);
}

.vpn .btn-secondary {
  color: #ef4444;
  border-color: #ef4444;
}

.vpn .btn-secondary:hover {
  background-color: #fef2f2;
}

.vpn .feature-item {
  border: 2px solid transparent;
  position: relative;
}

.vpn .feature-item:hover {
  border-color: #fecaca;
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.12);
}

.vpn .feature-item i {
  color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.vpn .platform-section {
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.vpn .platform-item {
  background: white;
  border: 2px solid #fee2e2;
}

.vpn .platform-item:hover {
  border-color: #ef4444;
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15);
}

.vpn .platform-item i {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  color: #ef4444;
  -webkit-text-fill-color: #ef4444;
}

.vpn .screenshot-item {
  border: 2px solid #fee2e2;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.08);
}

.vpn .screenshot-item:hover {
  border-color: #fecaca;
  box-shadow: 0 8px 40px rgba(239, 68, 68, 0.15);
}

.vpn .download {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}



.vpn .category h3 {
  color: #ef4444;
}

/* IPTV Styles - Blue Theme */
.iptv {
  --product-primary: #3b82f6;
  --product-primary-dark: #2563eb;
  --product-primary-light: #60a5fa;
  --product-bg: #eff6ff;
  --product-bg-gradient: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.iptv .app-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  position: relative;
  overflow: hidden;
}

.iptv .app-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.iptv .app-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.iptv .hero-content {
  position: relative;
  z-index: 1;
}

.iptv .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.iptv .btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
}

.iptv .btn-secondary {
  color: #3b82f6;
  border-color: #3b82f6;
}

.iptv .btn-secondary:hover {
  background-color: #eff6ff;
}

.iptv .feature-item {
  border: 2px solid transparent;
  position: relative;
}

.iptv .feature-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
}

.iptv .feature-item i {
  color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.iptv .platform-section {
  background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
}

.iptv .platform-item {
  background: white;
  border: 2px solid #dbeafe;
}

.iptv .platform-item:hover {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.iptv .platform-item i {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  color: #3b82f6;
  -webkit-text-fill-color: #3b82f6;
}

.iptv .screenshot-item {
  border: 2px solid #dbeafe;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

.iptv .screenshot-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.15);
}

.iptv .download {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.iptv .download-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.iptv .download-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
  transform: translateY(-3px);
}

.iptv .category h3 {
  color: #3b82f6;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Platform Badges on Cards */
.platforms {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 60px;
}

.platform-badge i {
  font-size: 1rem;
  color: var(--text-secondary);
}

.platform-badge span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.app-card:hover .platform-badge {
  background-color: var(--bg-secondary);
}

/* Platform Section Styles */
.platform-section {
  background-color: var(--bg-secondary);
  padding: 3rem 0;
}

.platform-section .section-header {
  margin-bottom: 2rem;
}

.platform-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  min-width: 120px;
  transition: var(--transition);
}

.platform-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.vpn .platform-item:hover {
  border-color: #ef4444;
}

.iptv .platform-item:hover {
  border-color: #3b82f6;
}

.platform-item i {
  font-size: 2rem;
  color: var(--text-primary);
}

.platform-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Enhanced Product Page Styles */

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.vpn .hero-badge {
  color: #ef4444;
}

.vpn .hero-badge i {
  color: #ef4444;
}

.iptv .hero-badge {
  color: #3b82f6;
}

.iptv .hero-badge i {
  color: #3b82f6;
}

/* Hero Description */
.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.vpn .stat-number {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iptv .stat-number {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.vpn .section-badge {
  background: #fee2e2;
  color: #dc2626;
}

.iptv .section-badge {
  background: #dbeafe;
  color: #2563eb;
}

/* Platform Icon Wrapper */
.platform-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 0.5rem;
}

.vpn .platform-icon-wrapper {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.vpn .platform-icon-wrapper i {
  font-size: 1.75rem;
  color: #ef4444;
}

.iptv .platform-icon-wrapper {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.iptv .platform-icon-wrapper i {
  font-size: 1.75rem;
  color: #3b82f6;
}

.platform-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.platform-version {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Screenshot Styles */
.screenshot-item {
  text-align: center;
}

.screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  background: white;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Enhanced Download Buttons */
.download-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
  transition: var(--transition);
  min-width: 180px;
}

.download-icon {
  font-size: 1.75rem;
  opacity: 0.9;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.download-label {
  font-size: 0.6875rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.download-store {
  font-size: 1.125rem;
  font-weight: 600;
}

.download-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.vpn .download-note {
  background: rgba(254, 242, 242, 0.6);
}

.iptv .download-note {
  background: rgba(239, 246, 255, 0.6);
}

/* QR Code */
.download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}



.iptv .download-qr {
  background: rgba(239, 246, 255, 0.8);
}

#qr-code {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Category Icon */
.category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.vpn .category-icon {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.vpn .category-icon i {
  font-size: 1.25rem;
  color: #ef4444;
}

.iptv .category-icon {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.iptv .category-icon i {
  font-size: 1.25rem;
  color: #3b82f6;
}

/* Enhanced Feature List */
.features .feature-list {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.features .feature-item {
  padding: 2rem;
  text-align: left;
}

.features .feature-item i {
  margin: 0 0 1rem 0;
}

/* App Hero Enhancement */
.app-hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
}

.app-hero .btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.app-hero .btn i {
  margin-right: 0.5rem;
}

/* Hero SVG Decoration */
.hero-svg-decoration {
  position: absolute;
  bottom: 0;
  left: 100px;
  height: 90%;
  width: auto;
  z-index: 0;  
  opacity: 0.15;
  pointer-events: none;
}

/* Disabled Links */
.disabled-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: auto;
}

.disabled-link:hover {
  opacity: 0.5;
}

/* App Card Disabled State */
.app-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.app-card.disabled .disabled-link-wrapper {
  cursor: not-allowed;
}

.hero-svg-decoration svg {
  height: 100%;
  width: auto;
  display: block;
}

/* VPN specific SVG styling */
.vpn .hero-svg-decoration {
  opacity: 0.12;
}

.vpn .hero-svg-decoration svg path {
  fill: #ef4444;
}

/* IPTV specific SVG styling */
.iptv .hero-svg-decoration {
  opacity: 0.12;
}

.iptv .hero-svg-decoration svg path {
  fill: #3b82f6;
}

/* Home page SVG styling - neutral gray */
body:not(.vpn):not(.iptv) .hero-svg-decoration {
  opacity: 0.08;
}

body:not(.vpn):not(.iptv) .hero-svg-decoration svg path {
  fill: #9ca3af;
}

/* Responsive adjustments for SVG */
@media (max-width: 1024px) {
  .hero-svg-decoration {
    height: 70%;
    opacity: 0.08;
  }
}

@media (max-width: 768px) {
  .hero-svg-decoration {
    height: 50%;
    opacity: 0.06;
  }
}

@media (max-width: 480px) {
  .hero-svg-decoration {
    display: none;
  }
}

/* Pricing Section Styles */
.pricing {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--border);
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-width: 2px;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

/* VPN Pricing Card Styles */
.vpn .pricing-card:hover {
  border-color: #fecaca;
}

.vpn .pricing-card.popular {
  border-color: #ef4444;
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.15);
}

/* IPTV Pricing Card Styles */
.iptv .pricing-card:hover {
  border-color: #bfdbfe;
}

.iptv .pricing-card.popular {
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.vpn .popular-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.iptv .popular-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-save {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-top: 0.5rem;
}

.vpn .pricing-save {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.iptv .pricing-save {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.625rem;
  color: white;
  flex-shrink: 0;
}

.vpn .pricing-features i {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.iptv .pricing-features i {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.pricing-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.pricing-total {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .amount {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .pricing-header h3 {
    font-size: 1.25rem;
  }
}

/* Device Tabs for Screenshots */
.device-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  padding: 0.5rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.device-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.device-tab:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
}

.device-tab.active {
  background: white;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* VPN specific tab styles */
.vpn .device-tab.active {
  color: #ef4444;
}

/* IPTV specific tab styles */
.iptv .device-tab.active {
  color: #3b82f6;
}

.device-tab i {
  font-size: 1.125rem;
}

/* Screenshot Content */
.screenshot-content {
  position: relative;
}

.device-screenshots {
  display: none;
  animation: fadeIn 0.3s ease;
}

.device-screenshots.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Device-specific frame styles */
.iphone-frame,
.ipad-frame,
.tv-frame,
.mac-frame {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iphone-frame:hover,
.ipad-frame:hover,
.tv-frame:hover,
.mac-frame:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.iphone-frame {
  margin: 0;
}

.ipad-frame {
  margin: 0;
}

.tv-frame {
  margin: 0;
}

.mac-frame {
  margin: 0;
}

/* Device-specific gallery layouts */
.ipad-gallery {
  grid-template-columns: repeat(2, 1fr);
}

.tv-gallery,
.mac-gallery {
  grid-template-columns: repeat(1, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive tabs */
@media (max-width: 640px) {
  .device-tabs {
    gap: 0.25rem;
  }
  
  .device-tab {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
  
  .device-tab span {
    display: none;
  }
  
  .device-tab i {
    font-size: 1.25rem;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .device-tabs {
    padding: 0.375rem;
  }
  
  .device-tab {
    padding: 0.5rem 0.875rem;
  }
}
