/* ===== GLOBAL STYLES ===== */
:root {
  /* Modern color palette */
  --primary-color: #ff3b30; /* Brighter, more vibrant red */
  --primary-dark: #d32f2f;
  --primary-light: #ff6b6b;
  --secondary-color: #121212; /* Richer black */
  --secondary-light: #1e1e1e;
  --secondary-dark: #000000;
  --accent-color: #ff453a;
  --accent-dark: #cc0000;
  
  /* Text colors */
  --text-color: #ffffff;
  --text-muted: #b0b0b0;
  --text-light: #f8f8f8;
  --gray-light: #f5f5f5;
  --gray-medium: #cccccc;
  --gray-dark: #333333;
  
  /* Shadow variables */
  --shadow-color: rgba(255, 59, 48, 0.3);
  --shadow-dark: rgba(0, 0, 0, 0.6);
  
  /* Modern transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-medium: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); /* Improved easing */
  --transition-slow: 0.5s cubic-bezier(0.19, 1, 0.22, 1); /* Expo easing */
  
  /* Border radius */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;
  --border-radius-pill: 9999px;
  
  /* Blur effects */
  --blur-light: blur(8px);
  --blur-medium: blur(16px);
  --blur-heavy: blur(24px);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a);
  
  /* Fonts */
  --font-primary: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* RGB values for alpha operations */
  --primary-color-rgb: 255, 59, 48;
  --secondary-color-rgb: 18, 18, 18;
  --secondary-light-rgb: 30, 30, 30;
  
  /* Enhanced shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 45px rgba(0, 0, 0, 0.25), 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 8px 30px rgba(255, 59, 48, 0.3);
  
  /* Smooth transitions */
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --transition-smooth: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Import fonts first to avoid FOIT (Flash of Invisible Text) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--secondary-dark);
}

/* Modern scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--border-radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

body {
  font-family: var(--font-primary);
  background-color: #0a0a0a;
  background-image: 
    radial-gradient(circle at top right, rgba(255, 59, 48, 0.08) 0%, transparent 70%), 
    radial-gradient(circle at bottom left, rgba(255, 59, 48, 0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff3b30' fill-opacity='0.03'%3E%3Cpath d='M36 34h4v1h-4v-1zm0-2h1v4h-1v-4zm-5-7h4v1h-4v-1zm0-2h1v4h-1v-4zm-15 7h4v1h-4v-1zm0-2h1v4h-1v-4zm-5 7h4v1h-4v-1zm0-2h1v4h-1v-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background-color 0.5s ease;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color var(--transition-fast), transform var(--transition-fast);
  position: relative;
}

a:hover {
  color: var(--primary-color);
}

a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

img {
    max-width: 100%;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
}

.container-fluid {
  width: 100%;
  padding-right: clamp(15px, 3vw, 30px);
  padding-left: clamp(15px, 3vw, 30px);
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12, 
.col-sm, .col-md, .col-lg, .col-xl {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-medium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff5b52, #d32f2f);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.4);
}

.btn-outline-light {
  color: white;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  overflow: hidden;
  backdrop-filter: var(--blur-light);
}

.btn-outline-light::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  transition: all var(--transition-medium);
  z-index: -1;
}

.btn-outline-light:hover {
  color: var(--secondary-color);
  border-color: white;
}

.btn-outline-light:hover::after {
  width: 100%;
}

.btn-secondary {
  background: var(--gradient-secondary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--border-radius-pill);
}

.btn-dark {
  background: var(--gradient-dark);
  border-color: transparent;
  color: white;
}

.btn-dark:hover {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  transform: translateY(-3px) scale(1.02);
}

/* Button with icon */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon i {
  transition: transform var(--transition-medium);
}

.btn-icon:hover i {
  transform: translateX(4px);
}

/* ===== HEADER STYLES ===== */
.headBar {
    position: sticky;
    top: 0px;
    background-color: rgb(17 0 0 / 69%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: var(--blur-medium) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    z-index: 100;
    border-bottom: 1px solid rgb(255 14 0);
    padding: 12px 0;
    transition: all var(--transition-medium);
}

.headBar.scrolled {
  padding: 8px 0;
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
}

.headBar .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.headercontentcan{
	width:unset!important;
}

.headBar img.ng-tns-c8-0 {
  max-width: 200px;
  height: auto;
  transition: transform var(--transition-medium), filter var(--transition-medium);
  filter: drop-shadow(0 0 10px rgba(var(--primary-color-rgb), 0.5));
}

.headBar img.ng-tns-c8-0:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(var(--primary-color-rgb), 0.7));
}



.headerSocialIcon {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.socialIconText {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 0.9rem;
  margin-right: 15px;
  padding: 10px 18px;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-bounce);
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  box-shadow: var(--shadow-sm);
}

.socialIconText:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.socialIconText i {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: transform var(--transition-bounce);
}

.socialIconText:hover i {
  transform: scale(1.2) rotate(-10deg);
}

.headerItem {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.loginCol {
  display: flex;
  align-items: center;
  gap: 15px;
}

.loginBtn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: white;
  padding: 10px 28px;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-medium);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.loginBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
  z-index: -1;
}

.loginBtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: all var(--transition-medium);
  z-index: -2;
}

.loginBtn:hover {
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.3);
  border-color: transparent;
}

.loginBtn:hover::before {
  left: 100%;
}

.loginBtn:hover::after {
  width: 100%;
}

.langSelect {
  margin: 0 15px;
  position: relative;
}

.langSelect select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  color: white;
  padding: 10px 35px 10px 18px;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: all var(--transition-medium);
  font-size: 0.9rem;
  font-weight: 500;
}

.langSelect select:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.2);
}

.langSelect::after {
  content: 'â–¼';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--primary-color);
  pointer-events: none;
  font-size: 0.7rem;
  transition: transform var(--transition-medium);
}

.langSelect:hover::after {
  transform: translateY(-50%) rotate(180deg);
}

.currentTime {
  background: linear-gradient(45deg, #000000, #770000);
  color: white;
  padding: 10px 18px;
  border-radius: var(--border-radius-pill);
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
  animation: pulse 2s infinite;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.currentTime i {
  margin-right: 10px;
  animation: clockRotate 10s linear infinite;
}

@keyframes clockRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

/* ===== MAIN MENU STYLES ===== */
.mainMenu {
  position: sticky;
  top: 60px;
  background: linear-gradient(
    135deg, 
    rgba(10, 10, 10, 0.98) 0%, 
    rgba(20, 0, 0, 0.97) 100%
  ) !important;
  backdrop-filter: blur(12px) saturate(200%) contrast(150%);
  -webkit-backdrop-filter: blur(12px) saturate(200%) contrast(150%);
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.4);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 -8px 20px rgba(255, 0, 0, 0.1);
  z-index: 999;
  overflow-x: auto;
  padding: 0 30px;
  transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.mainMenu::-webkit-scrollbar {
  height: 6px;
  background: rgba(15, 15, 15, 0.8);
  border-radius: var(--border-radius-pill);
}

.mainMenu::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    rgba(255,0,0,0.6) 0%,
    rgba(255,0,0,0.4) 50%,
    rgba(255,0,0,0.6) 100%
  );
  border-radius: var(--border-radius-pill);
  box-shadow: inset 0 0 6px rgba(255,255,255,0.1);
}

.mainMenu ul {
  display: flex;
  min-width: max-content;
  gap: 12px;
  padding: 15px 0;
  margin: 0;
  list-style: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.mainMenu li {
  flex-shrink: 0;
  position: relative;
  perspective: 1000px;
}

.mainMenu li a {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  color: #fff !important;
  font-family: var(--font-secondary);
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.8) 0%,
    rgba(50, 0, 0, 0.6) 100%
  );
  margin: 0 3px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, 0.3);
  transform-style: preserve-3d;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  box-shadow: 
    0 4px 15px rgba(0,0,0,0.4),
    inset 0 0 12px rgba(255,0,0,0.1);
}

/* Neon Glow Effect */
.mainMenu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 0, 0.15),
    rgba(255, 0, 0, 0.3),
    rgba(255, 0, 0, 0.15),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

/* Hover Animation Layers */
.mainMenu li a:hover::before {
  left: 100%;
}

.mainMenu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent 10%,
    rgba(255, 0, 0, 0.8) 50%,
    transparent 90%
  );
  filter: blur(2px);
  opacity: 0;
  transition: 
    opacity 0.3s ease,
    bottom 0.3s ease;
}

.mainMenu li a:hover {
  color: #ff4d4d !important;
  transform: 
    translateY(-4px)
    rotateX(10deg)
    scale(1.05);
  background: linear-gradient(
    145deg,
    rgba(40, 0, 0, 0.7) 0%,
    rgba(70, 0, 0, 0.5) 100%
  );
  box-shadow: 
    0 8px 30px rgba(255, 0, 0, 0.3),
    inset 0 0 20px rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}

.mainMenu li a:hover::after {
  opacity: 1;
  bottom: -4px;
}

/* Active State Cyber Effect */
.mainMenu li a.active {
  color: #fff !important;
  background: linear-gradient(
    145deg,
    rgba(255, 0, 0, 0.3) 0%,
    rgba(150, 0, 0, 0.5) 100%
  );
  box-shadow: 
    0 0 25px rgba(255, 0, 0, 0.4),
    inset 0 0 15px rgba(255, 0, 0, 0.3);
  animation: cyberPulse 1.5s infinite;
}

@keyframes cyberPulse {
  0%, 100% { filter: brightness(1) saturate(1); }
  50% { filter: brightness(1.2) saturate(1.5); }
}

.mainMenu li a.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border: 2px solid rgba(255, 0, 0, 0.6);
  border-radius: var(--border-radius-pill);
  animation: cyberBorder 2s infinite;
}

@keyframes cyberBorder {
  0% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  50% { clip-path: polygon(5% 5%, 95% 5%, 95% 95%, 5% 95%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

/* Icon Animations */
.mainMenu li a i {
  margin-right: 15px;
  font-size: 1.3em;
  transition: 
    transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.mainMenu li a:hover i {
  transform: 
    rotate(-15deg) 
    scale(1.3)
    translateX(3px);
  filter: 
    drop-shadow(0 0 8px rgba(255,0,0,0.5))
    brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mainMenu {
    top: 50px;
    padding: 0 0px;
    clip-path: none;
  }
  
  .mainMenu li a {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  
  .mainMenu li a i {
    margin-right: 8px;
    font-size: 1.1em;
  }
}

/* Submenu styles - Fixed visibility issue */
.mainMenu li ul.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: var(--blur-medium) saturate(180%);
  -webkit-backdrop-filter: var(--blur-medium) saturate(180%);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(var(--primary-color-rgb), 0.2);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-medium);
  z-index: 100;
  display: block;
  flex-direction: column;
}

.mainMenu li:hover ul.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.mainMenu li ul.submenu li {
  width: 100%;
  margin: 0;
}

.mainMenu li ul.submenu li a {
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  margin: 3px 0;
  display: block;
  font-size: 0.95rem;
  background: transparent;
  border-left: 2px solid transparent;
}

.mainMenu li ul.submenu li a:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
  transform: translateX(8px);
  border-left: 2px solid var(--primary-color);
}

.mainMenu li ul.submenu li a::after {
  display: none;
}

.badge-success {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ===== CAROUSEL/SLIDER STYLES ===== */
.carousel {
  position: relative;
  margin: 50px 0;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  perspective: 1000px;
  height: 450px; /* Fixed height for consistency */
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-xl);
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
  transform: scale(0.95) translateX(30px);
  will-change: transform, opacity;
}

.carousel-item.active {
  position: relative;
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 1;
}

.carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-xl);
  transition: transform 1.2s ease-out;
  transform-origin: center;
}

.carousel:hover .carousel-item.active img {
  transform: scale(1.03);
}

/* Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev {
  left: 30px;
  transform: translate(-30px, -50%);
}

.carousel-control-next {
  right: 30px;
  transform: translate(30px, -50%);
}

.carousel:hover .carousel-control-prev {
  opacity: 1;
  transform: translate(0, -50%);
}

.carousel:hover .carousel-control-next {
  opacity: 1;
  transform: translate(0, -50%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(var(--primary-color-rgb), 0.7);
  transform: translate(0, -50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.8rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-medium);
}

.carousel-control-prev:hover i {
  transform: translateX(-3px);
}

.carousel-control-next:hover i {
  transform: translateX(3px);
}

/* Indicator Dots */
.carousel-indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.carousel-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: scale(0);
  transition: transform var(--transition-medium);
  border-radius: 50%;
}

.carousel-indicator.active::after {
  transform: scale(1);
}

.carousel-indicator:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Banner Number */
.bannerNo {
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 15px;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel:hover .bannerNo {
  background: rgba(var(--primary-color-rgb), 0.7);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.3);
}

/* Carousel Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.05) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.carousel-item.next,
.carousel-item.prev {
  display: block;
  opacity: 0;
  z-index: 0;
}

.carousel-item.next {
  transform: translateX(5%) scale(0.95);
}

.carousel-item.prev {
  transform: translateX(-5%) scale(0.95);
}

/* Enhanced Slider Animation */
@keyframes sliderFadeIn {
  from {
    opacity: 0;
    transform: scale(1.05) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: white;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
}

.carousel-item.active .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}

.carousel-caption h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}

.carousel-caption h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

.carousel-caption p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 80%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.carousel-caption .btn {
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-smooth) 0.2s;
}

.carousel-item.active .carousel-caption .btn {
  transform: translateY(0);
  opacity: 1;
}

/* ===== DISCLAIMER BANNER ===== */
.disclamer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 15px;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.6s var(--transition-bounce);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.disclamer strong {
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.close-button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-medium);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  color: white;
}

.close-button:hover {
  color: var(--secondary-color);
  background-color: white;
  transform: translateY(-50%) rotate(90deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: var(--blur-heavy) saturate(180%);
  -webkit-backdrop-filter: var(--blur-heavy) saturate(180%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeIn 0.4s ease-out;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  max-width: 550px;
  perspective: 1200px;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

.loginModal {
  max-width: 850px;
}

.smallModal {
  max-width: 450px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgba(15, 15, 15, 0.95);
  backdrop-filter: var(--blur-medium) saturate(180%);
  -webkit-backdrop-filter: var(--blur-medium) saturate(180%);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(var(--primary-color-rgb), 0.3);
  outline: 0;
  overflow: hidden;
  transform: scale(0.9) rotateX(10deg);
  transform-origin: center top;
  animation: scaleIn 0.5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes scaleIn {
  to {
    transform: scale(1) rotateX(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.2);
  background: linear-gradient(to right, #000000, #1a0000);
  position: relative;
  overflow: hidden;
}

.modal-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(var(--primary-color-rgb), 0.1), transparent 70%);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(50%);
  }
}

.modal-header .lo-logo {
  height: 45px;
  filter: drop-shadow(0 0 8px rgba(var(--primary-color-rgb), 0.5));
  position: relative;
  z-index: 1;
}

.modal-title {
  margin: 0;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 2rem;
  max-height: 57vh;
  overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-pill);
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--border-radius-pill);
}

.modal-footer {
  display: contents;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid rgba(var(--primary-color-rgb), 0.2);
  background-color: rgba(0, 0, 0, 0.2);
  gap: 15px;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  text-shadow: 0 1px 0 #000;
  opacity: 0.7;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close:hover {
  opacity: 1;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* ===== FOOTER STYLES ===== */
.footerRow {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: var(--blur-medium) saturate(180%);
  -webkit-backdrop-filter: var(--blur-medium) saturate(180%);
  padding: 80px 0 40px;
  border-top: 3px solid var(--primary-color);
  position: relative;
  margin-top: 70px;
}

.footerRow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZjNiMzAiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0aDR2MWgtNHYtMXptMC0yaDF2NGgtMXYtNHptLTUtN2g0djFoLTR2LTF6bTAtMmgxdjRoLTF2LTR6bS0xNSA3aDR2MWgtNHYtMXptMC0yaDF2NGgtMXYtNHptLTUgN2g0djFoLTR2LTF6bTAtMmgxdjRoLTF2LTR6Ii8+PC9nPjwvZz48L3N2Zz4=');
  opacity: 0.1;
}

.footerRow::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footerRow h6 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}

.footerRow h6::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.footerRow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerRow li {
  margin-bottom: 15px;
}

.footLink {
  color: #ccc;
  transition: all var(--transition-medium);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footLink::before {
  content: 'â€º';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all var(--transition-medium);
  color: var(--primary-color);
}

.footLink:hover {
  color: var(--primary-color);
  padding-left: 20px;
  border-bottom-color: rgba(var(--primary-color-rgb), 0.2);
}

.footLink:hover::before {
  opacity: 1;
  left: 5px;
}

.copytext {
  margin: 50px 0;
  text-align: center;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 20px;
}

.payment-center {
  margin: 50px 0;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.payText {
  color: white;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.payText::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.paymentLogos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftpayLogo {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.ftpayLogo:hover {
  transform: translateY(-10px);
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.2);
}

.ftpayLogo img {
  height: 40px;
  width: auto;
  transition: transform var(--transition-medium);
  filter: grayscale(30%);
}

.ftpayLogo:hover img {
  transform: scale(1.15);
  filter: grayscale(0%);
}

.copyRight {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.95rem;
  text-align: center;
}

.reslogoRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.resLogo {
  transition: all var(--transition-medium);
}

.resLogo img {
  height: 45px;
  width: auto;
  opacity: 0.7;
  transition: all var(--transition-medium);
  filter: grayscale(70%);
}

.resLogo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.15);
}

/* ===== MOBILE FOOTER NAVIGATION ===== */
.mobFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: var(--blur-medium) saturate(180%);
  -webkit-backdrop-filter: var(--blur-medium) saturate(180%);
  display: none;
  justify-content: space-around;
  padding: 0px 0;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
  z-index: 99;
  border-top: 2px solid var(--primary-color);
}

.mobFooter a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 0.85rem;
  transition: all var(--transition-medium);
  padding: 10px 0;
  position: relative;
}

.mobFooter a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
  border-radius: 3px;
}

.mobFooter a:hover {
  color: var(--primary-color);
}

.mobFooter a:hover::before {
  width: 70%;
}

.mobFooter i {
  font-size: 1.5rem;
  transition: transform var(--transition-bounce);
}

.mobFooter a:hover i {
  transform: translateY(-5px);
}

.mobLike {
    color: #ffffff;
    padding: 0px 0px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
}

/* Sidebar for mobile */
.sidebarMain {
    position: fixed;
    display: block;
    z-index: 100;
    top: -93vh;
    left: 0px;
    height: 100vh!important;
    background-color: rgb(18 7 7 / 86%);
    backdrop-filter: var(--blur-heavy) saturate(180%);
    -webkit-backdrop-filter: var(--blur-heavy) saturate(180%);
    z-index: 1000;
    overflow-y: auto;
    transition: right var(--transition-smooth);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--primary-color);
}




.sidebarHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.2);
  background: linear-gradient(to right, #000000, #1a0000);
}

.sidebarLogo {
  height: 45px;
  filter: drop-shadow(0 0 8px rgba(var(--primary-color-rgb), 0.5));
}

.sidebarClose {
  color: white;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.sidebarClose:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
  background-color: rgba(255, 255, 255, 0.1);
}

.sideScroll {
  padding: 25px;
}

.sideTitle {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.sideTitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.sideSports ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sideSports li {
  margin-bottom: 15px;
}

.sideSports a {
  display: flex;
  align-items: center;
  color: white;
  padding: 15px 18px;
  border-radius: var(--border-radius-lg);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.sideSports a:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  transform: translateX(8px);
  border-color: rgba(var(--primary-color-rgb), 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.spCol {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sportN {
  font-weight: 600;
}

.mobileHeaderIcon {
  width: 1.5rem;
  height: auto;
  transition: transform var(--transition-bounce);
}

.sideSports a:hover .mobileHeaderIcon {
  transform: scale(1.2) rotate(-10deg);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .container-fluid {
    max-width: 100%;
  }
  
  .carousel {
    height: 400px;
  }
  
  .carousel-caption h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .headerSocialIcon {
    gap: 10px;
  }
  
  .socialIconText {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  
  .carousel {
    height: 350px;
  }
  
  .carousel-caption h3 {
    font-size: 1.6rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .headBar {
    padding: 10px 0;
  }
  
  .headBar img.ng-tns-c8-0 {
    max-width: 160px;
  }
  
  .headerSocialIcon {
    display: none;
  }
  
  .mainMenu {
    top: 58px;
    padding: 0 15px;
    -webkit-overflow-scrolling: touch;
  }
  
  .mainMenu li a {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .mainMenu li a i {
    margin-right: 10px;
  }
  
  .carousel {
    height: 300px;
    margin: 35px 0;
  }
  
  .carousel-caption {
    padding: 25px;
  }
  
  .carousel-caption h3 {
    font-size: 1.4rem;
  }
  
  .carousel-caption p {
    font-size: 0.95rem;
    max-width: 100%;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  
  .carousel-control-prev i,
  .carousel-control-next i {
    font-size: 1.5rem;
  }
  
  .mobFooter {
    display: flex;
  }
  
  body {
    padding-bottom: 70px; /* Space for mobile footer */
  }
  
  .modal-dialog {
    max-width: 90%;
  }
  
  .modal-content {
    border-radius: var(--border-radius-lg);
  }
  
  .modal-header {
    padding: 1.25rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-footer {
    padding: 1.25rem;
  }
  
  .footerRow {
    padding: 60px 0 30px;
  }
  
  .payment-center {
    padding: 30px;
  }
  
  .ftpayLogo {
    padding: 15px;
  }
  
  .ftpayLogo img {
    height: 35px;
  }
}

@media (max-width: 576px) {
  .headBar .row {
    justify-content: space-between;
  }
  
  .langSelect {
    margin: 0 8px;
  }
  
  .langSelect select {
    padding: 8px 30px 8px 15px;
    font-size: 0.85rem;
  }
  
  .loginBtn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .currentTime {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  
  .carousel {
    height: 250px;
    margin: 25px 0;
    border-radius: var(--border-radius-lg);
	  
  }
  
  .carousel-caption {
    padding: 20px;
  }
  
  .carousel-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .carousel-caption p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .modal-dialog {
    margin: 1rem;
    width: calc(100% - 2rem);
  }
  
  .modal-content {
    border-radius: var(--border-radius-md);
  }
  
  .modal-header {
    padding: 1rem;
  }
  
  .modal-body {
    padding: 1.25rem;
  }
  
    .modal-footer {
        padding: 0rem;
        flex-direction: row;
        gap: 1px;
    }
  
  .modal-footer .btn {
    width: 100%;
  }
  
  .keno-warning-title-blx {
    font-size: 1.8rem;
  }
  
  .keno-warning-text-blx {
    font-size: 0.95rem;
  }
  
  .footerRow h6 {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
  
  .footLink {
    padding: 8px 0;
  }
  
  .payText {
    font-size: 1.1rem;
  }
  
  .paymentLogos {
    gap: 15px;
  }
  
  .ftpayLogo {
    padding: 12px;
  }
  
  .ftpayLogo img {
    height: 30px;
  }
  
  .copytext {
    font-size: 0.85rem;
  }
  
  .resLogo img {
    height: 35px;
  }
}

@media (max-width: 400px) {
  .carousel {
    height: 200px;
  }
  
  .carousel-caption h3 {
    font-size: 1.1rem;
  }
  
  .carousel-caption p {
    font-size: 0.8rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev i,
  .carousel-control-next i {
    font-size: 1.3rem;
  }
  
  .bannerNo {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .mobFooter a {
    font-size: 0.75rem;
  }
  
  .mobFooter i {
    font-size: 1.3rem;
  }
  
  .sidebarMain {
    width: 280px;
  }
  
  .sidebarHeader {
    padding: 20px;
  }
  
  .sidebarLogo {
    height: 35px;
  }
  
  .sideScroll {
    padding: 20px;
  }
  
  .sideTitle {
    font-size: 1.1rem;
  }
  
  .sideSports a {
    padding: 12px 15px;
  }
  
  .mobileHeaderIcon {
    width: 24px;
    height: 24px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color) !important;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  
  .d-md-none {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  
  .d-lg-none {
    display: none !important;
  }
}

/* ===== PROMO ROW STYLES ===== */
.toppromoRow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 4vw, 3rem) 0;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .toppromoRow {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-inline: auto;
  }
}

@media (min-width: 1024px) {
  .toppromoRow {
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    max-width: 1440px;
    padding: 0 clamp(1rem, 3vw, 2rem);
  }
}

.promoBox {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--gradient-dark);
  border: 1px solid rgba(var(--primary-color-rgb), 0.15);
  position: relative;
  aspect-ratio: 3/4;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

.promoBox:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.2);
  border-color: var(--primary-color);
}

@media (max-width: 480px) {
  .toppromoRow {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .promoBox {
    aspect-ratio: 1/1.3;
    border-radius: var(--border-radius-md);
  }
}

@media (max-width: 360px) {
  .toppromoRow {
    grid-template-columns: 1fr;
  }
}

/* ===== GAME CAROUSEL STYLES ===== */
.game-carousel {
  margin: 60px 0;
}

.secTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.2);
  position: relative;
}

.secTitle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 120px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-sm);
}

.secTitle h5 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-color);
  position: relative;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.viewMore {
  color: #ccc;
  font-weight: 600;
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--border-radius-pill);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.viewMore:hover {
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.2);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.viewMore i {
  margin-left: 10px;
  transition: transform var(--transition-medium);
}

.viewMore:hover i {
  transform: translateX(8px);
}

/* ===== GAME ROW STYLES ===== */
.gameRow {
  display: grid;
  gap: clamp(15px, 2.5vw, 30px);
  padding: clamp(15px, 2vw, 30px);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .gameRow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gameRow {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    max-width: 1440px;
    margin: 0 auto;
  }
}

.gameCol {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: #1E1E1E;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 1/1.2;
  will-change: transform;
  backface-visibility: hidden;
}

.gameCol::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.gameCol:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(var(--primary-color-rgb), 0.25);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.gameCol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gameCol:hover img {
  transform: scale(1.08);
}

.playBox {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.gameCol:hover .playBox {
  transform: translateY(0);
}

.playBox h6 {
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.playNow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--gradient-primary);
  color: #FFF;
  padding: 12px 28px;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  opacity: 0;
  transition: all var(--transition-bounce);
  border: none;
  cursor: pointer;
  z-index: 3;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  will-change: transform, opacity;
  text-transform: uppercase;
}

.gameCol:hover .playNow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.playNow:hover {
  background: linear-gradient(135deg, #ff5b52, #d32f2f);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
  transform: translate(-50%, -50%) scale(1.05);
}

.topText {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(var(--primary-color-rgb), 0.9);
  color: #FFF;
  padding: 5px 15px;
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 3;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .gameRow {
    gap: 12px;
    padding: 10px;
  }
  
  .gameCol {
    border-radius: var(--border-radius-md);
  }
  
  .playBox {
    padding: 15px;
  }
  
  .playBox h6 {
    font-size: 0.95rem;
  }
  
  .playNow {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .topText {
    padding: 4px 12px;
    font-size: 0.75rem;
    top: 10px;
    right: 10px;
  }
}

/* ===== PAYMENT SECTION STYLES ===== */
.payments-container {
  background-color: rgba(10, 10, 10, 0.7);
  backdrop-filter: var(--blur-medium) saturate(180%);
  -webkit-backdrop-filter: var(--blur-medium) saturate(180%);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  margin: 60px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  position: relative;
  overflow: hidden;
}

.payments-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
  animation: rotate 25s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.payments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  padding: 25px;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: var(--border-radius-lg);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  box-shadow: var(--shadow-md);
}

.payments-title {
  display: flex;
  align-items: center;
}

.footer-scroll {
  width: 100%;
  background-color: rgba(18, 18, 24, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.footerRow {
  padding: 40px 0 20px;
}

/* Footer Headings */
.footerRow h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footerRow h6:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #ff8e53);
  border-radius: 2px;
}

/* Footer Links */
.footerRow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerRow li {
  margin-bottom: 12px;
}

.footLink {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
  position: relative;
}

.footLink:hover {
  color: #fff;
  transform: translateX(5px);
  text-decoration: none;
}

.footLink:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footLink:hover:after {
  width: 100%;
}

/* Provider Sections */
.footerProvider {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.provider-style-div {
  width: 100%;
  padding: 15px;
  background-color: rgba(30, 30, 40, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.provider-style-div h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.provider-style-div ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.provider-style-div li {
  transition: transform 0.3s ease;
}

.provider-style-div li:hover {
  transform: translateY(-5px);
}

.provider-style-div img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.provider-style-div img:hover {
  filter: grayscale(0%);
}

/* Copyright Section */
.copytext {
  text-align: center;
  margin: 20px 0;
  padding: 0 15px;
}

.copytext p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* Payment Center */
.payment-center {
  margin: 30px 0;
  text-align: center;
}

.payText {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.filterTab {
  margin-top: 10px;
}

.paymentLogos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ftpayLogo {
  background-color: rgba(40, 40, 50, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 10px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ftpayLogo:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ftpayLogo img {
  height: 30px;
  width: auto;
}

/* Copyright Row */
.copyRight {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reslogoRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.resLogo {
  display: inline-block;
}

.resLogo img {
  height: 45px;
  width: auto;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.resLogo img:hover {
  filter: grayscale(0%);
}

.copyRight p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 15px 0 0;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
  z-index: 9999;
  overflow: hidden;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background-color: rgba(40, 40, 50, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 30px;
  border-radius: 12px;
  width: 75%;
  max-width: 900px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  position: relative;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}

.modal-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.close {
  cursor: pointer;
  font-size: 2em;
  background: none;
  border: none;
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.close:hover {
  opacity: 1;
}

.modal-body {
  padding: 0 10px;
}

.modal-body h5 {
  color: #ff8e53;
  margin-bottom: 15px;
  font-size: 18px;
}

.modal-body p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.modal-body ul, .modal-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.modal-body li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0px;
  margin-top: 0px;
  text-align: right;
}

.btn-secondary {
  background-color: rgba(80, 80, 100, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(100, 100, 120, 0.9);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footerRow {
    padding: 30px 0 15px;
  }
  
  .footerRow h6 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footLink {
    font-size: 13px;
  }
  
  .provider-style-div h3 {
    font-size: 18px;
  }
  
  .provider-style-div img {
    height: 30px;
  }
  
  .modal-content {
    width: 90%;
    padding: 20px;
  }
  
  .modal-title {
    font-size: 18px;
  }
  
  .close {
    font-size: 1.5em;
    top: 10px;
    right: 10px;
  }
  
  .copytext p {
    font-size: 12px;
  }
  
  .ftpayLogo img {
    height: 25px;
  }
  
  .resLogo img {
    height: 35px;
  }
  
  .copyRight p {
    font-size: 12px;
    text-align: center;
  }
  
  .reslogoRow {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .provider-style-div ul {
    gap: 10px;
  }
  
  .provider-style-div img {
    height: 25px;
  }
  
  .paymentLogos {
    gap: 10px;
  }
  
  .ftpayLogo {
    padding: 8px 12px;
  }
  
  .ftpayLogo img {
    height: 20px;
  }
  
  .modal-content {
    width: 95%;
    padding: 15px;
  }
  
  .modal-body {
    padding: 0 5px;
    font-size: 13px;
  }
  
  .modal-body h5 {
    font-size: 16px;
  }
}


/* Profil Butonu ve Açılır Menü Stilleri */
/* CSS KODU (Mevcut yapı korunarak düzeltildi) */

.playerCol {
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* User button styles */
.userBtn {
  background: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 5px var(--shadow-color);
  position: relative;
  z-index: 1001;
}

.userBtn:hover {
  transform: scale(1.05);
  background: var(--secondary-color);
}

.userBtn i {
  font-size: 20px;
}

/* Player navigation dropdown */
.playerNav {
  position: absolute;
  top: 45px;
  right: 0;
  width: 280px;
  background: linear-gradient(45deg, #000000, #770000);
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow-color);
  z-index: 1000;
  overflow: hidden;
  transition: all var(--transition-speed) ease-in-out;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
}

.playerNav.hidesection {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

.playerNav:not(.hidesection) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile section styles */
.mobile-section {
    background: linear-gradient(45deg, #000000, #770000);
    color: var(--light-text);
    padding: 15px;
    border-bottom: 5px solid rgb(255 0 0);
}

.mobile-section .pl-link {
  color: var(--light-text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 5px;
}

.mobile-section .pl-link:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.float-right {
  float: right;
  font-weight: 700;
}

/* Navigation link styles */
.pl-link {
  display: block;
  padding: 12px 15px;
  color: #ffffff;
  text-decoration: none;
  transition: background var(--transition-speed) ease;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.pl-link:hover {
    background: var(--hover-color);
    color: #ffffff;
}

.pl-link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color:#ffffff;
}

/* Modal styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  overflow: auto;
  transition: opacity var(--transition-speed) ease-in-out;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 30px auto;
  max-width: 500px;
  transition: transform var(--transition-speed) ease-in-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

.modal:not(.show) .modal-dialog {
  transform: translateY(-25px);
}

.modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.modalfreamheight {
  height: 80vh;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  background: var(--primary-color);
  color: var(--light-text);
}

.modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.modal-header .close {
  background: transparent;
  border: none;
  color: var(--light-text);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  opacity: 0.7;
  transition: opacity var(--transition-speed) ease;
}

.modal-header .close:hover {
  opacity: 1;
}

.modal-body {
  padding: 0;
}

.ifreamview {
  border: none;
  height: calc(80vh - 56px);
}

.overflow-hidden {
  overflow: hidden;
}

/* Responsive styles */
@media (max-width: 768px) {
  .playerNav {
    width: 250px;
    right: -10px;
  }
  
  .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  
  .modalfreamheight {
    height: 70vh;
  }
  
  .ifreamview {
    height: calc(70vh - 56px);
  }
}

/* Animation for modal */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal.show {
  animation: fadeIn var(--transition-speed) forwards;
}

.modal.show .modal-dialog {
  animation: slideDown var(--transition-speed) forwards;
}

/* SweetAlert customization */
.swal2-popup {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 10px;
}

.swal2-title {
  color: var(--primary-color);
}

.swal2-confirm {
  background-color: var(--secondary-color) !important;
}

.swal2-cancel {
  background-color: #e74c3c !important;
}
/* Deposit/Withdraw Buttons */
.buttons-bottom {
  display: flex;
  gap: 10px;
}

.btn {
    background: linear-gradient(45deg, #000000, #770000);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 7px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.deposit-bc {
  background-color: #ff3b30;
  color: #ffffff;
  flex: 1;
}

.withdraw-bc {
  background-color: #1e1e1e;
  border: 1px solid #ff3b30;
  color: #ffffff;
  flex: 1;
}

.deposit-bc:hover, .btn-primary:hover {
  background-color: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 59, 48, 0.3);
}

.withdraw-bc:hover {
  background-color: rgba(255, 59, 48, 0.1);
  transform: translateY(-2px);
}

.btn i, .btn img {
  margin-right: 8px;
  font-size: 16px;
}

/* Sidebar Navigation */
.sideSports {
  padding: 15px;
}

.sideSports ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sideSports li {
  margin-bottom: 5px;
}

.sideSports a {
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sideSports a:hover {
  background-color: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
}

.sideSports a.active {
  background-color: #ff3b30;
  color: #ffffff;
}

/* Main Content Area */
app-all-player-account-details {
  flex: 1;
}

.container-fluid {
  width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  background-color: transparent;
}

.breadcrumb-item {
  color: #b0b0b0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 8px;
  color: #b0b0b0;
}

.breadcrumb-item a {
  color: #ff3b30;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.backBtn {
  background-color: transparent;
  border: none;
  color: #ff3b30;
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

/* Profile Form Styles */
.profileRow {
  background-color: #121212;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.col-form-label {
  display: block;
  margin-bottom: 8px;
  color: #b0b0b0;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: #1e1e1e;
  border: 1px solid #333333;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #ff3b30;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
}

.form-control:disabled, .cursor-not-allowed {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Password Change Section */
.secTitle {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.secTitle h5 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.eyeIcon {
  position: absolute;
  right: 15px;
  top: 40px;
  color: #b0b0b0;
  cursor: pointer;
}

.btn-primary {
  background-color: #ff3b30;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .centerWrap.porfileWrap {
    flex-direction: column;
  }
  
  .sidebarMain {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  
  .col-md-6 {
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .buttons-bottom {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .profileRow {
    padding: 15px;
  }
  
  .form-control {
    padding: 10px 12px;
  }
}

			/* Transaction History Container */
.centerWrap.porfileWrap {
  display: flex;
  gap: 30px;
  max-width: 1440px;
  margin: 30px auto;
  padding: 0 15px;
}

/* Table Container */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Transaction Table */
.table {
  width: 100%;
  border-collapse: collapse;
  background-color: #121212;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table Header */
.table thead {
  background-color: #ff3b30;
}

.table thead th {
  padding: 15px;
  text-align: left;
  color: #ffffff;
  font-weight: 500;
  border-bottom: 2px solid #d32f2f;
}

/* Table Body */
.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.table tbody tr:hover {
  background-color: rgba(255, 59, 48, 0.05);
}

.table tbody td {
  padding: 12px 15px;
  color: #ffffff;
}

/* Status Indicators */
.text-warning {
  color: #ffc107;
}

.text-success {
  color: #28a745;
}

.text-danger {
  color: #dc3545;
}

/* No Data Message */
.nodatafound {
  color: #b0b0b0;
  text-align: center;
  font-weight: 500;
}

/* Right-aligned columns */
.text-right {
  text-align: right;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  background-color: transparent;
}

.breadcrumb-item {
  color: #b0b0b0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 8px;
  color: #b0b0b0;
}

.breadcrumb-item a {
  color: #ff3b30;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.backBtn {
  background-color: transparent;
  border: none;
  color: #ff3b30;
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .centerWrap.porfileWrap {
    flex-direction: column;
  }
  
  .sidebarMain {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .table thead {
    display: none;
  }
  
  .table tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }
  
  .table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .table tbody td::before {
    content: attr(data-label);
    font-weight: 500;
    color: #b0b0b0;
    margin-right: 15px;
  }
  
  .table tbody td:last-child {
    border-bottom: none;
  }
  
  /* Add data labels for mobile */
  .table tbody td:nth-child(1)::before { content: "Kayıt Kimliği"; }
  .table tbody td:nth-child(2)::before { content: "Tür"; }
  .table tbody td:nth-child(3)::before { content: "İşlem Kimliği"; }
  .table tbody td:nth-child(4)::before { content: "Tarih"; }
  .table tbody td:nth-child(5)::before { content: "İstenen Miktar"; }
  .table tbody td:nth-child(6)::before { content: "Onaylanan Miktar"; }
  .table tbody td:nth-child(7)::before { content: "Ödeme Modları"; }
  .table tbody td:nth-child(8)::before { content: "Güncelleme Zamanı"; }
  .table tbody td:nth-child(9)::before { content: "Durum"; }
}

@media (max-width: 576px) {
  .table tbody td {
    font-size: 14px;
  }
  
  .nodatafound {
    font-size: 16px;
  }
}


