/* VegasHero Copyright & Policy Control - Premium Dark Design */

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

:root {
  --primary-dark: #0a0a0a;
  --secondary-dark: #1a1a1a;
  --accent-red: #e63946;
  --accent-gold: #d4af37;
  --accent-light-red: #ff6b7a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --border-color: #333333;
  --glow-red: rgba(230, 57, 70, 0.3);
  --glow-gold: rgba(212, 175, 55, 0.2);
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  border-bottom: 2px solid var(--accent-red);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--glow-red);
}

.header-strip {
  background-color: var(--accent-red);
  color: var(--primary-dark);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--glow-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-red);
  text-shadow: 0 0 8px var(--glow-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
  padding: 80px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, var(--glow-red) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-gold);
  text-shadow: 0 0 20px var(--glow-gold), 0 0 40px var(--glow-red);
  letter-spacing: 2px;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.btn {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--accent-red);
  background-color: transparent;
  color: var(--accent-red);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.btn:hover {
  background-color: var(--accent-red);
  color: var(--primary-dark);
  box-shadow: 0 0 20px var(--glow-red);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--primary-dark);
  border-color: var(--accent-red);
}

.btn-primary:hover {
  background-color: var(--accent-light-red);
  border-color: var(--accent-light-red);
  box-shadow: 0 0 25px var(--glow-red);
}

.hero-support {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 20px;
}

/* Sections */
section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-color);
}

section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--accent-gold);
  text-align: center;
  letter-spacing: 1px;
}

section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-red);
  margin-bottom: 15px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.card {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, #0f0f0f 100%);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--accent-red);
  box-shadow: 0 0 20px var(--glow-red);
  transform: translateY(-5px);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.step {
  background: var(--secondary-dark);
  border-left: 4px solid var(--accent-red);
  padding: 20px;
  border-radius: 2px;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--accent-red);
  color: var(--primary-dark);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.step p {
  color: var(--text-secondary);
  font-size: 14px;
}

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

label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--secondary-dark);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 10px var(--glow-red);
  background-color: #0f0f0f;
}

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

.form-note {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 10px;
  font-style: italic;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  border-top: 2px solid var(--accent-red);
  padding: 50px 40px 30px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-red);
  text-shadow: 0 0 8px var(--glow-red);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
}

.footer-bottom p {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 20px;
    padding: 15px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  section {
    padding: 40px 20px;
  }

  section h2 {
    font-size: 28px;
  }

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

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

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-secondary);
}

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

.highlight-gold {
  color: var(--accent-gold);
}

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

/* Page-specific adjustments */
.policy-section {
  background: var(--secondary-dark);
  padding: 30px;
  margin: 20px 0;
  border-left: 4px solid var(--accent-gold);
  border-radius: 2px;
}

.policy-section h3 {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.policy-section p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.policy-section ul {
  margin-left: 20px;
  color: var(--text-secondary);
}

.policy-section ul li {
  margin-bottom: 8px;
}

.notice-box {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid var(--accent-red);
  padding: 25px;
  margin: 30px 0;
  border-radius: 2px;
}

.notice-box p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.last-updated {
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
