/* Landing page-specific styles */

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.landing {
  background: var(--background-color);
  color: var(--text-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.landing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.landing-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.landing h2 {
  font-size: 4rem;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.landing p {
  font-size: 1.5rem;
  margin-bottom: 50px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.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: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  animation: pulse 2s infinite;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text-color);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Terminal Mockup Styling */
.terminal-mockup {
  background: #0b0f19;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: left;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.terminal-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.terminal-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-dots .dot.red { background: #ff5f56; }
.terminal-dots .dot.yellow { background: #ffbd2e; }
.terminal-dots .dot.green { background: #27c93f; }

.terminal-title {
  color: #94a3b8;
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}

.terminal-copy {
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.terminal-copy:hover {
  color: #10b981;
  transform: scale(1.1);
}

.terminal-body {
  padding: 24px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #f8fafc;
  overflow-x: auto;
}

.terminal-body pre {
  margin: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
}

.terminal-body .prompt {
  color: #10b981;
  font-weight: bold;
  margin-right: 8px;
}

.features-section-title {
  margin: 80px 0 40px;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.features-section-title h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 1.3s both;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(16, 185, 129, 0.4);
}

/* Platform icons animation */
.platform-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
  animation: float 4s ease-in-out infinite;
}

.platform-icon:hover {
  transform: scale(1.1) translateY(-5px);
}

/* Notification cards */
.notification-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.notification-card:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing h2 {
    font-size: 2.5rem;
  }
  
  .landing p {
    font-size: 1.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .landing {
    padding: 60px 0;
  }
  
  .landing h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.feature-card i {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
}

.feature-card p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 0;
  line-height: 1.6;
  color: var(--secondary-color);
}

/* Dashboard section styling */
.dashboard {
  padding: 100px 0;
  background: var(--background-color);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 800;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--secondary-color);
  max-width: 700px;
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.stat-card {
  background: var(--card-background);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.stat-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1;
}

.stat-change {
  font-size: 1rem;
  color: var(--success-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.stat-change:before {
  content: '↑';
  margin-right: 5px;
  color: var(--success-color);
}

.dashboard-content {
  background: var(--card-background);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.emulator-status h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 700;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.status-item {
  background: var(--light-color);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.status-item:hover {
  background: var(--card-background);
  transform: translateX(5px);
  border-color: var(--primary-color);
}

.status-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 600;
}

.status-indicator {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 10px;
}

.status-indicator.online {
  background: var(--success-color);
  color: white;
}

.status-indicator.offline {
  background: var(--danger-color);
  color: white;
}

.status-detail {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-top: 10px;
}

.notification-list {
  margin-top: 30px;
}

.notification-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  color: white;
}

.tiktok { background: #000000; }
.youtube { background: #ff0000; }
.twitter { background: #1da1f2; }
.facebook { background: #1877f2; }
.instagram { background: #8338ec; }
.threads { background: #000000; }
.twitch { background: #9146ff; }
.kick { background: #ff4242; }
.google { background: #4285f4; }
.reddit { background: #ff4500; }
.discord { background: #5865f2; }
.telegram { background: #0088cc; }
.whatsapp { background: #25d366; }

.notification-content {
  flex: 1;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.platform {
  font-weight: 600;
  color: var(--primary-color);
}

.time {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.notification-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing h2 {
    font-size: 2.8rem;
  }
  
  .landing p {
    font-size: 1.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .landing h2 {
    font-size: 2.2rem;
  }
  
  .landing p {
    font-size: 1.1rem;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .stat-value {
    font-size: 2.2rem;
  }
}