/*
Theme Name: Aviator Predictor
Theme URI: https://aviatorpredictor.com
Author: Aviator Predictor Team
Author URI: https://aviatorpredictor.com
Description: A modern, dark-themed one-page WordPress theme for Aviator Predictor - an advanced prediction tool for the Aviator crash game. Features smooth animations, neon glow effects, and a bold red and gold color scheme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aviator-predictor
Tags: one-column, custom-colors, custom-menu, featured-images, theme-options, dark, full-width-template

This theme, like WordPress, is licensed under the GPL.
*/

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

:root {
  /* Colors - HSL Format */
  --background: 0 0% 7%;
  --foreground: 0 0% 98%;
  --card: 0 0% 10%;
  --card-foreground: 0 0% 98%;
  --primary: 0 79% 50%;
  --primary-foreground: 0 0% 100%;
  --accent: 45 96% 48%;
  --accent-foreground: 0 0% 7%;
  --border: 0 0% 20%;
  --radius: 0.75rem;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 0 20px hsla(var(--primary), 0.5);
}

.btn-primary:hover {
  box-shadow: 0 0 30px hsla(var(--primary), 0.8);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 0 20px hsla(var(--accent), 0.5);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid hsl(var(--accent));
  color: hsl(var(--accent));
}

/* Cards */
.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 20px hsla(var(--primary), 0.3);
  transform: translateY(-5px);
}

/* Sections */
section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px hsla(var(--primary), 0.5); }
  50% { box-shadow: 0 0 40px hsla(var(--primary), 0.8); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  section { padding: 4rem 0; }
  .container { padding: 0 1rem; }
}
