/* === FONT IMPORTS === */
@font-face {
  font-family: 'Cornero';
  src: url('fonts/Cornero.woff2') format('woff2'),
       url('fonts/Cornero.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue:wght@400&display=swap');

/* === ROOT VARIABLES - SPORTS THEME === */
:root {
  /* Sports Color Palette - from live site */
  --primary-orange: #ffd700;     /* Gold from live site */
  --primary-blue: #00E676;       /* Green from live site */
  --primary-green: #00cdbb;      /* Teal from live site */
  --accent-red: #F44336;         /* Action, urgency */
  --accent-gold: #ffd700;        /* Achievement, championship gold */
  
  /* Dark theme base */
  --dark-bg: #111;               /* Black from live site */
  --dark-surface: #222;          /* Dark gray from live site */
  --text-light: #ffffff;
  --text-muted: #ccc;
  --text-darker: #999;
  
  /* Layout */
  --header-height: 70px;
  --footer-height: 80px;
  --container-padding: 20px;
  
  /* Effects */
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.4);
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  --glow-orange: 0 0 15px rgba(255, 215, 0, 0.4);
  --glow-blue: 0 0 15px rgba(0, 230, 118, 0.4);
  --glow-green: 0 0 15px rgba(0, 205, 187, 0.4);
}

/* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', Arial, sans-serif;
  font-weight: 500;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* === HEADING STYLES === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  font-weight: normal;
  letter-spacing: 0.4px;
}

/* Sports-themed animated background */
body.sports::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 200, 83, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--dark-bg) 0%, #1a2332 100%);
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-2%) translateY(-1%); }
  50% { transform: translateX(1%) translateY(-2%); }
  75% { transform: translateX(-1%) translateY(1%); }
}

/* === CALENDAR CONTAINER (Live Site Structure) === */
.calendar-container {
  position: relative;
  width: 100%;
  background-color: var(--dark-bg);
  display: flex;
  flex: 1;
  flex-direction: column;
}

.calendar-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  flex: 1;
}

/* === HEADER STYLES === */
.one-line-header {
  background: var(--dark-surface);
  padding: 15px 20px;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid var(--header-border, #1e242b);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  height: 50px;
  width: auto;
}

.title-text {
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  letter-spacing: 0.4px;
}

.tt-next {
  color: var(--primary-orange);
}

.tt-label {
  color: var(--text-light);
}

.title-hyphen {
  color: var(--text-muted);
  margin: 0 4px;
}

.header-month {
  background: linear-gradient(180deg, #00cdbb 0%, #009f8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  font-weight: 400;
}

/* === KEBAB MENU === */
.kebab-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kebab-btn i {
  font-size: 18px;
  color: var(--primary-blue);
}

.kebab-btn:hover {
  box-shadow: var(--glow-blue);
  transform: translateY(-50%) scale(1.05);
  background: rgba(0, 230, 118, 0.10);
  filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.75));
}

.kebab-panel {
  position: fixed;
  top: 80px;
  left: 20px;
  background: rgba(34, 34, 34, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 230, 118, 0.2);
  z-index: 999;
  min-width: 180px;
}

.kebab-panel ul {
  list-style: none;
}

.kebab-panel li {
  margin: 0;
}

.kebab-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  letter-spacing: 0.3px;
}

.kebab-panel a:hover,
.kebab-panel a.current-site {
  background: rgba(0, 230, 118, 0.08);
  color: var(--primary-blue);
}

.kebab-panel .divider {
  height: 1px;
  background: rgba(0, 230, 118, 0.2);
  margin: 4px 0;
}

/* === MAIN CONTENT === */
.coming-soon-content {
  flex: 1;
  padding: 40px var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-section {
  text-align: center;
  padding: 60px 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.main-title {
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  font-weight: normal;
  margin-bottom: 30px;
  text-shadow: var(--text-shadow);
  line-height: 1.1;
  letter-spacing: 0.4px;
}

.title-line-1 {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--primary-orange);
  text-shadow: var(--glow-orange);
}

.title-line-2 {
  display: block;
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--primary-blue);
  text-shadow: var(--glow-blue);
  margin-top: -10px;
}

.launch-info {
  margin-bottom: 50px;
}

.launch-title {
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--primary-green);
  margin-bottom: 15px;
  text-shadow: var(--glow-green);
  letter-spacing: 0.4px;
}

.launch-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === COUNTDOWN === */
.countdown-container {
  margin-bottom: 60px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  background: rgba(34, 34, 34, 0.8);
  border-radius: 16px;
  padding: 20px;
  min-width: 100px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.countdown-item:nth-child(1) {
  border-color: var(--primary-orange);
  box-shadow: var(--glow-orange);
}

.countdown-item:nth-child(2) {
  border-color: var(--primary-blue);
  box-shadow: var(--glow-blue);
}

.countdown-item:nth-child(3) {
  border-color: var(--primary-green);
  box-shadow: var(--glow-green);
}

.countdown-number {
  display: block;
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: 0.4px;
}

.countdown-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === FEATURES PREVIEW === */
.features-preview {
  margin-bottom: 60px;
}

.features-preview h3 {
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: var(--text-light);
  margin-bottom: 30px;
  letter-spacing: 0.4px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(34, 34, 34, 0.6);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: var(--glow-orange);
}

.feature-item:nth-child(2):hover {
  border-color: var(--primary-blue);
  box-shadow: var(--glow-blue);
}

.feature-item:nth-child(3):hover {
  border-color: var(--primary-green);
  box-shadow: var(--glow-green);
}

.feature-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-orange);
}

.feature-item:nth-child(2) i {
  color: var(--primary-blue);
}

.feature-item:nth-child(3) i {
  color: var(--primary-green);
}

.feature-item h4 {
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: var(--text-light);
  letter-spacing: 0.4px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-item a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-item a:hover {
  color: var(--primary-green);
  text-shadow: var(--glow-green);
}

/* === NOTIFICATION FORM === */
.notify-section {
  background: rgba(34, 34, 34, 0.8);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--glow-blue);
  backdrop-filter: blur(10px);
}

.notify-section h3 {
  font-family: 'Cornero', 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: var(--primary-blue);
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.notify-section p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.notify-form {
  display: flex;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.notify-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(0, 230, 118, 0.3);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  font-size: 1rem;
  min-width: 200px;
}

.notify-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: var(--glow-blue);
}

.notify-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
}

.notify-message {
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
}

.notify-message.success {
  color: var(--primary-green);
}

.notify-message.error {
  color: var(--accent-red);
}

/* === FLOATING SPORTS ICONS === */
.sports-icons-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  animation: float 15s infinite linear;
  opacity: 0.1;
  font-size: 2rem;
  color: var(--primary-orange);
  animation-delay: var(--delay);
}

.floating-icon:nth-child(2n) {
  color: var(--primary-blue);
}

.floating-icon:nth-child(3n) {
  color: var(--primary-green);
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    left: -10%;
  }
  50% {
    left: 50%;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    left: 110%;
  }
}

/* === FOOTER === */
footer {
  background: var(--dark-surface);
  padding: 20px;
  border-top: 1px solid var(--header-border, #1e242b);
  margin-top: auto;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-contact {
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: var(--text-light);
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.social-icons-inline {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-icon {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-icon:hover {
  color: var(--primary-blue);
  text-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.icon-with-badge {
  position: relative;
}

.badge-plus {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-blue);
  color: var(--dark-bg);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.site-link {
  opacity: 0.7;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
}

.site-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.site-link.current {
  opacity: 1;
  background: rgba(0, 230, 118, 0.2);
}

.site-link img {
  height: 32px;
  width: auto;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: column;
    gap: 15px;
  }
  
  .title-text {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 4px;
  }
  
  .kebab-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .kebab-panel {
    position: absolute;
    top: 100%;
    left: 15px;
    min-width: 200px;
  }
  
  .countdown {
    gap: 15px;
  }
  
  .countdown-item {
    min-width: 80px;
    padding: 15px 10px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .notify-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .notify-form input {
    width: 100%;
  }
  
  .footer-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .coming-soon-content {
    padding: 20px 15px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .title-text {
    font-size: 1.1rem;
  }
  
  .site-logo {
    height: 40px;
  }
  
  .kebab-btn {
    width: 36px;
    height: 36px;
    left: 15px;
  }
  
  .kebab-panel {
    left: 15px;
    min-width: 160px;
  }
  
  .notify-section {
    padding: 25px 15px;
  }
}

/* === MOBILE LANDSCAPE OPTIMIZATIONS === */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    padding: 20px 0;
  }
  
  .coming-soon-content {
    padding: 20px var(--container-padding);
  }
  
  .countdown-container {
    margin-bottom: 30px;
  }
  
  .features-preview {
    margin-bottom: 30px;
  }
}

/* === ACCESSIBILITY === */
/* Share toast notification */
#share-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  z-index: 10000;
  box-shadow: var(--glow-blue);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* === Footer preview bubble === */
#footer-preview-bubble {
  position: fixed;
  width: 280px;
  height: 158px; /* ~16:9 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 3500;
}

#footer-preview-bubble.is-visible {
  opacity: 1;
  transform: translate(-50%, -16px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  .floating-icon,
  body.sports::before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.kebab-btn:focus,
.notify-form input:focus,
.notify-form button:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
  .kebab-btn,
  .kebab-panel,
  .sports-icons-animation,
  footer {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .coming-soon-content {
    padding: 20px;
  }
}
