/* 6Club Predictor - Main Stylesheet */

:root {
  --color-bg: #0a0a12;
  --color-bg-light: #12121c;
  --color-purple: #9933ff;
  --color-pink: #ff3366;
  --color-green: #00ff88;
  --color-gold: #ffd700;
  --color-blue: #0088cc;
  --color-red: #ff3366;
  --color-violet: #9933ff;
  --text-white: #ffffff;
  --text-gray: #a0a0b0;
  --text-muted: #606070;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--color-bg);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Clock Animation */
.clock-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 40px;
}

.clock-face {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(153, 51, 255, 0.3);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 30px rgba(153, 51, 255, 0.3);
}

.clock-marker {
  position: absolute;
  width: 4px;
  height: 12px;
  background: rgba(153, 51, 255, 0.5);
  left: 50%;
  transform-origin: 50% 100px;
  margin-left: -2px;
  top: 8px;
}

.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 4px;
}

.hour-hand {
  width: 6px;
  height: 50px;
  background: linear-gradient(to top, var(--color-purple), var(--color-pink));
  margin-left: -3px;
  animation: rotate 4s linear infinite;
}

.minute-hand {
  width: 4px;
  height: 70px;
  background: linear-gradient(to top, var(--color-green), #00cc66);
  margin-left: -2px;
  animation: rotate 2s linear infinite;
}

.second-hand {
  width: 2px;
  height: 80px;
  background: var(--color-gold);
  margin-left: -1px;
  animation: rotate 1s linear infinite;
}

.clock-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(153, 51, 255, 0.5);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Loading Text */
.loading-brand {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink), var(--color-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.loading-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Loading Steps */
.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.step-icon {
  width: 24px;
  height: 24px;
}

.step-text {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.typing-cursor::after {
  content: '|';
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Progress Bar */
.progress-container {
  width: 300px;
  max-width: 90%;
  margin-bottom: 10px;
}

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

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-purple), var(--color-pink), var(--color-green));
  border-radius: 4px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(153, 51, 255, 0.5);
}

.progress-text {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.progress-percent {
  color: var(--color-purple);
  font-family: monospace;
}

/* Loading Stats */
.loading-stats {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.stat-box {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

.stat-value {
  font-size: 0.8rem;
  font-weight: bold;
  font-family: monospace;
}

.stat-value.green { color: var(--color-green); }
.stat-value.purple { color: var(--color-purple); }
.stat-value.pink { color: var(--color-pink); }

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Success State */
.loading-success {
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-green), #00cc66);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.success-title {
  font-size: 1.8rem;
  color: var(--color-green);
  margin-bottom: 10px;
}

.success-text {
  color: var(--text-gray);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(153, 51, 255, 0.1);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  margin-top: -5px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  background: rgba(153, 51, 255, 0.2);
}

.nav-link svg {
  width: 16px;
  height: 16px;
}

/* CTA Button */
.btn-primary {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(153, 51, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(153, 51, 255, 0.6);
}

.btn-gold {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-gold), #ffaa00);
  color: var(--color-bg);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.btn-telegram {
  padding: 12px 24px;
  background: var(--color-blue);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-telegram:hover {
  background: #0099dd;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 18, 0.95), rgba(30, 15, 45, 0.9)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--color-purple);
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--color-pink);
  bottom: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--color-green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-purple);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink), var(--color-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  border: 2px solid var(--color-bg);
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  fill: var(--color-gold);
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(153, 51, 255, 0.3);
}

.floating-card {
  position: absolute;
  padding: 16px 20px;
  background: rgba(18, 18, 28, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(153, 51, 255, 0.3);
}

.floating-card-1 {
  bottom: -20px;
  left: -20px;
}

.floating-card-2 {
  top: -20px;
  right: -20px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.card-icon.green {
  background: rgba(0, 255, 136, 0.2);
}

.card-icon.pink {
  background: rgba(255, 51, 102, 0.2);
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-icon.green svg {
  color: var(--color-green);
}

.card-icon.pink svg {
  color: var(--color-pink);
}

.card-value {
  font-size: 1.2rem;
  font-weight: bold;
}

.card-value.green {
  color: var(--color-green);
}

.card-value.pink {
  color: var(--color-pink);
}

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

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat-item svg {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}

.stat-item svg.purple {
  color: var(--color-purple);
}

.stat-item svg.green {
  color: var(--color-green);
}

.stat-item svg.pink {
  color: var(--color-pink);
}

.stat-item svg.yellow {
  color: var(--color-gold);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-white);
}

.stat-name {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section Styles */
.section {
  padding: 80px 20px;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 30px;
  background: linear-gradient(135deg, rgba(153, 51, 255, 0.1), rgba(255, 51, 102, 0.1));
  border: 1px solid rgba(153, 51, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(153, 51, 255, 0.5);
  box-shadow: 0 0 30px rgba(153, 51, 255, 0.2);
  transform: translateY(-5px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.purple {
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
}

.feature-icon.green {
  background: linear-gradient(135deg, var(--color-green), #00cc66);
}

.feature-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.feature-icon.yellow {
  background: linear-gradient(135deg, var(--color-gold), #ffaa00);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Games Section */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.game-card:hover {
  border-color: rgba(153, 51, 255, 0.5);
}

.game-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.game-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.game-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.game-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.game-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.game-tag {
  padding: 4px 10px;
  background: rgba(153, 51, 255, 0.2);
  color: var(--color-purple);
  font-size: 0.75rem;
  border-radius: 6px;
}

.game-multiplier {
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Telegram CTA */
.telegram-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(153, 51, 255, 0.2));
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(18, 18, 28, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(0, 136, 204, 0.3);
  text-align: center;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.cta-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-description {
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.cta-feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: #07070c;
  border-top: 1px solid rgba(153, 51, 255, 0.2);
}

.footer-warning {
  padding: 20px;
  background: rgba(255, 193, 7, 0.1);
  border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.warning-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.warning-content svg {
  width: 24px;
  height: 24px;
  color: #ffc107;
  flex-shrink: 0;
}

.warning-title {
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 4px;
}

.warning-text {
  color: rgba(255, 193, 7, 0.7);
  font-size: 0.85rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-description {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 136, 204, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--color-blue);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title svg {
  width: 18px;
  height: 18px;
  color: var(--color-purple);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

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

.footer-links a svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

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

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

/* Page Content */
.page-content {
  padding-top: 100px;
  min-height: 100vh;
}

.page-header {
  text-align: center;
  padding: 60px 20px;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.page-subtitle {
  color: var(--text-gray);
}

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.card-bordered {
  border: 1px solid rgba(153, 51, 255, 0.2);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title svg {
  width: 24px;
  height: 24px;
  color: var(--color-purple);
}

/* Prediction Page Styles */
.prediction-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.game-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 12px;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-btn:hover,
.game-btn.active {
  background: rgba(153, 51, 255, 0.2);
  border-color: var(--color-purple);
  color: var(--text-white);
}

.game-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-btn-icon.purple {
  background: rgba(153, 51, 255, 0.2);
}

.game-btn-icon.pink {
  background: rgba(255, 51, 102, 0.2);
}

.game-btn-icon.green {
  background: rgba(0, 255, 136, 0.2);
}

.game-btn-icon.yellow {
  background: rgba(255, 215, 0, 0.2);
}

.game-btn svg {
  width: 20px;
  height: 20px;
}

.game-btn.purple svg {
  color: var(--color-purple);
}

.game-btn.pink svg {
  color: var(--color-pink);
}

.game-btn.green svg {
  color: var(--color-green);
}

.game-btn.yellow svg {
  color: var(--color-gold);
}

/* Prediction Display */
.prediction-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

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

.prediction-label {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.prediction-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.prediction-circle.red {
  background: linear-gradient(135deg, var(--color-red), #cc1144);
  box-shadow: 0 0 30px rgba(255, 51, 102, 0.4);
}

.prediction-circle.green {
  background: linear-gradient(135deg, var(--color-green), #00cc66);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.prediction-circle.violet {
  background: linear-gradient(135deg, var(--color-violet), #7700cc);
  box-shadow: 0 0 30px rgba(153, 51, 255, 0.4);
}

.prediction-number {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(153, 51, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink), var(--color-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prediction-size {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
}

.prediction-size.big {
  background: rgba(0, 255, 136, 0.2);
  border: 2px solid var(--color-green);
  color: var(--color-green);
}

.prediction-size.small {
  background: rgba(59, 130, 246, 0.2);
  border: 2px solid #3b82f6;
  color: #3b82f6;
}

/* Countdown */
.countdown-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  margin-top: 20px;
}

.countdown-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
}

.countdown-label svg {
  width: 20px;
  height: 20px;
}

.countdown-value {
  font-size: 1.5rem;
  font-weight: bold;
}

.countdown-value span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: normal;
}

/* History Table */
.history-table {
  width: 100%;
  border-collapse: collapse;
}

.history-table th,
.history-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.history-table th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
}

.history-table td {
  font-size: 0.9rem;
}

.history-color {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.history-color.red {
  background: rgba(255, 51, 102, 0.2);
  color: var(--color-red);
}

.history-color.green {
  background: rgba(0, 255, 136, 0.2);
  color: var(--color-green);
}

.history-color.violet {
  background: rgba(153, 51, 255, 0.2);
  color: var(--color-violet);
}

/* FAQ */
.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--color-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  color: var(--text-gray);
  font-size: 0.9rem;
  padding-left: 32px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(153, 51, 255, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .features-grid,
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .prediction-selector {
    grid-template-columns: repeat(2, 1fr);
  }

  .prediction-display {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .stats-bar,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .prediction-selector {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .floating-card {
    display: none;
  }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-purple), var(--color-pink));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #aa44ff, #ff4477);
}

/* Selection */
::selection {
  background: rgba(153, 51, 255, 0.3);
  color: white;
}
