/* Base & Typography */
:root {
  --primary: #ffffff;
  --primary-dark: #e31046;
  --secondary: #000000;
  --dark-bg: #4f4fa8;
  --card-bg: #16213e;
  --text: #f8f9fa;
  --text-muted: #b0b0b0;
  --accent: #ff4081;
  --success: #4caf50;
  --gradient-start: #000000;
  --gradient-end: #1e1e30;
}

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

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.3px;
}

/* Header Styling */
.site-header {
  background-color: rgb(27 27 29 / 47%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 22, 86, 0.2);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: rgba(26, 26, 46, 0.98);
}
.logo-img {
    position: relative;
    height: 30px; /* Adjust height as needed */
    width: auto; /* Maintains aspect ratio */
    object-fit: contain;
    right: -1px;
    border-bottom: 1px solid #A9A9A9; /* KÃƒÆ’Ã‚Â¼l rengi (ash gray) ÃƒÆ’Ã‚Â§izgi */
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Navigation */
nav a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0.5rem 0;
}

nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

nav a:hover:after {
  width: 100%;
}

/* Social Icons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu */
/* Mobile Menu with enhanced visual appeal */
.mobile-menu {
  background: linear-gradient(135deg, rgba(22, 22, 35, 0.92), rgba(30, 30, 50, 0.95));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 
              0 6px 12px rgba(0, 0, 0, 0.15), 
              inset 0 1px 1px rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
}

.mobile-menu:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 
              0 8px 16px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.slider-wrapper {
  margin: 1.5rem 0;
  left: 9%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25),
              0 8px 16px rgba(0, 0, 0, 0.15);
  position: relative;
}

.slide-image {
  position: relative;
  width: 80%;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(1.02) contrast(1.05);
  left: 10%;
}

.slide-image:hover {
  transform: scale(1.03);
  filter: brightness(1.05) contrast(1.08);
}

/* Add subtle slide indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}
/* Section Styling */
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  color: var(--text);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.75rem;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.section-title i {
  color: var(--primary);
}

/* Sponsors Section */
.sponsors-wrapper {
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.sponsors-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 64, 129, 0.3), transparent);
}

.sponsors-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, #ff4081, #7c4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.main-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* Sponsor Card Styling */
.sponsor-card {
  background: linear-gradient(145deg, rgb(39 39 68 / 11%) 0%, rgb(28 28 50 / 46%) 100%);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  height: 200px;
}

.sponsor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 64, 129, 0.25);
}

.sponsor-card:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 64, 129, 0.08) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s ease;
}

.sponsor-card:hover:before {
  opacity: 1;
  transform: scale(1);
}

.sponsor-card:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff4081, #7c4dff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.sponsor-card:hover:after {
  transform: scaleX(1);
}

.casino-logo {
  max-width: 100%;
  max-height: 137px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.sponsor-card:hover .casino-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
}

.ana-sponsor-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #ff4081 0%, #7c4dff 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 12px rgba(255, 64, 129, 0.4);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.sponsor-card:hover .ana-sponsor-badge {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 64, 129, 0.5);
}

/* Casino Cards */
.casino-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.casino-card {
  background: linear-gradient(145deg, rgb(245 25 86) 0%, rgb(1 1 1 / 75%) 100%);
  border-radius: 16px;
  transition: all 0.35s ease;
  overflow: hidden;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.casino-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 64, 129, 0.2);
}

.casino-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.casino-card:hover .casino-card-image {
  transform: scale(1.05);
}

.casino-card-content {
  padding: 1.25rem;
}

.casino-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.casino-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.casino-rating-stars {
  color: #ffc107;
  margin-right: 0.5rem;
}

.casino-cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff4081, #7c4dff);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
  margin-top: auto;
}

.casino-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 64, 129, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .sponsors-wrapper {
    padding: 1rem;
  }
    .slide-image {
        position: relative;
        width: 93%;
        left: 10px;
    }
  .slider-wrapper
  {
        position: relative;
        width: 100%;
        left: 1px;
    }
  .main-sponsors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .casino-cards-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .sponsor-card {
    height: 160px;
    padding: 1.5rem 1rem;
  }
  
  .casino-logo {
    max-height: 123px;
  }
}

@media (max-width: 480px) {
  .main-sponsors-grid,
  .casino-cards-container {
    grid-template-columns: 1fr;
  }
  
  .sponsors-title {
    font-size: 1.5rem;
  }
}

.btn-promo {
  display: block;
  width: 100%;
  linear-gradient(90deg, #ff4081, #7c4dff)
  color: white;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgb(145 138 140 / 49%);
}

.btn-promo:hover {
  background: linear-gradient(90deg, #000000, #cc2e59);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 22, 86, 0.4);
}

.promo1-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff 0%, #e6e6e6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* Licenses Section */
.licenses-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.license-card {
  background: rgba(39, 39, 68, 0.4);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 180px;
}

.license-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 22, 86, 0.1);
}

.license-logo {
  max-width: 100%;
  max-height: 60px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.license-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
  }
  
  .main-sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .license-card {
    width: 140px;
    padding: 1rem;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
  }
  
  .logo-img {
    max-height: 50px;
  }
}

/* Dark Mode Optimization */
@media (prefers-color-scheme: dark) {
  :root {
    --dark-bg: #121220;
    --card-bg: #1e1e30;
    --text: #f0f0f0;
  }
  
  body {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional eye-friendly features */
::selection {
  background-color: var(--primary);
  color: white;
}

/* Reduce motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Add subtle animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.promo1-text i {
  animation: pulse 2s infinite;
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 9999;
  width: 0%;
  transition: width 0.3s ease;
}

/* Add custom scrollbar for Webkit browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 26, 46, 0.8);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
}