/* ========================================
   BETTINGSAVE - FIXTURE STYLESHEET
   Modern Sports Betting Fixtures Design
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Anton:wght@400&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&family=Nunito:wght@300;600&display=swap");

/* ========================================
   CSS VARIABLES & THEME SYSTEM
   ======================================== */
:root {
  /* Dark Theme (Default) */
  --primary-bg: #0a1622;
  --secondary-bg: #101f30;
  --tertiary-bg: #1a2a3a;
  --card-bg: #14263d;
  --surface-bg: #0f2031;
  
  --text-primary: #ffffff;
  --text-secondary: #b8c5d1;
  --text-muted: #8a9ba8;
  --text-accent: #0056b3;
  
  --accent-red: #0056b3;
  --accent-green: #00d4aa;
  --accent-blue: #4d79ff;
  --accent-yellow: #ffb800;
  
  --border-color: #2a3a4a;
  --border-light: #3a4a5a;
  --shadow-color: rgba(0, 0, 0, 0.3);
  
  --gradient-primary: linear-gradient(135deg, #0a1622 0%, #101f30 50%, #1a2a3a 100%);
  --gradient-accent: linear-gradient(135deg, #ff4d4d 0%, #ff6b6b 100%);
  --gradient-card: linear-gradient(145deg, #14263d 0%, #1a2a3a 100%);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Light Theme */
.light-mode {
  --primary-bg: #ffffff;
  --secondary-bg: #f8fafc;
  --tertiary-bg: #f1f5f9;
  --card-bg: #ffffff;
  --surface-bg: #f8fafc;
  
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-accent: #dc2626;
  
  --border-color: #e2e8f0;
  --border-light: #cbd5e1;
  --shadow-color: rgba(0, 0, 0, 0.1);
  
  --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gradient-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: all var(--transition-normal);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */

/* Container */
.fixtures-list-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.kababa {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--spacing-xl);
}

.sub-body {
  min-width: 0;
}

.div2 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* ========================================
   HEADER
   ======================================== */
.body-juu {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-xl) 0;
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.body-juu h1 {
  font-size: 25px;
  font-weight: 700;
  margin: auto;
  max-width: 70%;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  font-family: "Comfortaa", sans-serif;
}

/* ========================================
   SEARCH & FILTERS
   ======================================== */
.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto var(--spacing-lg);
}

.imgsearch {
  position: absolute;
  left: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.125rem;
  z-index: 2;
}

.search {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) 3rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.search:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.1);
}

.search::placeholder {
  color: var(--text-muted);
}

/* Button Groups */
.rumb-1 {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  justify-content: center;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-10 {
  background: var(--card-bg);
  color: white;
  width: 45%;
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.171);
}

.btn-10:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 77, 255, 0.171);
}

.btn-11 {
  background: var(--card-bg);
  width: 45%;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-11:hover:not(:disabled) {
  border-color: var(--border-light);
}

.custom-btn.active {
  background: var(--accent-red);
  color: white;
  border-color: var(--accent-red);
}

/* Day Buttons */
.day-btns {
  display: flex;
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) auto;
  max-width: 90%;
  overflow-x: auto;
  padding: var(--spacing-md);
  justify-content: center;
}

.btn-days {
  padding: 12px 20px;
  width: 30%; /* Larger padding like old design */
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem; /* Larger font size */
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-width: 80px; /* Ensure consistent width */
}

.btn-days:hover {
  background: var(--tertiary-bg);
  border-color: var(--border-light);
}

.btn-days.active {
  background: var(--accent-red);
  color: white;
  border-color: var(--accent-red);
}

/* ========================================
   FIXTURE BUTTONS
   ======================================== */
.fixture-buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  justify-content: center;
}

.fixture-buttons .btn {
  width: 120px; /* Fixed width like old design */
  padding: 12px 16px; /* Increased height for balance */
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.btn-ask-ai {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-ask-ai:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
}

.btn-bets {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.btn-bets:hover {
  background: linear-gradient(135deg, #ee82f0 0%, #f3455a 100%);
  transform: translateY(-2px);
}

/* ========================================
   FIXTURES LIST
   ======================================== */
.fixtures-list {
  margin-bottom: var(--spacing-xl);
}

.no-fixture-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  font-style: italic;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: var(--spacing-xl);
  opacity: 0.8;
}

/* Fixture Items */
.fixture-item {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  list-style: none;
}

.the-big-info{
    display: flex;
}

.the-big-info table{
    flex: left;
}
.time-fixture{
    flex: right;
    align-items: center;
    place-items: center;
    display: flex;
    margin-right: 10px;
}

.fixture-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-color);
  border-color: var(--accent-red);
}

td .teamlogo {
  display: inline-block;
}

td:has(.teamlogo) {
  padding: 5px;
  width: 0;
}

.match-info {
  padding: 0;
}

.match-info table {
  width: 88%;
  padding-right: 8px;
  border-collapse: collapse;
}

.match-info tr{
    margin-left: 5px;
}

.match-info td {
  padding: 2px 8px;
  vertical-align: middle;
}

.teamlogo {
  width: 27px;
  height: 27px;
  background: var(--tertiary-bg);
  display: flex;
  margin-left: 13px;
  margin-right: 2px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.teamlogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   FIXTURE DETAILS
   ======================================== */
.fixture-details-container {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.fixture-details {
  margin-bottom: 5px;
}

.match-details {
  text-align: center;
}

.fixture-info {
  margin-bottom: 2px;
  margin-top: 2px;
}

.fixture-info p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.team-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.team-info.home {
  align-items: flex-start; /* Home team aligned left */
}

.team-info.away {
  align-items: flex-end; /* Away team aligned right */
}
  

.team-logo {
  width: 60px;
  height: 60px;
  background: var(--tertiary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue, .start-time {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.predict-btn {
  background: var(--accent-red);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: var(--spacing-lg);
}

.predict-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
}

/* ========================================
   SHARE BUTTONS
   ======================================== */
.share-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin: 3px 0;
  position: relative;
}

.share-buttons.collapsed .share-btn:not(:first-child) {
  display: none;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.share-btn:hover {
  background: var(--accent-red);
  color: white;
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

.share-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.share-btn.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
}

.share-btn.telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
}

.share-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.share-btn.sms:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.share-btn.copy:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

/* ========================================
   PREDICTION SECTION
   ======================================== */
.predict {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-top: 2px;
}

.msg-container {
  margin-top: var(--spacing-lg);
}

.load {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
}

.img-load {
  width: 50px;
  height: 50px;
}

.output-container {
  color: var(--text-primary);
  line-height: 1.6;
  margin-top: var(--spacing-lg);
}

.output-container p {
  margin-bottom: var(--spacing-md);
}

.boldz {
  font-weight: 700;
  color: #ff8c42;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidenav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  max-width: 70%;
  background: var(--gradient-primary);
  border-right: 1px solid var(--border-color);
  padding: var(--spacing-xl);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: 1001;
  overflow-y: auto;
}

.sidenav.open {
  transform: translateX(0);
}

.btn-group, .btn-group2 {
  margin-bottom: var(--spacing-xl);
}

.logo {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 0 auto var(--spacing-lg);
}

.for-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--card-bg);
  border-radius: var(--radius-md);
}

.mode-word {
  color: var(--text-primary);
  font-family: "Anek Gujarati", sans-serif;
  font-weight: 600;
  margin: 0;
}

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

.check {
  position: relative;
  display: block;
  width: 50px;
  height: 24px;
  background: var(--border-color);
  cursor: pointer;
  border-radius: 12px;
  transition: background var(--transition-normal);
  border: 2px solid var(--accent-red);
  box-shadow: 0 0 4px rgba(255, 77, 77, 0.3);
}

input[type="checkbox"]:checked ~ .check {
  background: var(--accent-red);
}

.check:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  background: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: transform var(--transition-normal);
}

input[type="checkbox"]:checked ~ .check:before {
  transform: translateX(26px);
}

.sub-btn, .term, .about, .policy {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  width: 100%;
  padding: var(--spacing-md);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: var(--spacing-sm);
  font-family: "Anek Gujarati", sans-serif;
  font-weight: 500;
}

.sub-btn:hover, .term:hover, .about:hover, .policy:hover {
  background: var(--tertiary-bg);
  border-color: var(--border-light);
  transform: translateX(4px);
}

.sid, .sid2 {
  width: 24px;
  height: 24px;
  font-size: 1.2rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.sub-btn:hover .sid, .term:hover .sid2, .about:hover .sid2, .policy:hover .sid2 {
  color: var(--accent-red);
}

/* ========================================
   MENU TOGGLE
   ======================================== */
.menu-toggle {
  position: fixed;
  top: var(--spacing-lg);
  left: var(--spacing-lg);
  z-index: 1002;
  background: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}


.tag-ico {
  color: var(--text-primary);
  font-size: 1.25rem;
}

/* ========================================
   OVERLAY
   ======================================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   NOTIFICATION SYSTEM
   ======================================== */
.notif-icon-container {
  position: fixed;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 1002;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.notif-icon-container:hover {
  background: var(--tertiary-bg);
  border-color: var(--accent-red);
}

.notif-icon {
  color: var(--text-primary);
  font-size: 1.25rem;
}

.notif-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  border: 2px solid var(--primary-bg);
}

.notif-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition-normal), width 0s linear var(--transition-normal);
  z-index: 999;
}

.notif-overlay.active {
  width: 100%;
  opacity: 1;
  transition: opacity var(--transition-normal);
}

.notif-panel {
  position: fixed;
  top: 0;
  right: -50%;
  width: 50vw;
  height: 100%;
  background: var(--gradient-primary);
  border-left: 1px solid var(--border-color);
  box-shadow: -2px 0 10px var(--shadow-color);
  transition: right var(--transition-normal);
  z-index: 1003;
  display: flex;
  flex-direction: column;
}

.notif-panel.active {
  right: 0;
}

.notif-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) var(--spacing-xl);
  background: var(--secondary-bg);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
  z-index: 10;
}

.notif-header h2 {
  font-size: 1.25rem;
  margin: 0;
}

.notif-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-red);
  transition: transform var(--transition-fast);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
}

.notif-close:hover {
  transform: scale(1.1);
  background: var(--accent-red);
  color: white;
  border-color: var(--accent-red);
}

.notif-list {
  list-style: none;
  margin: 0;
  font-family: "Anek Gujarati", sans-serif;
  padding: var(--spacing-lg);
  overflow-y: auto;
  flex: 1;
}

.notif-list li {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.notif-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.notif-head {
  padding: var(--spacing-md) var(--spacing-lg);
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  background: transparent;
  transition: background var(--transition-fast);
}

.notif-head:hover {
  background: var(--tertiary-bg);
}

.notif-message {
  display: none;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.notif-message.active {
  display: block;
}

.notif-list li a {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: var(--spacing-sm);
}

.notif-list li a:hover {
  background: #e63946;
  transform: translateY(-1px);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.cont-free, .cont-pro {
  margin-bottom: var(--spacing-xl);
}

.pred-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pred-ul .pred-li {
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.pred-ul .pred-li:last-child {
  border-bottom: none;
}

.pred-ul .pred-li:hover {
  background: var(--tertiary-bg);
  transform: translateX(4px);
}

.pred-ul .pred-li .teams {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.pred-ul .pred-li .the-home-team,
.pred-ul .pred-li .the-away-team {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.pred-ul .pred-li .the-home-team img,
.pred-ul .pred-li .the-away-team img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--tertiary-bg);
}

.pred-ul .pred-li .and-pred {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.pred-ul .pred-li .and-pred span:first-child {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: capitalize;
}

.pred-ul .pred-li .and-pred span:last-child {
  color: var(--accent-red);
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(255, 77, 77, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-red);
}

.pred-ul .pred-li .date-time {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-xs);
}

.pred-ul .pred-li .date-time span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--tertiary-bg);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

/* ========================================
   ARTICLES SIDEBAR
   ======================================== */
.latest-articles-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
  position: fixed;
  max-height: 95vh; /* Fixed height for PC */
  overflow: hidden; /* No scrolling */
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.article-item-vertical {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  flex-shrink: 0; /* Prevent shrinking */
  height: auto;
  min-height: 140px; /* Minimum height for consistency */
}

.article-item-vertical:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.article-item-vertical a {
  display: flex;
  flex-direction: column; /* Stack vertically like old design */
  padding: var(--spacing-md); /* Reduced padding to fit more content */
  text-decoration: none;
  color: inherit;
  gap: var(--spacing-sm);
  height: 100%;
}

.article-image-vertical {
  width: 240px; /* Full width like old design */
  height: 135px;
  aspect-ratio: 16/9; /* Reduced height to fit more articles */
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--tertiary-bg);
  margin-bottom: var(--spacing-sm);
}

.article-title-vertical {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.8rem; /* Slightly smaller to fit more content */
  line-height: 1.3;
  max-width: 240px;
  margin: 0;
  text-align: left; /* Left align like old design */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   LOADING STATES
   ======================================== */
.new-load {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl);
}

.new-load ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-load li {
  margin-bottom: var(--spacing-sm);
}

.bar {
  height: 20px;
  background: linear-gradient(90deg, var(--tertiary-bg) 25%, var(--border-color) 50%, var(--tertiary-bg) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--radius-md);
  width: 100%;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.dipload {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl);
}

.loding {
  text-align: center;
}

.wordlod {
  color: var(--text-primary);
  font-weight: 600;
  margin-top: var(--spacing-md);
}

/* ========================================
   SEO SECTION
   ======================================== */
.j-seo {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin: var(--spacing-xl) 0;
}

.j-seo h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.j-seo p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

/* ========================================
   FOOTER
   ======================================== */
.copyright {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  padding: var(--spacing-xl) 0;
  margin-top: var(--spacing-xl);
  text-align: center;
}

.disclaimer {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lime {
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.copyright p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.copyright a {
  color: var(--accent-red);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.copyright a:hover {
  color: #e63946;
}

.mwisho {
  height: var(--spacing-xl);
}

/* ========================================
   MESSAGE MODAL
   ======================================== */
.body-msg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  z-index: 2000;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px var(--shadow-color);
}

.x-msg {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--accent-red);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all var(--transition-fast);
}

.x-msg:hover {
  background: #e63946;
  transform: scale(1.1);
}

.actual-msg {
  color: var(--text-primary);
  line-height: 1.6;
}

.a-btn {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  margin-top: var(--spacing-md);
  transition: all var(--transition-fast);
}

.a-btn:hover {
  background: #e63946;
  transform: translateY(-1px);
}

/* ========================================
   MOBILE ADS
   ======================================== */
.adup-mobile-div {
  margin: var(--spacing-lg) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.adbelow-mobile-div {
    width: 75%;
    aspect-ratio: 8/1;
    position: fixed;          
    bottom: 0;                
    left: 50%;                
    transform: translateX(-50%); 
    z-index: 1000;
    display: block;
}

/* ========================================
   POPTOP
   ======================================== */
.poptop {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  background: var(--accent-red);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.poptop:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .kababa {
    grid-template-columns: 1fr;
  }
  
  .div2 {
    order: -1;
  }
}

@media (max-width: 768px) {
  .fixtures-list-container {
    padding: 0 var(--spacing-md);
  }
  
  .notif-icon-container {
    width: 20px;
    height: 20px;
  }
  .notif-dot{
    top: 1.5px;
    right: 1.5px;
  }
  .sidenav {
    width: 100%;
  }

  .time-fixture{
    margin-right: 17px;
  }
  
  .notif-panel {
    width: 100%;
    right: -100%;
  }
  
  .notif-panel.active {
    right: 0;
  }
  .body-juu h1 {
    font-size: 15px;
  }
  
  .adbelow-mobile-div {
    width: 100%;
    aspect-ratio: 5/1;
    position: fixed;          
    bottom: 0;                
    left: 50%;                
    transform: translateX(-50%); 
    z-index: 1000;
    display: block;
  }
  
  
  .share-buttons {
    justify-content: center;
  }
  
  .day-btns {
    justify-content: center;
  }
  
  
  /* Hide news section on mobile */
  .div2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .menu-toggle, .notif-icon-container {
    top: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
  }
  
  .notif-icon-container {
    left: auto;
  }
  
  .poptop {
    bottom: var(--spacing-md);
    right: var(--spacing-md);
  }
  
  .body-msg {
    width: 95%;
    padding: var(--spacing-lg);
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .sidenav,
  .menu-toggle,
  .notif-icon-container,
  .notif-panel,
  .overlay,
  .poptop,
  .body-msg {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .fixture-item, .article-item-vertical {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
}
