/*
Theme Name: CrushOn AI
Theme URI: https://crushonai.com
Author: Your Name
Author URI: https://yoursite.com
Description: Clean, minimal random video chat WordPress theme with teal accents
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crushonai
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

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

html, body {
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.site-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #4ecdc4;
}

.site-logo span {
  font-style: italic;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #4ecdc4;
}

/* HERO SECTION */
.hero {
  padding: 60px 60px 80px;
  text-align: center;
  background: #fff;
}

.online-count {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
  font-weight: 500;
}

.online-count strong {
  color: #4ecdc4;
  font-weight: 700;
}

h1 {
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #000;
}

h1 .highlight {
  color: #4ecdc4;
}

.hero-desc {
  font-size: 20px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  background: #4ecdc4;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #3ab8af;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.25);
}

/* QUICK STATS */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px;
  background: #fff;
  margin-bottom: 60px;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* USERS SECTION */
.users-section {
  padding: 60px;
  background: #fff;
}

.users-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.user-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #4ecdc4, #44a3a0);
  cursor: pointer;
  transition: transform 0.2s;
}

.user-card:hover {
  transform: scale(1.04);
}

.user-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  padding: 20px;
  color: #fff;
}

.user-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.user-status {
  font-size: 12px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* DIVIDER */
.section-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 80px 60px;
}

/* STATS DETAILED */
.stats-detailed {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 60px;
  background: #f9f9f9;
  margin-bottom: 80px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 8px;
}

.stat-box span {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 60px;
  background: linear-gradient(180deg, #fff 0%, #f0fffe 100%);
  margin-bottom: 40px;
  border-radius: 8px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: #4ecdc4;
  margin-bottom: 60px;
  font-weight: 500;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #ddd;
}

.step-icon {
  width: 32px;
  height: 32px;
  color: #4ecdc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
}

.step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* FEATURES */
.features-section {
  padding: 80px 60px;
  background: #f9fffe;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: #4ecdc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
}

.feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* FINAL CTA */
.final-cta {
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(135deg, #e0f7f6, #f0fffe);
  margin-bottom: 80px;
  border-left: 4px solid #4ecdc4;
  border-radius: 4px;
}

.final-cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.final-cta p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  font-weight: 500;
}

/* FOOTER */
footer {
  border-top: 1px solid #f0f0f0;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #4ecdc4;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: #666;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #4ecdc4;
}

.footer-copyright {
  font-size: 12px;
  color: #999;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  header, .hero, .users-section, .section-divider, .how-it-works, .features-section, .final-cta, footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stats, .stats-detailed {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
  }

  .users-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
