:root {
  --burgundy: #800020;
  --dark-burgundy: #5c0016;
  --cream: #f5f5dc;
  --dark-cream: #e8e8c8;
  --white: #ffffff;
  --dark: #1a1a1a;
  --light-gray: #f8f9fa;
  --text-dark: #2d2d2d;
}

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

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text-dark);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Georgia", serif;
}

.bg-burgundy {
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    var(--dark-burgundy) 100%
  );
}

.navbar {
  padding: 1.2rem 0;
  box-shadow: 0 4px 12px rgba(128, 0, 32, 0.15);
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream) !important;
}

.btn-burgundy {
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    var(--dark-burgundy) 100%
  );
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

.btn-burgundy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.4);
  color: var(--white);
}

.btn-cream {
  background: var(--cream);
  color: var(--burgundy);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-cream:hover {
  background: var(--dark-cream);
  color: var(--dark-burgundy);
  transform: translateY(-2px);
}

.btn-outline-burgundy {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
  padding: 0.65rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-burgundy:hover {
  background: var(--burgundy);
  color: var(--white);
}

.hero-section {
  background: linear-gradient(
      135deg,
      rgba(128, 0, 32, 0.95) 0%,
      rgba(92, 0, 22, 0.9) 100%
    ),
    url("img/hero-premium.png");
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero-content-box {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--cream);
}

.hero-content-box h1 {
  color: var(--burgundy);
}

.prize-showcase {
  background: linear-gradient(135deg, var(--cream) 0%, var(--dark-cream) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--burgundy);
}

.prize-label {
  font-size: 1.1rem;
  color: var(--burgundy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prize-amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--burgundy);
  margin: 1.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.prize-details {
  margin: 1.5rem 0;
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0;
  color: var(--text-dark);
  font-weight: 500;
}

.detail-item i {
  color: var(--burgundy);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--light-gray);
  border-radius: 12px;
  border-left: 4px solid var(--burgundy);
}

.feature-item i {
  font-size: 2rem;
  color: var(--burgundy);
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}

.feature-item span {
  font-size: 0.9rem;
  color: #666;
}

.games-section {
  background: var(--light-gray);
}

.game-box {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  height: 100%;
}

.game-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.2);
  border-color: var(--burgundy);
}

.game-box.premium {
  border-color: var(--burgundy);
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.game-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.game-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.game-header i {
  font-size: 3rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.game-header h3 {
  color: var(--burgundy);
  font-size: 1.8rem;
}

.game-description {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.game-info {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid #ddd;
}

.info-row:last-child {
  border-bottom: none;
}

.text-burgundy {
  color: var(--burgundy) !important;
}

.claim-section {
  background: var(--light-gray);
}

.claim-step {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.claim-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.15);
}

.step-icon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

.claim-step i {
  color: var(--burgundy);
}

.claim-step h4 {
  margin: 1.5rem 0 1rem;
  color: var(--burgundy);
}

.claim-notice {
  background: linear-gradient(135deg, var(--cream) 0%, var(--dark-cream) 100%);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--burgundy);
  text-align: center;
}

.trust-section {
  background: var(--white);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.trust-item:last-child {
  border-bottom: none;
}

.trust-item i {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.trust-item h5 {
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: #666;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    var(--dark-burgundy) 100%
  );
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(128, 0, 32, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: var(--white);
  color: var(--burgundy);
  font-weight: 600;
  padding: 1.5rem;
  border-left: 4px solid var(--burgundy);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    var(--dark-burgundy) 100%
  );
  color: var(--white);
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  background: var(--light-gray);
  color: #666;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    var(--dark-burgundy) 100%
  );
}

.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-heading {
  color: var(--cream);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--cream);
  padding-left: 5px;
}

.footer-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-img:hover {
  transform: scale(1.05);
}

.footer-img-invert {
  filter: brightness(0.9) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(128, 0, 32, 0.98);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
}

#ageModal .modal-content {
  border-radius: 20px;
  border: 3px solid var(--burgundy);
}

.auth-section,
.legal-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  background: var(--light-gray);
  padding: 3rem 0;
}

.auth-card,
.legal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--burgundy);
}

.security-notice,
.contact-info {
  background: rgba(245, 245, 220, 0.5);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  border-left: 4px solid var(--burgundy);
}

.legal-content h2 {
  color: var(--burgundy);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.form-control,
.form-select {
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 0.2rem rgba(128, 0, 32, 0.15);
}

.input-group-text {
  background: var(--light-gray);
  border: 2px solid #e0e0e0;
  border-right: none;
  border-radius: 10px 0 0 10px;
}

.input-group .form-control {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
  .hero-content-box {
    padding: 2rem;
  }

  .prize-amount {
    font-size: 2.5rem;
  }

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

  .features-grid {
    gap: 1rem;
  }
}

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

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