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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Age Verification Modal */
.age-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.age-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.age-modal-header h2 {
  color: #dc2626;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.age-modal-body p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Success Modal */
.success-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.success-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.success-modal-content h2 {
  color: #333;
  margin-bottom: 1rem;
}

.success-modal-content p {
  color: #666;
  margin-bottom: 2rem;
}

/* Responsible Gaming Banner */
.responsible-banner {
  background-color: #dc2626;
  color: white;
  padding: 0.8rem 0;
  font-size: 0.9rem;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-icon {
  font-size: 1.2rem;
}

.banner-text {
  flex: 1;
  text-align: center;
}

.banner-link {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.banner-link:hover,
.banner-link.active {
  opacity: 0.8;
}

/* Navigation */
nav {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo h1 {
  color: #dc2626;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.logo h1 a {
  color: inherit;
  text-decoration: none;
}

.logo-tagline {
  color: #666;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #dc2626;
}

.nav-auth {
  display: flex;
  align-items: center;
}

.btn-auth {
  background-color: #dc2626;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #dc2626;
}

.btn-auth:hover,
.btn-auth.active {
  background-color: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
  padding: 60px 0;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Draw Timer */
.draw-timer {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #dc2626;
}

.draw-timer h3 {
  color: #dc2626;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.timer-unit {
  background: #dc2626;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  min-width: 80px;
  text-align: center;
}

.timer-unit span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.timer-unit label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-disclaimer {
  background: rgba(220, 38, 38, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #dc2626;
}

.hero-disclaimer p {
  color: #dc2626;
  font-weight: 600;
  margin: 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #dc2626;
  color: white;
  border-color: #dc2626;
}

.btn-primary:hover {
  background-color: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #dc2626;
  border-color: #dc2626;
}

.btn-secondary:hover {
  background-color: #dc2626;
  color: white;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Jackpot Section */
.jackpot-section {
  background-color: #dc2626;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.jackpot-display h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.jackpot-amount {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-display p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.jackpot-display .btn-primary {
  background-color: white;
  color: #dc2626;
  border-color: white;
  font-size: 1.2rem;
  padding: 15px 40px;
}

.jackpot-display .btn-primary:hover {
  background-color: #f3f4f6;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background-color: #ffffff;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f4f6;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: #dc2626;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #dc2626;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

/* Prize Tiers */
.prize-tiers {
  padding: 80px 0;
  background-color: #fef2f2;
}

.prize-tiers h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}

.prize-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.prize-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

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

.prize-header {
  background-color: #dc2626;
  color: white;
  font-weight: bold;
}

.prize-row > div {
  padding: 0.5rem;
  text-align: center;
}

.odds-disclaimer {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #dc2626;
}

.testimonial-content p {
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author strong {
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* FAQ Preview */
.faq-preview {
  padding: 80px 0;
  background-color: #fef2f2;
}

.faq-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #dc2626;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

.faq-item a {
  color: #dc2626;
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
}

/* Auth Page Styles */
.auth-page {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

.auth-section {
  padding: 40px 0;
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  background-color: #f8f9fa;
}

.tab-button {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active {
  background-color: white;
  color: #dc2626;
  border-bottom: 3px solid #dc2626;
}

.tab-content {
  display: none;
  padding: 2rem;
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.tab-content p {
  color: #666;
  margin-bottom: 2rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #dc2626;
}

.form-group small {
  color: #666;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #e5e7eb;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #dc2626;
  border-color: #dc2626;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-checkboxes .checkbox-label {
  align-items: flex-start;
  line-height: 1.4;
}

.forgot-link {
  color: #dc2626;
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-info {
  max-width: 400px;
  margin: 2rem auto 0;
}

.info-card {
  background: #fef2f2;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.info-card h3 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  color: #666;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}

.security-info {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security-info h4 {
  color: #333;
  margin-bottom: 1rem;
}

.security-info p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.security-link {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
}

.security-link:hover {
  text-decoration: underline;
}

/* Responsible Gaming Page */
.responsible-page {
  padding-top: 0;
}

.responsible-header {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.responsible-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.responsible-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.responsible-content {
  padding: 80px 0;
}

.important-message {
  background: #fef2f2;
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.message-icon {
  font-size: 2rem;
  color: #dc2626;
  flex-shrink: 0;
}

.message-content h2 {
  color: #dc2626;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.message-content p {
  color: #666;
  line-height: 1.6;
}

.responsible-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.responsible-section h2 {
  color: #dc2626;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.guideline-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid #dc2626;
}

.guideline-card h3 {
  color: #dc2626;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.guideline-card p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.guideline-card ul {
  list-style: none;
  padding-left: 1rem;
}

.guideline-card li {
  color: #666;
  margin-bottom: 0.5rem;
  position: relative;
}

.guideline-card li::before {
  content: "•";
  color: #dc2626;
  font-weight: bold;
  position: absolute;
  left: -1rem;
}

.help-resources {
  background: #fef2f2;
  padding: 2rem;
  border-radius: 10px;
  height: fit-content;
}

.help-resources h2 {
  color: #dc2626;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.help-resources p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.help-organizations {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.help-org {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.help-org h4 {
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.help-org p {
  color: #666;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.help-org a {
  color: #dc2626;
  text-decoration: none;
}

.help-org a:hover {
  text-decoration: underline;
}

.self-exclusion,
.warning-signs,
.our-commitment {
  margin-bottom: 3rem;
}

.self-exclusion h2,
.warning-signs h2,
.our-commitment h2 {
  color: #dc2626;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.exclusion-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.exclusion-option {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #dc2626;
}

.exclusion-option h4 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.exclusion-option p {
  color: #666;
  line-height: 1.6;
}

.exclusion-contact {
  background: #fef2f2;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #dc2626;
}

.exclusion-contact p {
  color: #666;
  margin-bottom: 0.5rem;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.sign-category {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sign-category h4 {
  color: #dc2626;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.sign-category ul {
  list-style: none;
  padding: 0;
}

.sign-category li {
  color: #666;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}

.sign-category li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.commitment-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.commitment-item h4 {
  color: #dc2626;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.commitment-item p {
  color: #666;
  line-height: 1.6;
}

/* FAQ Page */
.faq-page {
  padding-top: 0;
}

.faq-content {
  padding: 80px 0;
}

.important-notice {
  background: #fef2f2;
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notice-icon {
  font-size: 2rem;
  color: #dc2626;
  flex-shrink: 0;
}

.notice-content h2 {
  color: #dc2626;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.notice-content p {
  color: #666;
  line-height: 1.6;
}

.notice-content a {
  color: #dc2626;
  text-decoration: underline;
}

.faq-categories {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.faq-category-btn {
  padding: 0.8rem 1.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 25px;
  color: #666;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-category-btn.active,
.faq-category-btn:hover {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
}

.faq-category h2 {
  color: #dc2626;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-category .faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-icon {
  font-size: 1.5rem;
  color: #dc2626;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
  padding: 0 1.5rem;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer ul,
.faq-answer ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer a {
  color: #dc2626;
  text-decoration: underline;
}

.faq-contact {
  background: #fef2f2;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 3rem;
}

.faq-contact h2 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.faq-contact p {
  color: #666;
  margin-bottom: 2rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-option {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-option h4 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.contact-option p {
  color: #666;
  margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-licenses {
  background-color: #2a2a2a;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-radius: 10px;
}

.footer-licenses h3 {
  color: #dc2626;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.regulator-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.regulator-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: opacity 0.3s ease;
  max-width: 200px;
  text-align: center;
}

.regulator-link:hover {
  opacity: 0.8;
}

.regulator-logo {
  width: 80px;
  height: 80px;
  background-color: #dc2626;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.regulator-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  background: white;
  padding: 5px;
}

.regulator-link span {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.3;
}

.experience-text {
  text-align: center;
  color: #dc2626;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #dc2626;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
}

.footer-disclaimers {
  margin-bottom: 1rem;
}

.footer-disclaimers p {
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.copyright {
  color: #ccc;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-auth {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

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

  .timer-display {
    gap: 0.5rem;
  }

  .timer-unit {
    min-width: 60px;
    padding: 0.8rem;
  }

  .timer-unit span {
    font-size: 1.5rem;
  }

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

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

  .prize-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .prize-row > div {
    text-align: left;
    padding: 0.3rem 0.5rem;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .auth-container {
    margin: 0 1rem;
  }

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

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

  .exclusion-options {
    grid-template-columns: 1fr;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .regulator-logos {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .faq-nav {
    flex-direction: column;
    align-items: center;
  }

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

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .banner-text {
    text-align: center;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .draw-timer {
    padding: 1.5rem;
  }

  .timer-unit {
    min-width: 50px;
    padding: 0.6rem;
  }

  .timer-unit span {
    font-size: 1.2rem;
  }

  .jackpot-amount {
    font-size: 2rem;
  }

  .step-card,
  .testimonial-card,
  .faq-item {
    padding: 1.5rem;
  }

  .auth-container {
    margin: 0 0.5rem;
  }

  .tab-content {
    padding: 1.5rem;
  }

  .important-message,
  .important-notice {
    flex-direction: column;
    text-align: center;
  }

  .message-icon,
  .notice-icon {
    align-self: center;
  }

  .age-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .age-modal-buttons {
    flex-direction: column;
  }

  /* New pages mobile styles */
  .steps-detailed {
    gap: 1.5rem;
  }

  .step-detailed {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    align-self: center;
    margin-bottom: 1rem;
  }

  .prize-table-detailed {
    font-size: 0.9rem;
  }

  .prize-table-detailed .prize-row {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.5rem;
  }

  .prize-table-detailed .prize-row > div {
    padding: 0.3rem 0.5rem;
  }

  .rules-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .purchase-steps {
    gap: 1.5rem;
  }

  .purchase-step {
    text-align: center;
  }

  .number-grid {
    justify-content: center;
    gap: 0.5rem;
  }

  .payment-methods,
  .confirmation-features,
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .limits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .prize-summary {
    gap: 0.5rem;
  }

  .prize-tier {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.3rem;
  }

  .cookie-table table {
    font-size: 0.8rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.5rem 0.3rem;
  }

  .security-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .protection-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .best-practices-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .verification-steps {
    gap: 1rem;
  }

  .verification-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    align-self: center;
    margin-bottom: 0.5rem;
  }
}

/* Print Styles */
@media print {
  .responsible-banner,
  nav,
  .hero-buttons,
  .jackpot-section,
  .auth-page,
  footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 350px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-content {
  margin-bottom: 1rem;
}

.cookie-banner h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-banner .btn-accept {
  background: #10b981;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-banner .btn-accept:hover {
  background: #059669;
}

.cookie-banner .btn-decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner .btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Additional styles for new components */
.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-detailed {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #3b82f6;
}

.step-number {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.tip-box, .price-info, .draw-info, .claim-info {
  background: #e0f2fe;
  border: 1px solid #0284c7;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.prize-table-detailed {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prize-table-detailed .prize-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.prize-table-detailed .prize-header {
  background: #1e40af;
  color: white;
  font-weight: bold;
}

.jackpot-row {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #92400e;
  font-weight: bold;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rule-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3b82f6;
}

.rule-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.purchase-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.purchase-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purchase-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.step-content p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.number-grid {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.number-button {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.payment-methods, .confirmation-features, .cta-features {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.payment-method, .feature {
  background: #e0f2fe;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid #0284c7;
}

/* Специальная стилизация для элементов с галочками в CTA блоке */
.get-started-cta .cta-features .feature {
  background: white;
  color: #1f2937;
  border: 1px solid #d1d5db;
  font-weight: 500;
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.limit-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #10b981;
}

.limit-card h3 {
  color: #059669;
  margin-bottom: 1rem;
}

.prize-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prize-tier {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

/* Buy Tickets Page Styles */
.important-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notice-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.notice-content h3 {
  color: #92400e;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.notice-content p {
  color: #78350f;
  margin: 0;
  line-height: 1.5;
}

.current-draw-info {
  margin: 3rem 0;
}

.draw-info-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.draw-info-card h2 {
  color: #1e40af;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
}

.draw-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.draw-detail {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.detail-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.detail-value {
  display: block;
  font-size: 1.1rem;
  color: #1e40af;
  font-weight: bold;
}

.jackpot-amount {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem !important;
}

.ticket-purchase-demo {
  margin: 3rem 0;
}

.ticket-purchase-demo h2 {
  text-align: center;
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.number-selection-demo {
  margin: 1rem 0;
  text-align: center;
}

.demo-text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

.responsible-limits {
  margin: 3rem 0;
  background: #f0fdf4;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #10b981;
}

.responsible-limits h2 {
  text-align: center;
  color: #059669;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.limits-disclaimer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: #ecfdf5;
  border-radius: 8px;
  color: #065f46;
  font-weight: 500;
}

.prize-info-summary {
  margin: 3rem 0;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.prize-info-summary h2 {
  text-align: center;
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.odds-note {
  text-align: center;
  margin: 1.5rem 0;
  font-weight: 600;
  color: #374151;
  font-size: 1.1rem;
}

.get-started-cta {
  margin: 3rem 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-content p {
  color: #e0f2fe;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-disclaimer {
  color: #e0f2fe;
  font-size: 0.9rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .draw-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 1rem;
  }

  .cookie-banner-buttons {
    justify-content: center;
  }

  .important-notice {
    flex-direction: column;
    text-align: center;
  }

  .draw-info-card {
    padding: 1.5rem;
  }

  .get-started-cta {
    padding: 2rem 1rem;
  }
}

/* How To Play Page Styles */
.how-to-play-steps {
  margin: 3rem 0;
}

.how-to-play-steps h2 {
  text-align: center;
  color: #1e40af;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.prize-structure-detailed {
  margin: 3rem 0;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.prize-structure-detailed h2 {
  text-align: center;
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.prize-table-detailed {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.prize-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1.5fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}

.prize-header {
  background: #1e40af;
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

.jackpot-row {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #92400e;
  font-weight: bold;
  font-size: 1.1rem;
}

.prize-row:nth-child(even):not(.prize-header):not(.jackpot-row) {
  background: #f8fafc;
}

.odds-disclaimer {
  text-align: center;
  padding: 1.5rem;
  background: #f0f9ff;
  border-radius: 8px;
  color: #0c4a6e;
  font-weight: 500;
  border: 1px solid #0284c7;
}

.game-rules {
  margin: 3rem 0;
}

.game-rules h2 {
  text-align: center;
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.ready-to-play {
  margin: 3rem 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
}

.ready-to-play .cta-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.ready-to-play .cta-content p {
  color: #d1fae5;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.ready-to-play .cta-disclaimer {
  color: #d1fae5;
  font-size: 0.9rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .prize-row {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.5rem;
  }

  .prize-row > div {
    padding: 0.3rem 0;
  }

  .prize-header {
    display: none;
  }

  .prize-row:not(.prize-header) > div:before {
    content: attr(data-label) ": ";
    font-weight: bold;
    color: #374151;
  }
}

/* Legal Pages Styles (Privacy, Terms, Cookies, Security) */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.last-updated {
  background: #f0f9ff;
  border: 1px solid #0284c7;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.last-updated p {
  margin: 0.25rem 0;
  color: #0c4a6e;
  font-weight: 500;
}

.policy-section {
  margin: 2.5rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3b82f6;
}

.policy-section h3 {
  color: #374151;
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.policy-section p {
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li {
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.policy-section strong {
  color: #1f2937;
  font-weight: 600;
}

.contact-info {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.contact-method {
  margin: 0.75rem 0;
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.95rem;
}

.contact-method strong {
  color: #1e40af;
  display: inline-block;
  min-width: 120px;
}

.policy-footer {
  background: #fef3c7;
  border: 2px solid #f59e0b;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.policy-footer p {
  color: #92400e;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.policy-footer a {
  color: #1e40af;
  text-decoration: underline;
}

.policy-footer a:hover {
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }

  .contact-method strong {
    display: block;
    min-width: auto;
    margin-bottom: 0.25rem;
  }
}

/* Contact Page Specific Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item h4 {
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: #374151;
  margin-bottom: 0.25rem;
}

.contact-item small {
  color: #6b7280;
  font-size: 0.85rem;
}

.quick-help {
  margin-top: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 10px;
}

.quick-help h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.help-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.help-link:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.help-icon {
  font-size: 1.2rem;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-notice {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.form-notice p {
  color: #92400e;
  margin: 0;
  font-size: 0.9rem;
}

.emergency-contact {
  background: #fef2f2;
  padding: 3rem 0;
  margin: 2rem 0;
}

.emergency-info h2 {
  color: #dc2626;
  text-align: center;
  margin-bottom: 2rem;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.emergency-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.emergency-item h3 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.emergency-item p {
  color: #374151;
  margin-bottom: 1rem;
}

.support-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.support-link:hover {
  background: #fee2e2;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .help-links {
    grid-template-columns: 1fr;
  }

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

/* Cookies Page Specific Styles */
.cookie-category {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #3b82f6;
}

.cookie-category h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-category p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-category ul {
  margin: 0;
  padding-left: 1.5rem;
}

.cookie-category li {
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.cookie-table {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.cookie-table th {
  background: #1e40af;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-table tr:nth-child(even) {
  background: #f8fafc;
}

.cookie-table tr:hover {
  background: #f1f5f9;
}

.cookie-management {
  background: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.cookie-management h3 {
  color: #059669;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cookie-management p {
  color: #065f46;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-management ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.cookie-management li {
  color: #047857;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.third-party-service {
  background: #fef7ff;
  border: 1px solid #c084fc;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.third-party-service h3 {
  color: #7c3aed;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.third-party-service p {
  color: #581c87;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.third-party-service a {
  color: #1e40af;
  text-decoration: underline;
}

.third-party-service a:hover {
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .cookie-table {
    font-size: 0.8rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem 0.5rem;
  }

  .cookie-category,
  .cookie-management,
  .third-party-service {
    padding: 1rem;
  }
}

/* Security Page Specific Styles */
.security-overview {
  margin: 3rem 0;
}

.security-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.security-intro h2 {
  color: #1e40af;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.security-intro p {
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.security-badge {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.badge-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.security-badge h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.security-badge p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

.data-protection {
  margin: 3rem 0;
  background: #f8fafc;
  padding: 2rem;
  border-radius: 15px;
}

.data-protection h2 {
  text-align: center;
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.protection-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #10b981;
}

.protection-card h3 {
  color: #059669;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.protection-card ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.protection-card li {
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.security-indicator {
  background: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.indicator-icon {
  color: #059669;
  font-weight: bold;
}

.security-indicator span:last-child {
  color: #065f46;
  font-size: 0.9rem;
}

.verification-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.verification-step {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3b82f6;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.verification-step .step-number {
  background: #3b82f6;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.verification-step .step-content h4 {
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.verification-step .step-content p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.compliance-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #f59e0b;
}

.compliance-card h3 {
  color: #d97706;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compliance-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compliance-links a {
  color: #1e40af;
  text-decoration: underline;
  font-size: 0.9rem;
}

.compliance-links a:hover {
  color: #1e3a8a;
}

.compliance-link {
  color: #1e40af;
  text-decoration: underline;
  font-weight: 500;
}

.compliance-link:hover {
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .security-badges {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .protection-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .verification-step {
    flex-direction: column;
    text-align: center;
  }

  .verification-step .step-number {
    align-self: center;
  }
}

/* FAQ Page Enhancements */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.faq-question {
  width: 100%;
  background: #f8fafc;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f1f5f9;
  color: #1e40af;
}

.faq-item.active .faq-question {
  background: #1e40af;
  color: white;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}



.faq-answer p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
  color: #4b5563;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer a {
  color: #1e40af;
  text-decoration: underline;
}

.faq-answer a:hover {
  color: #1e3a8a;
}

/* FAQ Tabs */
.faq-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-tab {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #374151;
}

.faq-tab:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.faq-tab.active {
  background: #1e40af;
  border-color: #1e40af;
  color: white;
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
}

.faq-category h2 {
  color: #1e40af;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #3b82f6;
}

@media (max-width: 768px) {
  .faq-tabs {
    flex-direction: column;
    align-items: center;
  }

  .faq-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-answer > div {
    padding: 1rem;
  }
}

/* About Page Specific Styles */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.about-text h2 {
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
}

.about-text p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  background: #f8fafc;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  border-left: 4px solid #1e40af;
}

.values-list strong {
  color: #1e40af;
}

.important-notice {
  background: #fef2f2;
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.important-notice h3 {
  color: #dc2626;
  margin-top: 0;
}

.important-notice p {
  color: #7f1d1d;
  margin-bottom: 0;
}

.about-stats-detailed {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.about-stats-detailed h3 {
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}

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

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.9rem;
}

.licensing-section {
  background: #f8fafc;
  padding: 4rem 0;
  margin: 3rem 0;
}

.licensing-section h2 {
  text-align: center;
  color: #1f2937;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.licensing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.license-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.license-item:hover {
  transform: translateY(-5px);
}

.license-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.license-item h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.license-item p {
  color: #6b7280;
  line-height: 1.6;
}

.operations-section {
  padding: 4rem 0;
}

.operations-section h2 {
  text-align: center;
  color: #1f2937;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.operation-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
}

.operation-step h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.operation-step p {
  color: #6b7280;
  line-height: 1.6;
}

.responsible-commitment {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0;
  margin: 3rem 0;
}

.commitment-content {
  text-align: center;
}

.commitment-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.commitment-content > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.commitment-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.commitment-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.commitment-feature h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.commitment-feature p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .licensing-grid,
  .operations-grid,
  .commitment-features {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .licensing-section h2,
  .operations-section h2,
  .commitment-content h2 {
    font-size: 2rem;
  }
}
