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

:root {
  /* Color scheme - red and white */
  --primary-red: #DC143C;
  --light-red: #FF6B6B;
  --dark-red: #B22222;
  --text-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-light: #FFF5F5;
  --border-red: #DC143C;
  --text-dark: #333333;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
}

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

/* Main Game Section */
.main-game-section {
    background-color: #dc143cb3;
  padding: 60px 20px;
  text-align: center;
}

.main-game-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.main-game-logo-left,
.main-game-logo-right {
  flex: 0 0 auto;
}

.main-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.main-game-info {
  flex: 1;
  min-width: 200px;
  color: var(--text-white);
}

.main-game-date {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.main-game-time {
  font-size: 48px;
  font-weight: bold;
}

.sponsor-section {
  margin-top: 30px;
  max-width: 35%;
  margin-left: auto;
  margin-right: auto;
}

.sponsor-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  padding-top: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.3s;
}

.sponsor-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.sponsor-logo {
  width: 96px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.sponsor-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sponsor-text {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 5px;
  white-space: nowrap;
}

.sponsor-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Winning Amount Section */
.winning-amount-section {
  margin-top: 30px;
  max-width: 35%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
  background-color: #17192A;
  border-radius: 12px;
  text-align: center;
}

.winning-amount-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-weight: 400;
}

.winning-amount-value {
  font-size: 48px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
}

/* Lottery styles */
.lottery-container {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);
}

.lottery-header {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.lottery-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-red);
}

.lottery-subtitle {
  font-size: 18px;
  color: var(--text-dark);
  opacity: 0.8;
}

.lottery-content {
  max-width: 800px;
  margin: 0 auto;
}

.lottery-info {
  background: rgba(255, 245, 245, 0.9);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 2px solid var(--primary-red);
}

.lottery-amount {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.amount-label {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.amount-value {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-red);
}

.lottery-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.lottery-option {
  background: var(--dark-red);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
  border: 2px solid transparent;
}

.lottery-option:hover {
  background: var(--border-red);
  border-color: var(--text-white);
}

.lottery-option.selected {
  background: var(--primary-red);
  color: var(--text-white);
  border-color: var(--primary-red);
  border-width: 3px;
}

.option-price {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
}

.option-count {
  font-size: 14px;
  opacity: 0.8;
   color: #fff;
}

.lottery-tickets-display {
  margin-bottom: 25px;
  display: none;
}

.lottery-tickets-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-red);
  margin-bottom: 15px;
  text-align: center;
}

.lottery-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
  min-height: 60px;
}

.lottery-ticket-card {
  background: var(--bg-white);
  border: 2px solid var(--primary-red);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lottery-ticket-card .ticket-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.lottery-ticket-card .ticket-number {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-red);
  letter-spacing: 0.5px;
}

.lottery-total {
  text-align: center;
  padding: 20px;
  background: var(--bg-white);
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid var(--primary-red);
}

.total-label {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.total-value {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-red);
}

.info-button {
  background: var(--primary-red);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  margin: 20px auto;
  display: block;
  border: none;
}

.info-button:hover {
  background: var(--dark-red);
}

/* Modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: var(--bg-white);
  color: var(--text-dark);
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  border: 3px solid var(--primary-red);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--primary-red);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  font-weight: bold;
}

.modal-close:hover {
  color: var(--dark-red);
}

.modal-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.modal-section {
  margin-bottom: 30px;
}

.modal-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-red);
}

.modal-section p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.modal-link {
  color: var(--primary-red);
  text-decoration: underline;
  cursor: pointer;
}

.modal-link:hover {
  color: var(--dark-red);
}

.modal-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.modal-footer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 140px;
  text-align: center;
}

.modal-footer-badge .footer-badge-link {
  display: block;
}

.modal-footer-badge .footer-badge-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.modal-footer-badge .footer-badge-image.age-18 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.modal-footer-badge .footer-badge-text {
  font-size: 12px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

/* Overview page */
.overview-page {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);
  min-height: 100vh;
}

.overview-hero-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.overview-hero-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.overview-section-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.overview-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.overview-event-card {
  background: rgba(255, 245, 245, 0.95);
  border: 2px solid var(--primary-red);
  border-radius: 10px;
  padding: 20px;
}

.overview-event-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.overview-event-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-red);
  margin: 0;
  flex: 1 1 100%;
}

.overview-event-datetime {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.overview-event-vinst {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.overview-event-vinst-label {
  font-size: 12px;
  color: var(--text-dark);
  opacity: 0.8;
}

.overview-event-vinst-value {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-red);
}

.overview-event-kop {
  margin-left: auto;
  padding: 10px 24px;
  background: var(--primary-red);
  color: var(--text-white);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.overview-event-kop:hover {
  background: var(--dark-red);
  color: var(--text-white);
}

.overview-info-link {
  text-align: center;
  margin-top: 40px;
}

/* Overview page */
.overview-page {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);
  min-height: 100vh;
}

.overview-hero-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.overview-hero-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.overview-section-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.overview-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.overview-event-card {
  background: rgba(255, 245, 245, 0.95);
  border: 2px solid var(--primary-red);
  border-radius: 10px;
  padding: 20px;
}

.overview-event-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.overview-event-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-red);
  margin: 0;
  flex: 1 1 100%;
}

.overview-event-datetime {
  font-size: 15px;
  color: var(--text-dark);
}

.overview-event-teams {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overview-event-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.overview-event-vs {
  font-size: 12px;
  font-weight: bold;
  color: var(--primary-red);
}

.overview-event-vinst {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.overview-event-vinst-label {
  font-size: 12px;
  color: var(--text-dark);
  opacity: 0.8;
}

.overview-event-vinst-value {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-red);
}

.overview-event-kop {
  margin-left: auto;
  padding: 10px 24px;
  background: var(--primary-red);
  color: var(--text-white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.overview-event-kop:hover {
  background: var(--dark-red);
}

.overview-info-link {
  text-align: center;
  margin-top: 40px;
}

/* Historical lotteries */
.historical-page {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);
  min-height: 100vh;
}

.historical-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary-red);
}

.lottery-list {
  max-width: 1000px;
  margin: 0 auto;
}

.lottery-item {
  background: rgba(255, 245, 245, 0.9);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
  border: 2px solid var(--primary-red);
}

.lottery-item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-red);
}

.lottery-item-date {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 15px;
  color: var(--text-dark);
}

/* Game info in historical lotteries */
.lottery-game-info {
  background: var(--primary-red);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--text-white);
}

.lottery-game-date {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.lottery-game-day {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.lottery-game-date-number {
  font-size: 24px;
  font-weight: bold;
}

.lottery-game-month {
  font-size: 11px;
  text-transform: uppercase;
}

.lottery-game-league {
  font-size: 13px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.lottery-game-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 10px;
}

.lottery-team-home {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lottery-team-away {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row-reverse;
}

.lottery-team-logo {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.lottery-team-name {
  font-size: 14px;
  font-weight: 600;
}

.lottery-game-time {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.lottery-item-details {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.lottery-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label {
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  color: var(--text-dark);
}

.detail-value {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-red);
}

/* Navigation */
.nav {
  background: var(--primary-red);
  padding: 15px 0;
  border-bottom: 2px solid var(--dark-red);
}

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

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-white);
}

.nav-logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.nav-link {
  font-size: 16px;
  transition: opacity 0.3s;
  color: var(--text-white);
}

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

/* Nav dropdown menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 9999px;
  color: var(--text-white);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.nav-dropdown-btn:active {
  transform: scale(0.98);
}

.nav-dropdown-btn .nav-dropdown-icon-close {
  display: none;
}

.nav-dropdown-btn .nav-dropdown-icon-burger {
  display: block;
}

.nav-dropdown.is-open .nav-dropdown-btn .nav-dropdown-icon-close {
  display: block;
}

.nav-dropdown.is-open .nav-dropdown-btn .nav-dropdown-icon-burger {
  display: none;
}

.nav-dropdown-icon,
.nav-dropdown-icon-burger,
.nav-dropdown-icon-close {
  width: 24px;
  height: 24px;
}

.nav-dropdown-content {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;
  width: 320px;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-dropdown.group:hover .nav-dropdown-content,
.nav-dropdown.is-open .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

a.nav-dropdown-item:hover,
.nav-dropdown-item-click:hover {
  background: #f5f5f5;
}

.nav-dropdown-item-title {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.nav-dropdown-item-desc {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.nav-dropdown-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 8px 0;
}

.nav-dropdown-actions {
  display: flex;
  gap: 8px;
  padding-top: 8px;
}

.nav-dropdown-btn-outline {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  text-align: center;
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-btn-outline:hover {
  background: var(--primary-red);
  color: var(--text-white);
}

.nav-dropdown-btn-primary {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  background: var(--dark-red);
  color: var(--text-white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-dropdown-btn-primary:hover {
  background: var(--primary-red);
}

/* Footer */
.footer {
  background: var(--primary-red);
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 2px solid var(--dark-red);
  color: var(--text-white);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Footer Badges */
.footer-badges {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.footer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.footer-badge-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-badge-logo {
  width: 144px;
  height: 60px;
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
}

.footer-badge-logo.age-18 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
}

.footer-badge-image {
  width: auto;
  height: 60px;
  object-fit: contain;
  display: block;
  filter: brightness(0.5);
}

.footer-badge-image.age-18 {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-badge-text {
  font-size: 12px;
  text-align: center;
  color: var(--text-white);
  max-width: 150px;
  line-height: 1.4;
}

.footer-badge-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-block-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
  min-width: 240px;
}

.footer-block-button:hover {
  background: var(--text-white);
  color: var(--primary-red);
}

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

.footer-link {
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s;
  color: var(--text-white);
}

.footer-link:hover {
  opacity: 1;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 30px 0;
}

.footer-action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  min-width: 240px;
}

.footer-action-button.find-tickets {
  background: var(--primary-red);
  color: var(--text-white);
}

.footer-action-button.find-tickets:hover {
  background: var(--dark-red);
}

.footer-action-button.subscribe {
  background: var(--bg-white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.footer-action-button.subscribe:hover {
  background: var(--primary-red);
  color: var(--text-white);
}

.footer-action-button svg {
  flex-shrink: 0;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.footer-text {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Stoppage Page */
.stoppage-page {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);
  min-height: 100vh;
}

.stoppage-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary-red);
}

.stoppage-content {
  max-width: 800px;
  margin: 0 auto;
}

.stoppage-section {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 245, 245, 0.9);
  border-radius: 8px;
  border: 2px solid var(--primary-red);
}

.stoppage-section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-red);
}

.stoppage-section p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--text-dark);
}

.stoppage-list {
  margin: 20px 0;
  padding-left: 20px;
}

.stoppage-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-dark);
}

.support-info {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 6px;
  margin-top: 15px;
}

.support-info p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.support-info a {
  color: var(--primary-red);
  text-decoration: underline;
}

.stoppage-form-section {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 2px solid var(--primary-red);
}

.user-info {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
}

.user-info p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.info-note {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 10px;
  color: var(--text-dark);
}

.stoppage-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0 20px 0;
  color: var(--primary-red);
}

.period-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.period-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--bg-white);
  border: 2px solid var(--primary-red);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.period-option:hover {
  background: var(--primary-red);
  color: var(--text-white);
}

.period-option input[type="radio"] {
  margin-right: 10px;
  cursor: pointer;
}

.period-option span {
  font-weight: 600;
  color: var(--text-dark);
}

.period-option:hover span {
  color: var(--text-white);
}

.period-option.selected {
  background: var(--primary-red);
}

.period-option.selected span {
  color: var(--text-white);
  font-weight: bold;
}

.period-option:hover {
  background: var(--primary-red);
}

.period-option:hover span {
  color: var(--text-white);
}

.period-option input[type="radio"]:checked ~ span {
  color: var(--text-dark);
}

.period-option.selected input[type="radio"]:checked ~ span {
  color: var(--text-white);
}

.confirmation-checkbox {
  margin: 30px 0;
  padding: 20px;
  background: var(--bg-white);
  border-radius: 6px;
}

.confirmation-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--text-dark);
}

.confirmation-checkbox input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

.stoppage-button {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.stoppage-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form Styles */
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--primary-red);
  border-radius: 6px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--dark-red);
}

.swish-input-group {
  display: flex;
  gap: 10px;
}

.swish-country-code {
  padding: 12px;
  border: 2px solid var(--primary-red);
  border-radius: 6px;
  font-size: 16px;
  background: var(--bg-white);
  color: var(--text-dark);
  cursor: pointer;
}

.swish-number-input {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--primary-red);
  border-radius: 6px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
}

.swish-number-input:focus,
.swish-country-code:focus {
  outline: none;
  border-color: var(--dark-red);
}

.cancel-button {
  background: var(--bg-white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.cancel-button:hover {
  background: var(--primary-red);
  color: var(--text-white);
}

/* Success Modal */
.success-modal {
  max-width: 500px;
  text-align: center;
}

.success-content {
  padding: 20px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-red);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.success-modal .modal-title {
  color: var(--primary-red);
  margin-bottom: 15px;
}

.success-modal p {
  color: var(--text-dark);
  margin-bottom: 25px;
  font-size: 16px;
}

/* Login Modal */
.login-modal {
  max-width: 500px;
  padding: 40px;
}

.login-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.login-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.4;
}

.login-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-section-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.phone-country-code {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: 14px;
  cursor: pointer;
  min-width: 100px;
}

.phone-number-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.phone-number-input:focus,
.phone-country-code:focus {
  outline: none;
  border-color: var(--primary-red);
}

.login-primary-button {
  width: 100%;
  padding: 14px;
  background: #8B4513;
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.login-primary-button:hover {
  background: #6B3410;
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
}

.login-divider-text {
  position: relative;
  background: var(--bg-white);
  padding: 0 15px;
  color: var(--text-dark);
  font-size: 14px;
}

.login-alternatives {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-alternative-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-white);
  border: 1px solid #ddd;
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.login-alternative-button:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

.google-icon {
  flex-shrink: 0;
}

.email-icon {
  flex-shrink: 0;
  stroke: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
  .main-game-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-logo {
    width: 80px;
    height: 80px;
  }
  
  .main-game-date {
    font-size: 24px;
  }
  
  .main-game-time {
    font-size: 36px;
  }
  
  .lottery-title {
    font-size: 28px;
  }
  
  .lottery-tickets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .lottery-ticket-card {
    padding: 12px;
  }
  
  .lottery-ticket-card .ticket-logo {
    width: 40px;
    height: 40px;
  }
  
  .lottery-ticket-card .ticket-number {
    font-size: 16px;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .nav-links .nav-link-desktop {
    display: none;
  }

  .nav-links {
    gap: 15px;
    font-size: 14px;
  }
  
  .nav-logo-img {
    height: 40px;
  }
  
  .nav-logo-text {
    font-size: 20px;
  }
  
  .nav-dropdown-content {
    width: calc(100vw - 40px);
    max-width: 320px;
    right: -10px;
  }

  .overview-event-teams {
    order: 0;
    width: 100%;
  }

  .overview-event-logo {
    width: 32px;
    height: 32px;
  }
  
  .login-modal {
    padding: 25px;
    max-width: 95%;
  }
  
  .login-title {
    font-size: 16px;
  }
  
  .phone-input-group {
    flex-direction: column;
  }
  
  .phone-country-code {
    width: 100%;
  }
  
  .footer-badges {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-badge {
    width: 100%;
  }
  
  .footer-block-button {
    width: 100%;
    min-width: auto;
  }
  
  .footer-actions {
    width: 100%;
  }
  
  .footer-action-button {
    width: 100%;
    min-width: auto;
  }
  
  .swish-input-group {
    flex-direction: column;
  }
  
  .swish-country-code {
    width: 100%;
  }
  
  .sponsor-link {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .sponsor-info {
    align-items: center;
  }
  
  .sponsor-logo {
    width: 80px;
  }
}
