/* CSS Variables for consistent theming */
:root {
    --primary-color: #ffffff;
    --primary-dark: #acacac;
    --secondary-color: #929292;
    --accent-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #acacac;
    --text-muted: #929292;
    --bg-primary: #080808;
    --bg-secondary: #080808;
    --bg-card: #080808;
    --bg-card-hover: #080808;
    --card-background: #080808;
    --background-color: #080808;
    --border-color: #080808;
    --border-light: #929292;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --font-sans: "Helvetica Neue", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Consistent spacing variables */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Consistent padding for all components */
    --component-padding: 1.5rem;
    --card-padding: 1.5rem;
    --button-padding: 0.75rem 1.5rem;
    --input-padding: 1rem 1.5rem;
    
    /* New variables for the mobile navigation */
    --clr-bg: #0f0f0f;
    --clr-surface: #1a1a1a;
    --clr-primary: #6366f1;
    --clr-text: #f5f5f5;
    --radius: 8px;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Progress Bar Styles */
.progress-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar {
    height: 8px;
    background: linear-gradient(90deg, #ffffff, #acacac);
    border-radius: var(--radius-md);
    transition: width 0.3s ease;
    width: 0%;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Universal Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    text-align: center;
    min-height: 200px;
    gap: 20px;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(128, 128, 128, 0.3);
    border-top: 4px solid #808080;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
    display: block;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.loading-subtext {
    color: var(--text-muted);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Loading overlay for buttons */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Loading states for different components */
.video-preview.loading,
.audio-preview.loading,
.instagram-post-card.loading,
.vsco-profile-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.video-preview.loading::after,
.audio-preview.loading::after,
.instagram-post-card.loading::after,
.vsco-profile-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(128, 128, 128, 0.3);
    border-top: 3px solid #808080;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Waveform Container Improvements */
.waveform-container {
    position: relative;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 1rem 0;
}

.waveform-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* Audio Card Layout Fixes */
.audio-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.audio-player-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.audio-waveform-section {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.audio-download-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .audio-card {
        padding: 1rem;
    }
    
    .audio-player-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .waveform-container {
        height: 50px;
    }
}

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: #080808;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Main Content */
main {
    background-color: #080808;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-signup {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,.45);
  z-index: 999;
}

.brand { 
  font-weight: 700; 
  font-size: 1.25rem; 
  color: #cccccc;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: #cccccc;
  font-size: 0.875rem;
  font-family: "Helvetica Neue", sans-serif;
  text-decoration: none;
  border: 1px solid transparent;
}

.nav-menu a:hover {
  color: var(--primary-color);
  background: rgba(52, 49, 40, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.4),
      0 1px 3px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: #ffffff;
  color: #000000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Helvetica Neue", sans-serif;
  position: relative;
  z-index: 1000;
  visibility: visible;
  opacity: 1;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-contact:hover {
  background: #f8f9fa;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tools Dropdown */
.tools-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.tools-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #cccccc;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Helvetica Neue", sans-serif;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tools-toggle:hover {
  color: var(--primary-color);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: #cccccc;
  margin-left: 0.25rem;
}

.tools-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Tools content */
.tools-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-top: 1rem;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 600px;
  box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.8),
      0 8px 16px rgba(0, 0, 0, 0.6);
}

.tools-content.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tool-category h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tool-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tool-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-family: "Helvetica Neue", sans-serif;
}

.tool-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  padding-left: 1rem;
}

/* Tools Page Styles */
.tools-section {
  padding: 4rem 0;
  background: #080808;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-header h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center !important;
  width: 100%;
}

.section-header p {
  color: #cccccc;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center !important;
  width: 100%;
}

.platform-section {
  margin-bottom: 4rem;
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.platform-header h3 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
}

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

.tool-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tool-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #ffffff;
}

.tool-card h4 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.tool-card p {
  color: #cccccc;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
      .section-header h2 {
        font-size: 2rem;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: block !important;
    }
  
  /* Footer Mobile Styles */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-left {
    text-align: center;
    align-items: center;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column ul {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
}



/* Hero Section */
.hero {
    padding: 115px 0 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    max-width: 1400px;
}

.hero-text {
    width: 100%;
}

.contract-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
}

.contract-badge::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.contract-badge::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}



.badge-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
}

.contract-badge span {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: "Helvetica Neue", sans-serif;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #e0e0e0 0%, #cccccc 50%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    background: linear-gradient(135deg, #e0e0e0 0%, #cccccc 50%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: calc(3rem - 24px);
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    min-width: 120px;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border-radius: 50px;
    padding: 0.5rem 2rem;
    box-shadow: 
        0 4px 12px rgba(255, 255, 255, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ethereum-sphere {
    position: relative;
    width: 400px;
    height: 400px;
}

.sphere-structure {
    position: relative;
    width: 100%;
    height: 100%;
}

.sphere-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.3),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.sphere-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(147, 51, 234, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.eth-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.coin-edge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #808080;
    border-radius: 50%;
}

.eth-logo {
    color: var(--primary-color);
    z-index: 1;
}

.coin-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.coin-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 1.5s;
}

.coin-3 {
    top: 60%;
    right: 5%;
    animation-delay: 3s;
}

.coin-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 4.5s;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Hero Statistics Section */
.hero-stats {
    margin-top: 1rem;
    text-align: center;
    position: relative;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stats-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: "Helvetica Neue", sans-serif;
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.stats-label::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.stats-label::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 20px;
}

.stat-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.2) 0%, rgba(60, 60, 60, 0.15) 40%, rgba(120, 120, 120, 0.1) 70%, rgba(255, 255, 255, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    border-radius: 0 0 12px 12px;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #cccccc;
    font-weight: 500;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 50px 50px;
    opacity: 0.3;
}

/* Section Headers */
.social-tools .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

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

.section-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* All Tools Section */
.all-tools {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tools-category {
    padding: 1.5rem;
    background: var(--background-primary);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tools-category h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.tool-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.tool-link:hover {
    opacity: 0.8;
}

/* Social Media Tools Section */
.social-tools {
    padding: 6rem 0;
    background-color: #09090B;
    position: relative;
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(52, 49, 40, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    min-width: 140px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.social-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0.7;
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
}

@media (max-width: 768px) {
    .social-buttons {
        gap: 0.75rem;
    }
    
    .social-btn {
        padding: 0.5rem 1rem;
        min-width: 120px;
    }
    
    .social-icon {
        font-size: 1rem;
    }
    
    .social-name {
        font-size: 0.75rem;
    }
}

/* About & Vision Section */
.about-vision {
    padding: 3rem 0;
    background-color: #09090B;
    position: relative;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

.about-card,
.vision-card {
    background: rgba(52, 49, 40, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.about-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0.7;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-card p,
.vision-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-visual {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Card Visual - Pillars */
.pillar-group {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 100%;
}

.pillar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-tall {
    width: 20px;
    height: 80px;
}

.pillar-medium {
    width: 16px;
    height: 60px;
}

.pillar-short {
    width: 12px;
    height: 40px;
}

.eth-symbol {
    color: var(--text-primary);
    position: absolute;
    top: -8px;
}

.question-mark {
    position: absolute;
    top: -12px;
    right: -8px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.75rem;
}

/* Vision Card Visual - Flowchart */
.flowchart {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--text-primary);
    z-index: 2;
}

.binoculars {
    bottom: 10px;
    left: 20px;
}

.eye {
    top: 10px;
    right: 20px;
}

.eth-final {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.flow-box {
    position: absolute;
    background: rgba(52, 49, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-primary);
    white-space: nowrap;
    z-index: 3;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    will-change: transform;
}

.flow-box:nth-of-type(1) {
    top: 10px;
    left: 20px;
    transform: translateZ(0);
}

.flow-box:nth-of-type(2) {
    bottom: 10px;
    right: 20px;
    transform: translateZ(0);
}

.flow-line {
    position: absolute;
    background: var(--primary-color);
    border-radius: 2px;
    z-index: 1;
}

.line-1 {
    width: 2px;
    height: 30px;
    bottom: 35px;
    left: 50px;
    transform: rotate(-30deg);
}

.line-2 {
    width: 2px;
    height: 30px;
    bottom: 35px;
    right: 50px;
    transform: rotate(30deg);
}

.line-3 {
    width: 2px;
    height: 25px;
    top: 35px;
    left: 50px;
    transform: rotate(30deg);
}

.line-4 {
    width: 2px;
    height: 25px;
    top: 35px;
    right: 50px;
    transform: rotate(-30deg);
}

@media (max-width: 768px) {
    .about-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .card-visual {
        height: 100px;
    }
    
    .pillar-tall {
        height: 60px;
    }
    
    .pillar-medium {
        height: 45px;
    }
    
    .pillar-short {
        height: 30px;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background-color: #09090B;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.roadmap.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.roadmap-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.roadmap-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roadmap h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.roadmap-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.roadmap-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.roadmap-track::-webkit-scrollbar {
    display: none;
}

.roadmap-card {
    flex: 0 0 300px;
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.roadmap-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.roadmap-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phase-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(52, 49, 40, 0.8);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.roadmap-icon-card {
    width: 48px;
    height: 48px;
    background: rgba(52, 49, 40, 0.6);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.roadmap-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.roadmap-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.roadmap-date {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.background-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
}

.roadmap-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 16px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    width: 20px;
    background: var(--primary-color);
    transform: scale(1);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: #09090B;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #09090B;
    opacity: 0.8;
    z-index: -1;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Content Split Sections */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Simplify Operations Section */
.simplify-operations {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.simplify-operations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(250, 226, 127, 0.1) 0%, transparent 50%);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    background: #182027;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #151b1f 0%, #1b1f25 50%, #151b1f 100%);
    pointer-events: none;
    border-radius: 12px;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-item .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    z-index: 2;
    position: relative;
}

.feature-text h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    z-index: 2;
    position: relative;
}

.feature-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-arrow {
    color: var(--text-primary);
    transform: translate(2px, -2px);
}

/* Streamline Operations Section */
.streamline-operations {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.streamline-operations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(250, 226, 127, 0.1) 0%, transparent 50%);
}

.dashboard-visual {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 1rem;
    flex: 1;
}

.bar {
    background: linear-gradient(to top, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    min-width: 40px;
    transition: all 0.3s ease;
}

.chart-value {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Expand Possibilities Section */
.expand-possibilities {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.expand-possibilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(250, 226, 127, 0.1) 0%, transparent 50%);
}

.chart-visual {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    text-align: center;
}

.line-chart {
    position: relative;
    display: inline-block;
}

.chart-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #09090B;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #09090B;
    opacity: 1;
    z-index: -1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    pointer-events: none;
    border-radius: 12px;
}

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

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--text-primary);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.testimonial-author {
    z-index: 2;
    position: relative;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    z-index: 2;
    position: relative;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    z-index: 2;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.close-btn:hover {
    color: var(--text-primary);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(250, 226, 127, 0.1) 0%, transparent 50%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-card);
    transition: 0.4s;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-primary);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

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

.pricing-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.features-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #09090B;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-left h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.faq-left p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.faq-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.faq-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #182027;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.faq-input::placeholder {
    color: var(--text-secondary);
}

.faq-right {
    width: 100%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: transparent;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    border-radius: 12px;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(0deg);
}

.faq-question[aria-expanded="false"] .faq-icon {
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    z-index: 2;
    position: relative;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease, opacity 1s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    z-index: 2;
    position: relative;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background-color: #09090B;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #09090B;
    opacity: 1;
    z-index: -1;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

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

/* Privacy Policy */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.privacy-date {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.privacy-content h2:first-child {
    border-top: none;
    padding-top: 0;
}

.privacy-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-content li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Privacy Policy Responsive */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 1rem 0;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .privacy-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 1.75rem;
    }
    
    .privacy-content {
        padding: 1rem;
    }
}

/* About Page */
.about-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.about-section {
    margin-bottom: 3rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.about-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-section .feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-section .feature-card:hover::before {
    transform: scaleX(1);
}

.about-section .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.about-section .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--bg-primary);
}

.about-section .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-section .feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-page {
        padding: 1rem 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .about-section .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-section .feature-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .about-section h2 {
        font-size: 1.25rem;
    }
    
    .about-section .feature-card {
        padding: 1rem;
    }
    
    .about-section .feature-icon {
        width: 40px;
        height: 40px;
    }
}

/* Footer */
.footer {
    background-color: var(--bg-primary);
    padding: 2rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 4rem;
    position: relative;
    padding: 0 2rem;
}

.footer-content::after {
    content: '';
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, transparent 5%, rgba(255, 255, 255, 0.5) 50%, transparent 95%, transparent 100%);
    transform: translateX(-50%);
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #acacac 0%, #929292 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #080808;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #acacac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-section h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-right {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 0 2rem;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.legal-separator {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-primary);
    padding: 6rem 0;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(8, 8, 8, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.testimonials-label::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 100%);
}

.testimonials-label::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
}

.testimonials-label span {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.testimonials-header h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: absolute;
    top: -45px;
    left: 0;
    z-index: 10;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
    margin-left: 0;
    margin-top: 0;
    text-align: left;
}

.testimonial-info h4 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    margin-top: 16px;
}

.testimonial-info p {
    color: #cccccc;
    font-size: 0.875rem;
    margin: 0;
}

.testimonial-card .social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    padding: 0;
    min-width: auto;
    box-shadow: none;
}

.testimonial-card .social-btn::before {
    display: none;
}

.testimonial-card .social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: none;
    box-shadow: none;
}

.testimonial-content p {
    color: #cccccc;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq {
    background-color: #09090B;
    padding: 3rem 0 6rem 0;
    position: relative;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-left {
    padding-right: 2rem;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 49, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.faq-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
}

.faq-label span {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.faq-left h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-left p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

.faq-right {
    max-width: 600px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    position: relative;
    padding-bottom: 1rem;
}

.faq-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0;
    background: transparent;
    border: none;
    background: linear-gradient(135deg, #acacac 0%, #929292 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-item.active .faq-question {
    background: transparent;
    padding: 0.4rem 0;
    margin: 0;
    border-radius: 0;
}

.faq-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    z-index: 2;
}

/* Ensure last FAQ item shows highlight */
.faq-item:last-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}

/* Force highlight on all FAQ items */
.faq-item:nth-child(3)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}



.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle svg {
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question[aria-expanded="true"] .faq-toggle svg {
    transform: rotate(45deg);
    color: black;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}



.faq-answer p {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #acacac 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.6;
    margin: 0;
}

.faq-answer .highlight {
    color: var(--primary-color);
    font-weight: 500;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .ethereum-sphere {
        width: 300px;
        height: 300px;
    }
    
    .sphere-frame {
        width: 200px;
        height: 200px;
    }
    
    .sphere-glow {
        width: 150px;
        height: 150px;
    }
    
    .eth-coin {
        width: 50px;
        height: 50px;
    }
    
    .eth-logo svg {
        width: 16px;
        height: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-left {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .footer-right {
        flex-direction: row;
        gap: 2rem;
        text-align: center;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Tools page specific footer right layout for mobile */
    .tools-page .footer-right {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    
    /* Center social handles on mobile */
    .tools-page .social-section {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .tools-page .social-links {
        justify-content: center !important;
        display: flex !important;
        gap: 1rem !important;
    }
    
    /* Center footer logo on mobile */
    .tools-page .footer-left {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .tools-page .footer-logo {
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
    }
    
    /* Hide vertical line on mobile */
    .footer-content::after {
        display: none !important;
    }
    
    /* Hide navigation links on mobile except Tools */
    .nav-menu a[href="#features"],
    .nav-menu a[href="blog.html"],
    .nav-menu a[href="about.html"],
    .nav-menu a[href="index.html"] {
        display: none !important;
    }
    
    /* Make header fixed on mobile */
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(8, 8, 8, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        z-index: 999 !important;
    }
    
    /* Add padding to body to account for fixed header */
    body {
        padding-top: 80px !important;
    }
    
    .footer-column {
        text-align: center;
        align-items: center;
        flex: 0 0 calc(50% - 1rem);
        min-width: 150px;
    }
    
    /* Tools page specific footer layout for mobile */
    .tools-page .footer-column {
        flex: 0 0 calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
    }
    
    .footer-column ul {
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 2rem 0 2rem;
        align-items: center;
    }
    
    .footer-legal {
        justify-content: center;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .roadmap {
        padding: 4rem 0;
    }
    
    .roadmap-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }
    
    .roadmap-value {
        font-size: 2rem;
    }
    
    .background-year {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        line-height: 1.3 !important;
        display: block !important;
    }
    
    .section-header {
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
    
    /* FAQ Section mobile layout */
    .faq-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .faq-left {
        padding-right: 0 !important;
        text-align: center !important;
    }
    
    .faq-right {
        max-width: 100% !important;
    }
    
    /* Homepage footer mobile layout */
    .footer-left {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .footer-logo {
        position: relative !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
    }
    
    .logo-icon {
        display: none !important;
    }
    
    .footer-logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer-logo h3 {
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .footer-description {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .social-section {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .social-section h4 {
        text-align: center !important;
        width: 100% !important;
    }
    
    .social-links {
        justify-content: center !important;
        display: flex !important;
        gap: 1rem !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer-right {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
        width: calc(50% - 1rem) !important;
        text-align: center !important;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-signup {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-header h2 {
        font-size: 1.75rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility - remove thick outline */
button:focus,
a:focus {
    outline: none !important;
    outline-offset: 0 !important;
}

/* Remove focus outline from all buttons */
button:focus-visible {
    outline: none !important;
}

/* Remove focus outline from specific button types */
.btn:focus,
.play-pause-btn:focus,
.download-mp3-btn:focus,
.nav-btn:focus,
.nav-link:focus,
.dropdown-btn:focus,
.social-btn:focus,
.action-btn:focus,
.download-btn:focus,
.download-mp4-btn:focus {
    outline: none !important;
    outline-offset: 0 !important;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Download Tool Section */
.download-tool-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

/* Download Tool Styles */
.download-tool {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--component-padding);
    margin: var(--spacing-xl) auto;
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    min-height: 200px;
    flex-shrink: 0;
}

.download-tool::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.input-group {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    width: 100%;
}

.url-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--input-padding);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 0;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
    height: 3.5rem;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
}

.url-input::placeholder {
    color: var(--text-muted);
}

.url-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}



.download-btn {
    background: #ffffff;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--button-padding);
    color: #080808;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 120px;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.bulk-note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    flex: 1;
    margin-right: 1rem;
}

.bulk-note p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-align: left;
}

/* Video Preview Styles */
.video-preview {
    margin-top: 2rem;
}

/* Placeholder Panel */
.placeholder-panel {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl) var(--component-padding);
    margin: var(--spacing-sm) 0 var(--spacing-xl) 0;
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
}

.placeholder-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.placeholder-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.7;
}

.video-card {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.video-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.video-thumbnail {
    width: 120px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    flex: 1;
}

.video-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.video-info p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.download-mp4-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    color: #080808;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-mp4-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* How to Use Section */
.how-to-use {
    padding: 3rem 0 6rem 0;
    background: rgba(52, 49, 40, 0.05);
}

.how-to-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.how-to-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.how-to-content .subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.how-to-content .description {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: left;
    position: relative;
    backdrop-filter: blur(10px);
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.step-card:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.step-number {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #080808;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-card ul {
    list-style: none;
    padding: 0;
}

.step-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-card li::before {
    content: '•';
    color: #ffffff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile Responsive for Download Tool */
@media (max-width: 768px) {
    .download-tool {
        width: 95%;
        max-width: 600px;
        padding: var(--spacing-lg);
    }
    
    .placeholder-panel {
        width: 95%;
        max-width: 600px;
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .input-group {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .download-btn {
        width: 100%;
        height: 3rem;
    }
    
    .video-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .video-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .step-card {
        padding: var(--spacing-lg);
    }
    
    .video-preview,
    .audio-preview {
        width: 95%;
        padding: var(--spacing-lg);
    }
}

/* ===== HASHTAGS PAGE STYLES ===== */

/* Filters Section */
.filters-section {
    padding: 1rem 0;
    background: rgba(52, 49, 40, 0.05);
}

.filters-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-dropdown {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    position: relative;
    backdrop-filter: blur(10px);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e9c326' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.filter-dropdown:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(52, 49, 40, 0.25);
}

.filter-dropdown:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.filter-dropdown option {
    background: rgba(52, 49, 40, 0.95);
    color: var(--text-primary);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.filter-dropdown option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-dropdown option:checked {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-dropdown-toggle {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-dropdown-toggle:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(52, 49, 40, 0.25);
}

.custom-dropdown-toggle:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.dropdown-arrow {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    margin-top: 0.25rem;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    max-height: 200px;
    overflow-y: auto;
}

.custom-dropdown.active .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.dropdown-option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2%;
    right: 2%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.dropdown-option:hover {
    background: #ffffff;
    color: #000000;
}

.dropdown-option.selected {
    background: #ffffff;
    color: #000000;
}

.dropdown-option:last-child::after {
    display: none;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
    gap: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Hashtags Table Section */
.hashtags-section {
    padding: 1rem 0 6rem 0;
}

.hashtags-table-container {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.hashtags-table-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.hashtags-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-primary);
}

.hashtags-table th {
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hashtags-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.hashtags-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.rank-cell {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 80px;
}

.hashtag-cell a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hashtag-cell a:hover {
    color: var(--accent-color);
}

.posts-cell {
    font-weight: 500;
    color: var(--text-secondary);
}

.trend-cell {
    width: 140px;
}

.mini-trend-chart {
    display: block;
    border-radius: 4px;
}

.actions-cell {
    width: 140px;
}

.analytics-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 0.5rem 1rem;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analytics-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Analytics Popup */
.analytics-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 2rem;
}

.analytics-popup-content {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(10px);
}

.analytics-popup-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    z-index: 10;
}

.analytics-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.analytics-title h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.copy-link-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-link-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.close-popup {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.analytics-content {
    padding: 2rem;
}

.analytics-section {
    margin-bottom: 3rem;
}

.analytics-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    width: calc(100% + 4rem);
    gap: 1rem;
}

.section-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    text-align: left;
    flex-shrink: 0;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-shrink: 0;
    margin-left: 0;
}

.time-filter,
.region-filter {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e9c326' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1em 1em;
    padding-right: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.time-filter:hover,
.region-filter:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(52, 49, 40, 0.25);
}

.time-filter:focus,
.region-filter:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.time-filter option,
.region-filter option {
    background: #000000;
    color: var(--text-primary);
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

.time-filter option:hover,
.region-filter option:hover {
    background: rgba(255, 255, 255, 0.2);
}

.time-filter option:checked,
.region-filter option:checked {
    background: rgba(255, 255, 255, 0.25);
    color: #000000;
}

/* Posts Statistics */
.posts-stats {
    margin-bottom: 2rem;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 2rem;
}

/* Trend Chart */
.trend-chart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.chart-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.chart-container {
    height: 300px;
    position: relative;
}

/* Related Videos */
.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.videos-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.video-thumbnail {
    position: relative;
    min-width: 200px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    color: white;
    width: 24px;
    height: 24px;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.carousel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-more-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.view-more-link:hover {
    color: var(--text-primary);
}

.carousel-nav {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Audience Insights */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.insight-card h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.interests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.interest-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.interest-score {
    font-weight: 600;
}

.flame-icon {
    color: #ff6b6b;
}

/* Regional Popularity */
.regional-content {
    display: block;
    width: 100%;
}

.world-map {
    display: none;
}

.top-regions h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.regions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.region-name {
    min-width: 100px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.region-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.region-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.region-value {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.droplet-icon {
    color: #ff6b6b;
}

/* Mobile Responsive for Hashtags */
@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-dropdown {
        width: 100%;
    }
    
    .hashtags-table-container {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .hashtags-table {
        min-width: 600px;
    }
    
    .analytics-popup {
        padding: 1rem;
    }
    
    .analytics-popup-content {
        max-height: 95vh;
    }
    
    .analytics-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .analytics-title {
        justify-content: space-between;
    }
    
    .analytics-content {
        padding: 1.5rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .regional-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .videos-carousel {
        gap: 0.75rem;
    }
    
    .video-thumbnail {
        min-width: 150px;
        height: 200px;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
}

/* Notification system */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.error {
    background: #dc2626;
}

.notification.success {
    background: #059669;
}

/* Video preview improvements */
.video-preview {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--component-padding);
    margin: var(--spacing-xl) 0;
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

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

.video-grid.single-video {
    display: block;
}

.video-grid.single-video .video-card {
    max-width: 400px;
    margin: 0 auto;
}

.video-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--card-padding);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    min-height: 400px;
}

.video-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.video-left-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.video-thumbnail {
    width: 180px;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-align: center;
    padding: 16px;
}

.thumbnail-placeholder svg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    opacity: 0.7;
}

.thumbnail-placeholder span {
    font-weight: 500;
}

.video-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    width: 100%;
}

.video-info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    word-wrap: break-word;
    max-height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
}

.download-mp4-btn {
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #080808;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.download-mp4-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.download-mp4-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #666;
    color: #fff;
}

.error-card {
    opacity: 0.8;
    border-color: rgba(255, 0, 0, 0.3);
}

.error-thumbnail {
    background: rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon {
    font-size: 2rem;
    color: #ff6b6b;
}

.error-url {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    word-break: break-all;
}

/* Audio Preview Styles */
.audio-preview {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--component-padding);
    margin: var(--spacing-xl) 0;
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.audio-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.audio-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.audio-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--card-padding);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 80px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.audio-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.audio-player-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent !important;
    background-color: transparent !important;
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.play-pause-btn:focus {
    outline: none !important;
    outline-offset: 0 !important;
}

.play-pause-btn * {
    background: transparent !important;
    background-color: transparent !important;
}

.play-pause-btn svg {
    transition: all 0.3s ease;
}

.audio-waveform-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    margin: 0 1rem;
    gap: 1rem;
}

.video-preview-container {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-preview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.waveform-container {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: transparent !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.waveform-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    background: transparent !important;
}

.waveform-container * {
    background: transparent !important;
}

.audio-download-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.download-mp3-btn {
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #080808;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    height: 50px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-mp3-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.download-mp3-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #666;
    color: #fff;
}

/* Audio Error Card */
.audio-card.error-card {
    opacity: 0.8;
    border-color: rgba(255, 0, 0, 0.3);
}

.audio-card.error-card .audio-player-section {
    color: #ff6b6b;
}

/* Responsive Audio Design */
@media (max-width: 768px) {
    .audio-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
        background: transparent !important;
        background-color: transparent !important;
        border: 0.5px solid rgba(255, 255, 255, 0.6);
    }
    
    .waveform-container {
        height: 50px;
    }
    
    .download-mp3-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .audio-card {
        min-height: 100px;
    }
    
    .play-pause-btn {
        width: 45px;
        height: 45px;
        background: transparent !important;
        background-color: transparent !important;
        border: 0.5px solid rgba(255, 255, 255, 0.6);
    }
    
    .waveform-container {
        height: 40px;
    }
}

/* Responsive video preview */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .video-card {
        padding: 1rem;
        min-height: 350px;
    }
    
    .video-thumbnail {
        width: 140px;
        height: 250px;
    }
    
    .video-info h3 {
        font-size: 0.9rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    .download-mp4-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-card {
        min-height: 320px;
    }
    
    .video-thumbnail {
        width: 120px;
        height: 215px;
    }
}

/* Instagram Post Downloader Styles */
.instagram-post-card {
    background: rgba(52, 49, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instagram-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.instagram-post-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.post-media-container {
    position: relative;
    margin-bottom: 1rem;
}

.post-thumbnail {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.post-thumbnail:hover .post-image {
    transform: scale(1.02);
}

.media-type-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.post-info {
    padding: 0.5rem 0;
}

.post-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.post-creator {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    opacity: 0.8;
}

.post-actions {
    display: flex;
    gap: 0.75rem;
}

.download-post-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.download-post-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.download-post-btn:hover::before {
    left: 100%;
}

.download-post-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.download-post-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Multiple posts grid */
#post-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Loading animation for posts */
.instagram-post-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.instagram-post-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
    .instagram-post-card {
        padding: 1rem;
    }
    
    .post-title {
        font-size: 1rem;
    }
    
    .download-post-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    #post-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .post-thumbnail {
        aspect-ratio: 4/3;
    }
}

/* VSCO Photo Grid Styles */
.loading-panel {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(128, 128, 128, 0.3);
    border-top: 3px solid #808080;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.photos-grid {
    margin: 2rem 0;
}

.photos-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.photos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.photo-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.photo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

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

.photo-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.photo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover .photo-thumbnail img {
    transform: scale(1.05);
}

.photo-info {
    padding: 1rem;
}

.photo-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.photo-creator {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.download-photo-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-photo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.download-photo-btn:hover::before {
    left: 100%;
}

.download-photo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.download-photo-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.photo-card.error-card {
    border-color: #ef4444;
}

.photo-card.error-card .photo-thumbnail {
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon {
    font-size: 2rem;
    color: #ef4444;
}

.error-url {
    font-size: 0.75rem;
    color: var(--text-muted);
    word-break: break-all;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .photos-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .photo-card {
        margin-bottom: 1rem;
    }
    
    .photo-thumbnail {
        height: 150px;
    }
    
    .photo-info {
        padding: 0.75rem;
    }
    
    .photo-title {
        font-size: 0.875rem;
    }
    
    .download-photo-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .photos-container {
        grid-template-columns: 1fr;
    }
    
    .photo-card {
        margin-bottom: 0.75rem;
    }
    
    .photo-thumbnail {
        height: 180px;
    }
}

/* VSCO Profile Card - 9:16 Aspect Ratio */
.vsco-profile-card {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9/16;
    background: transparent;
    border-radius: 20px;
    padding: 20px 30px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.vsco-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.vsco-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vsco-profile-avatar:hover img {
    transform: scale(1.05);
}

.vsco-profile-info {
    text-align: center;
    z-index: 2;
    position: relative;
}

.vsco-profile-username {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vsco-profile-bio {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Update the existing profile preview to use the new card */
#profile-preview .video-card {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
}

#profile-preview .video-thumbnail {
    display: none;
}

#profile-preview .video-info {
    background: none;
    padding: 0;
    text-align: center;
}

#profile-preview .download-mp4-btn {
    display: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .vsco-profile-card {
        max-width: 320px;
        padding: 30px 20px;
    }
    
    .vsco-profile-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .vsco-profile-username {
        font-size: 20px;
    }
    
    .vsco-profile-bio {
        font-size: 13px;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .vsco-profile-card {
        max-width: 280px;
        padding: 25px 15px;
    }
    
    .vsco-profile-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .vsco-profile-username {
        font-size: 18px;
    }
    
    .vsco-profile-bio {
        font-size: 12px;
        max-width: 220px;
    }
}

/* Gallery Styles */
.gallery-section {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.gallery-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-stats span {
    font-size: 14px;
    color: #b0b0b0;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Hover overlay with sliding text */
.gallery-item::after {
    content: "Click to Fullscreen";
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: bottom 0.3s ease;
    z-index: 10;
    border-radius: 8px;
    white-space: nowrap;
    width: auto;
    min-width: 140px;
}

.gallery-item:hover::after {
    bottom: 20px;
}

/* Image dimming on hover */
.gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.gallery-info {
    padding: 15px;
}

.gallery-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.download-gallery-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.download-gallery-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
}

.download-gallery-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .gallery-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .gallery-header h3 {
        font-size: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-info {
        padding: 12px;
    }
    
    .gallery-title {
        font-size: 13px;
    }
    
    .download-gallery-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Full Screen Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#modalImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    margin-top: 15px;
    color: white;
    text-align: center;
    font-size: 16px;
    max-width: 80%;
    line-height: 1.4;
}

/* Contact Page Styles */
.contact-section {
    padding: 2rem 0;
    background: var(--bg-primary);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
}

.contact-container {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 2rem;
}

/* Override container width for contact section */
.contact-section .container {
    max-width: 80% !important;
    width: 100%;
}

.contact-form-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.required {
    color: #ff6b6b;
    font-weight: 700;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Custom Select Dropdown */
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-select:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Custom dropdown options styling */
.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.form-select option:hover {
    background: rgba(102, 126, 234, 0.1);
}

.form-select option:checked {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Enhanced dropdown animations */
.form-select {
    position: relative;
    overflow: hidden;
}

.form-select::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.form-select:focus::after {
    left: 100%;
}

/* Dropdown focus ring animation */
.form-select:focus {
    animation: dropdownFocus 0.3s ease;
}

@keyframes dropdownFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Custom Dropdown Styling */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-button {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.dropdown-button:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.dropdown-button:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-button.active {
    border-color: var(--accent-color);
    background-color: rgba(102, 126, 234, 0.05);
}

.dropdown-text {
    color: var(--text-primary);
}

.dropdown-arrow {
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.dropdown-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.dropdown-options.open {
    max-height: 300px;
    opacity: 1;
}

.dropdown-option {
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-color);
}

.dropdown-option.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Shine effect for dropdown button */
.dropdown-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.dropdown-button:focus::after {
    left: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-help {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-submit {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-submit:hover::before {
    left: 100%;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.contact-submit:active {
    transform: translateY(-1px);
}

.upsell-section {
    margin-top: 2.5rem;
    animation: slideInUp 0.6s ease;
}

.upsell-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.upsell-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.upsell-title {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

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

.upsell-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.upsell-features li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.upsell-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 0.875rem;
}

.upsell-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.upsell-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .upsell-card {
        padding: 1.5rem;
    }
    
    .upsell-title {
        font-size: 1.2rem;
    }
    
    .upsell-features li {
        font-size: 0.9rem;
    }
}

/* Input Tabs */
.input-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

/* Ensure consistent panel width - REMOVED DUPLICATE */

.tab-content {
    display: none;
    min-height: 120px;
    width: 100%;
}

.tab-content.active {
    display: block;
}

/* Force consistent input group layout */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    min-height: 60px;
}

.input-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.input-group .url-input {
    flex: 1;
    min-width: 0;
    height: 3.5rem;
    resize: none;
    max-width: none;
}

.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
}

.input-group .download-btn {
    flex-shrink: 0;
    white-space: nowrap;
    height: auto;
    min-height: 3.5rem;
    min-width: fit-content;
    align-self: stretch;
}

/* Tab content styles are now defined above */

/* Force consistent download tool width - REMOVED DUPLICATE */

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.tab-btn.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
}

/* Tab content styles are now defined above */

/* Custom Scrollbar Styling */
.url-input::-webkit-scrollbar {
    width: 6px;
}

.url-input::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.url-input::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.url-input::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Firefox scrollbar */
.url-input {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

/* Ensure placeholder text is fully visible */
.url-input::placeholder {
    color: var(--text-muted);
    opacity: 1;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Make input fields taller to show full placeholder */
.url-input {
    min-height: 48px;
    padding: 12px 16px;
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Money Banner */
.money-banner {
    position: relative;
    margin: 0.5rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    overflow: hidden;
}

.money-symbols {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: moneyFloat 10s ease-in-out infinite;
    padding: 0.5rem;
    gap: 0.25rem;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 215, 0, 0.05) 10px,
        rgba(255, 215, 0, 0.05) 20px
    );
}

@keyframes moneyFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
    text-align: center;
}

.banner-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.banner-btn {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.banner-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .banner-content {
        padding: 1rem;
    }
    
    .money-banner {
        margin: 0.5rem 0;
    }
    
    .banner-header h3 {
        font-size: 1.25rem;
    }
    
    .banner-header p {
        font-size: 0.9rem;
    }
    
    .banner-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
} 

/* Earnings Results Styles */
.earnings-results {
    text-align: left;
}

.earnings-results h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.earnings-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.earnings-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.earnings-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.earnings-amount {
    color: #4ade80;
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.earnings-source {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.brand-deals-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-deals-section h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.brand-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.brand-deal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.brand-deal-card h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.brand-deal-amount {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.total-earnings {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.total-earnings h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.total-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.total-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.total-card h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.total-amount {
    color: #4ade80;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.earnings-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.earnings-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: left;
}

.error-message p {
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 1rem;
}

.error-message ul {
    color: var(--text-secondary);
    margin: 0;
    padding-left: 1.5rem;
}

.error-message li {
    margin-bottom: 0.25rem;
}

/* Scraped Data Summary Styles */
.scraped-data-summary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.scraped-data-summary h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.summary-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.summary-card h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.summary-value {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Loading State Styles */
.loading-state {
    text-align: center;
    padding: 2rem;
}

.loading-state p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.loading-state p:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(128, 128, 128, 0.3);
    border-top: 3px solid #808080;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .earnings-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brand-deals-grid {
        grid-template-columns: 1fr;
    }
    
    .total-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .earnings-amount {
        font-size: 1.5rem;
    }
    
    .total-amount {
        font-size: 1.5rem;
    }
    
    .brand-deal-amount {
        font-size: 1.25rem;
    }
    
    .summary-value {
        font-size: 1.25rem;
    }
}

/* Video Preview and Download Styles */
.video-preview-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.video-preview {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: #000;
}

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

.download-buttons .download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.download-buttons .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.download-buttons .download-btn.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    opacity: 0.8;
}

.download-buttons .download-btn.secondary:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    opacity: 1;
}

@media (max-width: 768px) {
    .video-preview-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .download-buttons .download-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .video-preview {
        max-width: 100%;
    }
}

/* Enhanced component styles */
.error-card {
    border-color: rgba(239, 68, 68, 0.3) !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.error-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 2px dashed rgba(239, 68, 68, 0.3);
}

.error-icon {
    font-size: 2rem;
    color: #ef4444;
}

.thumbnail-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    height: 100%;
    min-height: 200px;
}

.thumbnail-placeholder svg {
    margin-bottom: var(--spacing-sm);
    opacity: 0.7;
}

.thumbnail-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* VSCO specific styles */
.photos-container {
    width: 100%;
}

.photos-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    width: 100%;
}

.photo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.photo-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.photo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover .photo-thumbnail img {
    transform: scale(1.05);
}

.photo-info {
    padding: var(--card-padding);
}

.photo-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

.photo-creator {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.download-photo-btn {
    background: #ffffff;
    color: #080808;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* VSCO Profile styles */
.vsco-profile-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    margin-bottom: var(--spacing-xl);
}

.vsco-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vsco-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsco-profile-info {
    flex: 1;
}

.vsco-profile-username {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 600;
}

.vsco-profile-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

.gallery-section {
    margin-top: var(--spacing-xl);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.gallery-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery-stats {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.gallery-info {
    padding: var(--spacing-md);
}

.gallery-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-weight: 600;
}

.gallery-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.download-gallery-btn {
    background: #ffffff;
    color: #080808;
    border: none;
    border-radius: var(--radius-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Twitter Avatar styles */
.twitter-avatar-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.avatar-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.twitter-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.avatar-info h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 600;
}

.avatar-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.avatar-info .download-btn {
    background: #ffffff;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--button-padding);
    color: #080808;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 120px;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.avatar-info .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #10b981;
}

.notification.error {
    background: #ef4444;
}

.notification.info {
    background: #3b82f6;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-text {
    margin-bottom: 2rem;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.blog-badge::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.blog-badge::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}

.blog-badge span {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: "Helvetica Neue", sans-serif;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.blog-hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    background: linear-gradient(135deg, #e0e0e0 0%, #cccccc 50%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Blog Filters Section */
.blog-filters {
    background: rgba(8, 8, 8, 0.8);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.search-filter {
    flex: 1;
    max-width: 500px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-secondary);
    z-index: 2;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem 1rem 1rem 3rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.sort-filter {
    flex-shrink: 0;
}

/* Blog Posts Section */
.blog-posts {
    background: var(--bg-primary);
    padding: 4rem 0;
    min-height: 60vh;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

.post-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.post-author {
    font-weight: 600;
    color: var(--text-primary);
}

.post-date, .post-read-time {
    opacity: 0.8;
}

.post-title {
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #ffffff;
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.post-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.read-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    text-align: center;
    margin-top: 3rem;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .blog-filters-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-filter {
        max-width: 100%;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-title a {
        font-size: 1.25rem;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-description {
        font-size: 1rem;
    }
    
    .post-image {
        height: 200px;
    }
    
    .post-content {
        padding: 1rem;
    }
    
    .post-title a {
        font-size: 1.1rem;
    }
}

/* Blog Post Template Styles - Clean Design */
.blog-post-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0a0a0a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.blog-post-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.blog-post-hero .hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-left {
    color: var(--text-primary);
    text-align: left;
    width: 100%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    top: 0;
    left: 0;
}

.back-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.post-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.post-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 100%;
}

.post-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.author-avatar:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

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

.author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-separator {
    color: var(--border-color);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.featured-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.featured-image:hover::before {
    opacity: 1;
}

.featured-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.featured-image:hover img {
    transform: scale(1.05);
}

/* Blog Post Content */
.blog-post-content {
    padding: 0 0 6rem 0;
    background: var(--background-color);
    margin-top: 0;
}

.blog-post-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 0;
}

.main-content {
    background: var(--card-background);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-top: 0;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.post-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Blog Post Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 10;
}

.table-of-contents {
    background: var(--card-background);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.table-of-contents h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: sticky;
    top: 100px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.toc-link:hover {
    color: var(--primary-color);
    background: var(--background-color);
}

.toc-number {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    min-width: 24px;
}

.toc-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mobile Responsive for Blog Post */
@media (max-width: 1024px) {
    .blog-post-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sidebar {
        position: static;
        top: auto;
    }
    
    .toc-nav {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .blog-post-hero {
        padding: 4rem 0;
    }
    
    .blog-post-hero .container {
        padding: 0 1rem;
    }
    
    .post-title {
        font-size: 2.2rem;
    }
    
    .post-description {
        font-size: 1.1rem;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content p,
    .post-content li {
        font-size: 1rem;
    }
    
    .table-of-contents {
        padding: 1.5rem;
    }
    
    .blog-post-layout {
        max-width: 100%;
        padding: 0;
    }
    
    .blog-post-sidebar {
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-post-hero {
        padding: 3rem 0;
    }
    
    .blog-post-hero-content {
        padding: 0 0.5rem;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-main {
        padding: 24px 0.5rem;
    }
    
    .post-tags {
        gap: 8px;
    }
    
    .post-tag {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .blog-post-sidebar {
        padding-right: 0.5rem;
    }
}

/* Content Section Styles for VSCO Profile Viewer */
.content-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.content-wrapper h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.content-wrapper h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--spacing-xl) 0 var(--spacing-md);
    line-height: 1.4;
}

.content-wrapper p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.content-wrapper strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-wrapper code {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
}

.content-wrapper blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.content-wrapper ul {
    color: var(--text-secondary);
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.content-wrapper li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.content-wrapper a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.comparison-table {
    margin: var(--spacing-xl) 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td {
    color: var(--text-secondary);
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    .content-section {
        padding: var(--spacing-xl) 0;
    }
    
    .content-wrapper {
        padding: 0 var(--spacing-md);
    }
    
    .content-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.25rem;
    }
    
    .content-wrapper p {
        font-size: 1rem;
    }
    
    .comparison-table {
        margin: var(--spacing-lg) 0;
    }
    
    .comparison-table table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-sm);
    }
}