/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8a2be2;
  --primary-dark: #5a189a;
  --primary-light: #9d4edd;
  --secondary-color: #00c896;
  --secondary-dark: #028090;
  --accent-red: #ff4757;
  --accent-yellow: #ffd166;
  --accent-green: #06d6a0;
  --accent-blue: #118ab2;
  
  --dark-bg: #0a0a0a;
  --dark-card: #1a1a1a;
  --dark-border: #2a2a2a;
  --darker-bg: #050505;
  
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;
  
  --gradient-primary: linear-gradient(135deg, #8a2be2, #5a189a);
  --gradient-secondary: linear-gradient(135deg, #00c896, #028090);
  --gradient-accent: linear-gradient(135deg, #ff4757, #ff6b81);
  --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  
  --font-main: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.3);
  --shadow-large: 0 20px 50px rgba(0, 0, 0, 0.7);
  
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --glow: 0 0 20px rgba(138, 43, 226, 0.3);
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
      radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0, 200, 150, 0.05) 0%, transparent 50%);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.keyword {
  color: var(--secondary-color);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 0.95em;
  position: relative;
  transition: var(--transition);
}

.keyword:hover {
  text-shadow: 0 0 10px rgba(0, 200, 150, 0.5);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--dark-border);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i {
  font-size: 24px;
  color: var(--primary-color);
  z-index: 2;
  position: relative;
}

.logo-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.3;
}

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

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: var(--primary-color);
  margin-left: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link i {
  font-size: 14px;
}

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 20px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1001;
}

.menu-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--dark-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.badge i {
  font-size: 12px;
}

.hero-title {
  font-size: 56px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-mono);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--dark-border);
}

.hero-visual {
  position: relative;
}

.visual-card {
  background: var(--gradient-dark);
  border-radius: var(--border-radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-large);
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
}

.card-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background-color: var(--accent-red);
}

.dot.yellow {
  background-color: var(--accent-yellow);
}

.dot.green {
  background-color: var(--accent-green);
}

.card-title {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-primary);
  background: rgba(138, 43, 226, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(138, 43, 226, 0.3);
}

.card-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 214, 160, 0.1);
  color: var(--accent-green);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(6, 214, 160, 0.3);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.crypto-display {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.crypto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  min-width: 100px;
}

.crypto-item.active {
  border-color: var(--primary-color);
  background: rgba(138, 43, 226, 0.1);
  box-shadow: var(--glow);
}

.crypto-item i {
  font-size: 24px;
  color: var(--secondary-color);
}

.crypto-item span {
  font-size: 14px;
  color: var(--text-secondary);
}

.crypto-item.active i {
  color: var(--primary-color);
}

.security-status {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 15px;
  background: rgba(6, 214, 160, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(6, 214, 160, 0.2);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-red);
  position: relative;
}

.status-indicator.active {
  background-color: var(--accent-green);
  animation: pulse 2s infinite;
}

.status-indicator.active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent-green);
  animation: pulse 2s infinite;
}

.visual-progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

.progress-text {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
  }
  40% {
      transform: translateX(-50%) translateY(-10px);
  }
  60% {
      transform: translateX(-50%) translateY(-5px);
  }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-secondary);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: var(--text-secondary);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
  }
  100% {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
  }
}

/* Page Hero (for FAQ and Blog) */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.blog-hero {
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.page-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 5px;
  max-width: 500px;
  margin-bottom: 40px;
}

.search-box i {
  padding: 0 15px;
  color: var(--text-secondary);
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  padding: 15px 0;
  outline: none;
}

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

.search-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: calc(var(--border-radius) - 2px);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  transform: translateY(-2px);
}

.visual-icon {
  font-size: 120px;
  color: var(--primary-color);
  opacity: 0.3;
  text-align: center;
}

.blog-visual {
  position: relative;
}

.post-card.featured {
  background: var(--gradient-dark);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

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

.post-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.post-content {
  padding-top: 20px;
}

.post-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.post-meta {
  display: flex;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.post-meta i {
  margin-right: 5px;
}

/* FAQ Specific */
.categories {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  color: var(--text-primary);
}

.category-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-color);
}

.category-btn i {
  font-size: 14px;
}

.faq-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 28px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.category-title i {
  color: var(--primary-color);
  font-size: 24px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--glow);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(138, 43, 226, 0.05);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer.active {
  padding: 0 24px 24px;
  max-height: 1000px;
}

.faq-answer p, .faq-answer ol, .faq-answer ul {
  margin-bottom: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer ol, .faq-answer ul {
  padding-left: 20px;
  margin: 15px 0;
}

.faq-answer li {
  margin-bottom: 8px;
}

.note, .tip {
  background: rgba(255, 215, 102, 0.1);
  border: 1px solid rgba(255, 215, 102, 0.3);
  border-radius: var(--border-radius);
  padding: 16px;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.note i, .tip i {
  color: var(--accent-yellow);
  font-size: 18px;
  margin-top: 2px;
}

.note strong, .tip strong {
  color: var(--accent-yellow);
}

.tip {
  background: rgba(0, 200, 150, 0.1);
  border-color: rgba(0, 200, 150, 0.3);
}

.tip i {
  color: var(--secondary-color);
}

.security-features, .crypto-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.feature, .crypto-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.feature i, .crypto-item i {
  color: var(--primary-color);
  font-size: 18px;
  width: 24px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.pro, .con {
  padding: 20px;
  border-radius: var(--border-radius);
}

.pro {
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.3);
}

.con {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.pro h4, .con h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 16px;
}

.pro h4 i {
  color: var(--accent-green);
}

.con h4 i {
  color: var(--accent-red);
}

.pro ul, .con ul {
  padding-left: 20px;
  color: var(--text-secondary);
}

.pro li, .con li {
  margin-bottom: 8px;
}

.cta-box {
  background: var(--gradient-dark);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--dark-border);
  margin-top: 60px;
}

.cta-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-box p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Blog Specific */
.blog-categories {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.blog-category {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.blog-category:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  color: var(--text-primary);
}

.blog-category.active {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-color);
}

.featured-posts {
  margin-bottom: 80px;
}

.posts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.post-card.large {
  grid-column: span 1;
  grid-row: span 2;
}

.post-card {
  background: var(--dark-card);
  border-radius: var(--border-radius);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-large);
}

.post-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.post-card.large .post-image {
  height: 300px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 200, 150, 0.2));
}

.image-placeholder i {
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.7;
}

.image-placeholder.security {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 71, 87, 0.2));
}

.image-placeholder.guide {
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(255, 215, 102, 0.2));
}

.image-placeholder.crypto {
  background: linear-gradient(135deg, rgba(255, 215, 102, 0.2), rgba(17, 138, 178, 0.2));
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-content {
  padding: 25px;
}

.post-title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-card.large .post-title {
  font-size: 24px;
}

.post-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card.large .post-excerpt {
  -webkit-line-clamp: 4;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.author, .date, .read-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.post-link:hover {
  gap: 12px;
  color: var(--primary-light);
}

.recent-posts {
  margin-bottom: 80px;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.list-post {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  background: var(--dark-card);
  border-radius: var(--border-radius);
  border: 1px solid var(--dark-border);
  transition: var(--transition);
}

.list-post:hover {
  border-color: var(--primary-color);
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.post-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-mono);
  min-width: 60px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.post-category {
  position: static;
  background: rgba(138, 43, 226, 0.1);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-date {
  color: var(--text-muted);
  font-size: 14px;
}

.list-post .post-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.list-post .post-excerpt {
  margin-bottom: 20px;
  -webkit-line-clamp: 2;
}

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

.post-tags {
  display: flex;
  gap: 8px;
}

.tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}

.load-more {
  text-align: center;
  margin-top: 60px;
}

.newsletter {
  margin-bottom: 80px;
}

.newsletter-box {
  background: var(--gradient-dark);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  text-align: center;
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.newsletter-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter-text {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-group input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  color: var(--text-primary);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--primary-color);
  box-shadow: var(--glow);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}

.form-note i {
  color: var(--secondary-color);
}

.tags-section {
  margin-bottom: 80px;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.tag-large {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
}

.tag-large:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Sections Common */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--dark-card);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid var(--dark-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.feature-icon {
  position: relative;
  margin-bottom: 25px;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  position: relative;
  z-index: 2;
}

.icon-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 25px;
  opacity: 0.2;
  filter: blur(10px);
}

.feature-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.feature-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  gap: 10px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.stat-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-mono);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.layered {
  position: relative;
  width: 300px;
  height: 300px;
}

.layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: var(--transition);
}

.layer i {
  font-size: 40px;
  color: var(--primary-color);
}

.layer span {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.layer-1 {
  transform: rotate(-5deg);
  z-index: 1;
}

.layer-2 {
  transform: rotate(0deg);
  z-index: 2;
}

.layer-3 {
  transform: rotate(5deg);
  z-index: 3;
}

.layered:hover .layer-1 {
  transform: rotate(-10deg) translateX(-20px);
}

.layered:hover .layer-3 {
  transform: rotate(10deg) translateX(20px);
}

/* Access Guide */
.steps-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.step-line {
  position: absolute;
  left: 45px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  z-index: 0;
}

.step {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 90px;
  height: 90px;
  background: var(--gradient-dark);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-mono);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.step-content {
  flex: 1;
  padding-top: 15px;
}

.step-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.step-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.url-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: var(--border-radius);
  margin-top: 15px;
}

.url-display i {
  color: var(--primary-color);
}

.url-display code {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-primary);
  word-break: break-all;
}

.copy-btn {
  background: transparent;
  border: 1px solid var(--dark-border);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.connection-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(6, 214, 160, 0.1);
  border: 1px solid rgba(6, 214, 160, 0.3);
  border-radius: var(--border-radius);
  margin-top: 15px;
  width: fit-content;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  position: relative;
}

.status-dot.active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent-green);
  animation: pulse 2s infinite;
}

.warning-box {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: var(--border-radius);
  margin-top: 60px;
}

.warning-icon {
  font-size: 30px;
  color: var(--accent-red);
  flex-shrink: 0;
}

.warning-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent-red);
}

.warning-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Security Section */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.security-card {
  background: var(--gradient-dark);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid var(--dark-border);
  transition: var(--transition);
}

.security-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-large);
}

.security-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.security-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.security-header h3 {
  font-size: 22px;
  color: var(--text-primary);
}

.security-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
}

.security-list {
  list-style: none;
}

.security-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.security-list i {
  color: var(--secondary-color);
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(138, 43, 226, 0.1) 100%);
}

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

.cta-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.cta-tips {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tip {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.tip i {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-logo i {
  color: var(--primary-color);
  font-size: 24px;
}

.footer-tagline {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.link-group h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-weight: 600;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 15px;
}

.link-group a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.link-group a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-keywords {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-tag {
  background: rgba(138, 43, 226, 0.1);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font-mono);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-container,
  .about-grid,
  .footer-main {
      gap: 60px;
  }
  
  .posts-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .post-card.large {
      grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .hero-container,
  .about-grid {
      grid-template-columns: 1fr;
  }
  
  .hero-visual {
      order: -1;
  }
  
  .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: var(--dark-bg);
      flex-direction: column;
      justify-content: center;
      gap: 30px;
      padding: 40px;
      border-left: 1px solid var(--dark-border);
      transition: var(--transition);
      z-index: 1000;
  }
  
  .nav-menu.active {
      right: 0;
  }
  
  .menu-toggle {
      display: block;
  }
  
  .nav-cta {
      margin-left: 0;
      margin-top: 20px;
  }
  
  .footer-main {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .footer-links {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
      font-size: 42px;
  }
  
  .page-title {
      font-size: 36px;
  }
  
  .section-title {
      font-size: 32px;
  }
  
  .hero-buttons,
  .cta-buttons {
      flex-direction: column;
      align-items: stretch;
  }
  
  .hero-stats {
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
  }
  
  .stat-divider {
      display: none;
  }
  
  .posts-grid {
      grid-template-columns: 1fr;
  }
  
  .post-card.large {
      grid-column: span 1;
  }
  
  .steps-container {
      padding-left: 20px;
  }
  
  .step-line {
      left: 25px;
  }
  
  .step {
      flex-direction: column;
      gap: 20px;
  }
  
  .step-number {
      width: 60px;
      height: 60px;
      font-size: 18px;
  }
  
  .warning-box {
      flex-direction: column;
      text-align: center;
  }
  
  .footer-links {
      grid-template-columns: 1fr;
  }
  
  .nav-container,
  .hero-container,
  .section-container,
  .footer-container {
      padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 32px;
  }
  
  .hero-subtitle {
      font-size: 18px;
  }
  
  .section {
      padding: 60px 0;
  }
  
  .features-grid,
  .security-grid {
      grid-template-columns: 1fr;
  }
  
  .feature-card,
  .security-card {
      padding: 30px;
  }
  
  .list-post {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
  }
  
  .post-number {
      min-width: 40px;
      font-size: 32px;
  }
  
  .back-to-top {
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      font-size: 16px;
  }
}
/* Добавьте эти стили в конец файла styles.css */

/* Image Styles with Placeholders */
.img-placeholder {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--dark-border);
  transition: var(--transition);
  background: linear-gradient(45deg, #1a1a2e, #0a0a0a, #1a1a2e);
  min-height: 400px;
}

.img-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: var(--primary-color);
}

.real-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
  opacity: 0;
  transform: scale(1.02);
}

.real-image.loading {
  opacity: 0;
}

.real-image.loaded {
  opacity: 1;
  animation: imageFadeIn 0.8s ease forwards;
}

.real-image.error {
  opacity: 1;
  background: linear-gradient(45deg, #2a1a2e, #1a0a1a, #2a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
}

.real-image.error::before {
  content: '🔒';
  font-size: 48px;
  margin-right: 15px;
  opacity: 0.5;
}

.img-placeholder:hover .real-image {
  transform: scale(1.05);
}

@keyframes imageFadeIn {
  from {
      opacity: 0;
      transform: scale(1.02);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.img-placeholder:hover .img-overlay {
  opacity: 1;
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.overlay-content i {
  font-size: 20px;
  color: var(--primary-color);
}

.image-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid var(--dark-border);
}

.image-caption i {
  color: var(--primary-color);
}

/* Fallback for missing images */
.img-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
      rgba(138, 43, 226, 0.1) 0%, 
      rgba(0, 200, 150, 0.05) 50%, 
      rgba(138, 43, 226, 0.1) 100%);
  z-index: 0;
  opacity: 0.5;
}

.img-placeholder::after {
  content: 'TORZON MARKET';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: 2px;
  z-index: 0;
}

/* Photo Section Styles */
.photo-section {
  margin-top: 80px;
  padding: 50px;
  background: var(--gradient-dark);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.photo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.photo-title {
  font-size: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-primary);
}

.photo-title i {
  color: var(--primary-color);
  font-size: 28px;
}

.photo-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 17px;
}

.photo-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.photo-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid var(--dark-border);
  transition: var(--transition);
}

.photo-feature:hover {
  background: rgba(138, 43, 226, 0.1);
  border-color: var(--primary-color);
}

.photo-feature i {
  color: var(--secondary-color);
  font-size: 18px;
}

/* Update about-visual for better image display */
.about-visual {
  display: flex;
  flex-direction: column;
}

/* Loading animation for images */
@keyframes shimmer {
  0% {
      background-position: -1000px 0;
  }
  100% {
      background-position: 1000px 0;
  }
}

.real-image.loading {
  background: linear-gradient(90deg, 
      rgba(138, 43, 226, 0.1) 25%, 
      rgba(138, 43, 226, 0.2) 50%, 
      rgba(138, 43, 226, 0.1) 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

/* Responsive adjustments for images */
@media (max-width: 1200px) {
  .photo-grid {
      gap: 40px;
  }
  
  .photo-title {
      font-size: 28px;
  }
}

@media (max-width: 992px) {
  .photo-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .img-placeholder {
      min-height: 350px;
  }
}

@media (max-width: 768px) {
  .photo-section {
      padding: 30px;
  }
  
  .photo-title {
      font-size: 24px;
  }
  
  .photo-text {
      font-size: 16px;
  }
  
  .img-placeholder {
      min-height: 300px;
  }
  
  .img-overlay {
      padding: 20px;
      font-size: 14px;
  }
  
  .overlay-content {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .photo-section {
      padding: 20px;
  }
  
  .img-placeholder {
      min-height: 250px;
  }
  
  .img-overlay {
      padding: 15px;
      font-size: 12px;
  }
  
  .overlay-content {
      font-size: 12px;
  }
  
  .img-placeholder::after {
      font-size: 18px;
  }
}