/* lionelpcs Styles */

/* Full page background */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('logos/foot.png.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.content-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* Header and Top Bar */
.site-header { 
  background: transparent;
  position: relative;
  z-index: 10;
}

.top-bar {
  background: rgba(13, 17, 23, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid #1f2225;
  backdrop-filter: blur(10px);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8b949e;
}

.slogan {
  color: #58a6ff;
  font-weight: 600;
}

.date {
  color: #6e7681;
}

.navbar {
  background: rgba(13, 17, 23, 0.8);
  padding: 16px 0;
  border-bottom: 1px solid #21262d;
  backdrop-filter: blur(10px);
}

.brand {
  font-size: 24px;
  font-weight: 800;
  color: #58a6ff;
  letter-spacing: -0.5px;
}

/* Bookmakers Section */
.bookmakers-bar {
  margin: 32px 0;
  padding: 24px;
  background: transparent;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.bookmakers-overlay {
  position: relative;
  z-index: 2;
}

.bookmakers-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 20px;
  text-align: center;
}

.bookmakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.bookmaker-card {
  position: relative;
  background: rgba(22, 27, 34, 0.9);
  border: 1px solid rgba(48, 54, 61, 0.8);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  overflow: hidden;
  min-height: 200px;
}

.bookmaker-card:hover {
  border-color: #58a6ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 166, 255, 0.15);
}

.bookmaker-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  z-index: 1;
}

.bookmaker-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bookmaker-bonus {
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: #f0f6fc;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: auto;
}

/* Supported Regions Section */
.supported-regions {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(48, 54, 61, 0.6);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.supported-regions .section-title {
  color: #58a6ff;
  margin-bottom: 8px;
}

.supported-regions .section-subtitle {
  color: #8b949e;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.regions-container {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.region-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(48, 54, 61, 0.4);
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.region-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.region-content {
  position: relative;
  z-index: 2;
}

.region-card h3 {
  color: #58a6ff;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.region-card p {
  color: #c9d1d9;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: max-height 0.4s ease;
}

.region-card:hover p {
  max-height: 500px;
}

/* Section Separator */
.section-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 48px 0;
}

.section-separator::before,
.section-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(88, 166, 255, 0.3);
}

.section-separator::before {
  margin-right: .25em;
}

.section-separator::after {
  margin-left: .25em;
}

.separator-text {
  font-size: 14px;
  color: #8b949e;
  padding: 0 1em;
}

/* About Section */
.about-section {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(48, 54, 61, 0.6);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.about-section p {
  color: #8b949e;
  line-height: 1.6;
  margin: 0;
}

/* Download Button & Modal */
.download-btn {
  background: #238636;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.download-btn:hover {
  background: #2ea043;
}

.download-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.download-modal-content {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 24px;
  max-width: 600px;
  margin: 10% auto;
  position: relative;
  max-height: 70vh;
  overflow-y: auto;
}

.close-download-modal {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 24px;
  color: #8b949e;
  cursor: pointer;
}
.close-download-modal:hover {
  color: #c9d1d9;
}

.download-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.download-link {
  background: rgba(33, 38, 45, 0.8);
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 12px 16px;
  color: #c9d1d9;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
  display: block;
}
.download-link:hover {
  background: rgba(48, 54, 61, 0.8);
  border-color: #58a6ff;
}

/* Footer */
.site-footer {
  background: rgba(13, 17, 23, 0.9);
  border-top: 1px solid #21262d;
  margin-top: 48px;
  padding: 32px 0 16px;
  backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-top {
  margin-bottom: 24px;
  text-align: center;
}

.footer-top h3 {
  color: #58a6ff;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.footer-middle {
  margin-bottom: 32px;
}

.footer-section h4 {
  color: #c9d1d9;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.footer-section li {
  margin: 0;
}

.footer-section a {
  color: #8b949e;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #58a6ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #21262d;
}

.footer-bottom p {
  color: #6e7681;
  font-size: 12px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .bookmakers-bar {
    min-height: 300px;
    padding: 16px;
  }
  
  .bookmakers-grid {
    grid-template-columns: 1fr;
  }
  
  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bookmakers-bar {
    min-height: 250px;
    padding: 12px;
  }
  
  .section-title {
    font-size: 18px;
  }
}
