/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f23;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Sidebar stilleri - Yeni Modern Tasarım */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar.collapsed .sidebar-header {
    height: 60px;
}

.sidebar-header .logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.sidebar.collapsed .logo {
    width: 45px;
    height: 45px;
}
.sidebar.collapsed .logo-img {
    width: 100%;
    height: 100%;
}

.sidebar.collapsed .sidebar-header .logo {
    margin-bottom: 0;
}

.sidebar-header h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sidebar.collapsed .sidebar-header h2 {
    display: none;
}

.sidebar-nav {
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
}

.nav-section {
    margin-bottom: 30px;
}

.nav-section-title {
    padding: 0 20px 10px;
    color: #8b8b9f;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sidebar.collapsed .nav-section-title {
    display: none;
}

.nav-item {
    margin: 2px 15px;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #b8b8c7;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(4px);
}

.nav-link.active {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    font-weight: 600;
}

.nav-link i {
    margin-right: 16px;
    font-size: 18px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

.nav-link span {
    font-size: 14px;
    font-weight: 500;
}

.sidebar.collapsed .nav-link span {
    display: none;
}

.sidebar.collapsed .nav-link {
    justify-content: center;
    padding: 12px 8px;
}

.sidebar.collapsed .nav-link i {
    margin-right: 0;
    font-size: 20px;
}

/* Özel butonlar */
.nav-link.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a1a2e;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    margin: 10px 15px;
}

.nav-link.btn-primary:hover {
    background: linear-gradient(135deg, #00cc6a, #00ff88);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.nav-link.btn-secondary {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #1a1a2e;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    margin: 10px 15px;
}

.nav-link.btn-secondary:hover {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.sidebar.collapsed .nav-link.btn-primary,
.sidebar.collapsed .nav-link.btn-secondary {
    margin: 5px 10px;
    padding: 12px 8px;
    border-radius: 8px;
    background: transparent !important;
    color: #b8b8c7 !important;
    box-shadow: none !important;
}

.sidebar.collapsed .nav-link.btn-primary:hover,
.sidebar.collapsed .nav-link.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}

.sidebar.collapsed .nav-link.btn-primary i,
.sidebar.collapsed .nav-link.btn-secondary i {
    margin-right: 0;
    font-size: 18px;
}

/* Login/Kayıt Butonları */
.nav-link.btn-login {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin: 10px 15px;
}

.nav-link.btn-login:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.nav-link.btn-register {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    margin: 10px 15px;
}

.nav-link.btn-register:hover {
    background: linear-gradient(135deg, #f5576c, #f093fb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

.sidebar.collapsed .nav-link.btn-login,
.sidebar.collapsed .nav-link.btn-register {
    margin: 5px 10px;
    padding: 12px 8px;
    border-radius: 8px;
    background: transparent !important;
    color: #b8b8c7 !important;
    box-shadow: none !important;
}

.sidebar.collapsed .nav-link.btn-login:hover,
.sidebar.collapsed .nav-link.btn-register:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}

.sidebar.collapsed .nav-link.btn-login i,
.sidebar.collapsed .nav-link.btn-register i {
    margin-right: 0;
    font-size: 18px;
}

/* Tooltip stilleri */
.tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #2a2a3e;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tooltip::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid #2a2a3e;
}

.sidebar.collapsed .nav-link:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Auth Section - Alt kısım için */
.auth-section {
    position: absolute;
    bottom: 140px;
    left: 0;
    right: 0;
    padding: 0 15px;
    margin-bottom: 0;
}

.sidebar.collapsed .auth-section {
    bottom: 290px;
    padding: 0 10px;
}

/* Sosyal medya bölümü */
.social-section {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #b8b8c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.sidebar.collapsed .social-links {
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.sidebar.collapsed .social-link {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin: 0 auto;
}

/* Toggle butonu */
.sidebar-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #b8b8c7;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.sidebar.collapsed .sidebar-toggle {
    right: 8px;
}

.sidebar.collapsed .logo {
    justify-content: center;
}

.sidebar.collapsed .logo i {
    margin-right: 0;
    font-size: 24px;
}

/* Ana içerik alanı */
.main-content {
    margin-left: 280px;
    padding: 30px;
    min-height: 100vh;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Görevler sayfası için özel düzenleme */
body.gorevler-page .main-content {
    margin-left: 160px;
}

.sidebar.collapsed + .main-content {
    margin-left: 70px;
}

/* Slider tam genişlik için düzeltme */
.sidebar.collapsed ~ .main-content .slider-section,
.sidebar.collapsed ~ .main-content .slider-main {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    left: auto !important;
    right: 0 !important;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .sidebar.collapsed + .main-content {
        margin-left: 0;
    }
    
    /* Görevler sayfası için mobil düzenleme */
    body.gorevler-page .main-content {
        margin-left: 0;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Özel efektler */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

/* Ana sayfa stilleri */
.welcome-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, #00ff88, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.stat-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-card p {
    background: linear-gradient(135deg, #00ff88, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
} 

/* Mobil Menü Butonu */
.mobile-menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(34,197,94,0.13); /* Sitenin ana rengine uygun hafif yeşil */
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.77,0,.18,1);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(34,197,94,0.10);
    outline: none;
}
.mobile-menu-btn:hover, .mobile-menu-btn.active {
    background: rgba(34,197,94,0.22);
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(34,197,94,0.18);
}

/* Hamburger/Cross animasyonu */
.mobile-menu-btn .hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    display: inline-block;
    transition: all 0.3s cubic-bezier(.77,0,.18,1);
}
.mobile-menu-btn .hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: all 0.3s cubic-bezier(.77,0,.18,1);
}
.mobile-menu-btn .hamburger span:nth-child(1) {
    top: 0;
}
.mobile-menu-btn .hamburger span:nth-child(2) {
    top: 9px;
}
.mobile-menu-btn .hamburger span:nth-child(3) {
    top: 18px;
}
.mobile-menu-btn.active .hamburger span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}
.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .hamburger span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 280px;
    }
    
    .sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        padding: 80px 20px 30px;
    }
    
    .sidebar.collapsed + .main-content {
        margin-left: 0;
    }
    
    /* Mobilde auth section pozisyonunu düzelt */
    .auth-section {
        position: relative;
        bottom: auto;
        margin-top: 20px;
    }
    
    .sidebar.collapsed .auth-section {
        position: relative;
        bottom: auto;
    }
} 

/* Sponsorlar sayfası stilleri - Yeni Tasarım */

/* === SLIDER YENİ MODERN === */
.slider-section {
    width: 100%;
  max-width: 100%;
  margin: 32px 0 48px 0;
  position: relative;
}
.slider-main {
    position: relative;
    width: 100%;
  height: 480px;
    overflow: hidden;
  border-radius: 18px;
  background: #181a23;
  box-shadow: 0 4px 32px #000a;
}
.slider-wrapper {
    display: flex;
  width: 100%;
    height: 100%;
  transition: transform 0.6s cubic-bezier(.77,0,.18,1);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.slide {
  min-width: 100%;
    height: 100%;
    display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.slider-main img, .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  border-radius: 18px;
  display: block;
}
.slider-main .slide.active {
  opacity: 1;
  z-index: 2;
}
.slider-arrows {
    position: absolute;
    top: 50%;
  left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  background: rgba(0,0,0,0.5);
  color: #fff;
    border: none;
  width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s;
}
.slider-arrow:hover {
  background: rgba(0,0,0,0.8);
}
.slider-dots {
    display: flex;
    gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.slider-dot {
  width: 13px; height: 13px;
    border-radius: 50%;
  background: #444;
    cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: #22c55e;
    transform: scale(1.2);
}
@media (max-width: 1200px) {
  .slider-main { height: 340px; }
  .slider-section { max-width: 100vw; }
}
@media (max-width: 900px) {
  .slider-main { height: 200px; }
}
@media (max-width: 600px) {
  .slider-section { max-width: 100vw; }
  .slider-main { height: 120px; }
}

/* Sponsor Bölümleri */
.sponsor-section {
    margin-bottom: 40px;
}

.section-header {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1a1a2e;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: box-shadow 0.3s, background 0.3s;
}

.section-header i {
    font-size: 1.4rem;
    margin-right: 6px;
    color: #1a1a2e;
    background: #ffd70033;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .section-header {
        font-size: 1rem;
        padding: 12px 10px;
        border-radius: 12px;
        gap: 6px;
    }
    .section-header i {
        font-size: 1.1rem;
        padding: 4px;
    }
}

/* Sponsor Grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 100%;
    overflow-x: hidden;
}

/* Sidebar açıkken grid ayarları */
.sidebar:not(.collapsed) ~ .main-content .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

/* Sidebar kapalıyken grid ayarları */
.sidebar.collapsed ~ .main-content .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.sponsor-logo-card {
    max-width: 100%;
    width: 100%;
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    border-radius: 15px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Sidebar açıkken kart boyutu */
.sidebar:not(.collapsed) ~ .main-content .sponsor-logo-card {
    padding: 12px;
    min-height: 80px;
}

/* Sidebar kapalıyken kart boyutu */
.sidebar.collapsed ~ .main-content .sponsor-logo-card {
    padding: 14px;
    min-height: 100px;
}

.sponsor-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.sponsor-logo-card:hover::before {
    left: 100%;
}

.sponsor-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.sponsor-logo-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-logo-card:hover img {
    transform: scale(1.1);
}

/* Tam Kart Tasarımı - Banner Stili */
.sponsors-full-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
    justify-items: center;
    max-width: 100%;
    overflow-x: hidden;
}

/* Sidebar açıkken tam kart ayarları */
.sidebar:not(.collapsed) ~ .main-content .sponsors-full-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Sidebar kapalıyken tam kart ayarları */
.sidebar.collapsed ~ .main-content .sponsors-full-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.sidebar.collapsed ~ .main-content .sponsor-full-card {
    min-height: 260px;
    height: 260px;
    width: 340px;
    min-width: 340px;
}

.sidebar.collapsed ~ .main-content .sponsor-card-logo img {
    width: 130px;
    height: 85px;
}

.sponsor-full-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

/* Sidebar açıkken tam kart boyutu */
.sidebar:not(.collapsed) ~ .main-content .sponsor-full-card {
    min-height: 240px;
    height: 240px;
    width: 100%;
    min-width: auto;
}

/* Sidebar kapalıyken tam kart boyutu */
.sidebar.collapsed ~ .main-content .sponsor-full-card {
    min-height: 260px;
    height: 260px;
    width: 100%;
    min-width: auto;
}

.sponsor-full-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(16,185,129,0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.sponsor-full-card:hover::before {
    opacity: 1;
}

.sponsor-full-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border-color: rgba(34,197,94,0.4);
}

/* Üst koyu bölüm */
.sponsor-card-logo {
    background: transparent;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 0;
    border: none;
    flex-shrink: 0;
}

.sponsor-card-logo img {
    width: 150px;
    height: 100px;
    object-fit: contain;
}

/* Alt koyu bölüm */
.sponsor-card-content {
    background: #111827;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.sponsor-card-title {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-height: 1.4em;
}

.sponsor-card-desc {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.7em;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sponsor-card-btn {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #e2e8f0;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.sponsor-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.sponsor-card-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(16,185,129,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sponsor-card-btn:hover {
    background: linear-gradient(135deg, #334155, #1e293b);
    border-color: rgba(148, 163, 184, 0.4);
    color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 1px rgba(148, 163, 184, 0.1);
}

.sponsor-card-btn:hover::before {
    left: 100%;
}

.sponsor-card-btn:hover::after {
    opacity: 1;
}

/* Responsive tasarım */
@media (max-width: 900px) {
    .sponsor-full-card {
        min-height: 260px;
        height: 260px;
        width: auto;
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .sponsors-full-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 12px 0;
    }
    
    .sponsor-full-card {
        min-height: 250px;
        height: 250px;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .sponsor-card-logo {
        padding: 16px;
    }
    
    .sponsor-card-content {
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
    
    .sponsor-card-logo img {
        width: 120px;
        height: 80px;
    }
    
    .sponsor-card-title {
        font-size: 1rem;
        margin: 0 0 6px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-height: 1.4em;
    }
    
    .sponsor-card-desc {
        font-size: 0.8rem;
        margin: 0 0 16px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        max-height: 3.6em;
        line-height: 1.2;
        flex: 1;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .sponsor-card-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-top: auto;
    }
} 

/* Responsive */
@media (max-width: 1000px) {
    .slider-container { height: 260px; }
}
@media (max-width: 600px) {
    .sponsor-banner { max-width: 100vw; }
    .slider-container { height: 160px; }
}
@media (max-width: 480px) {
    .slider-container {
        height: 200px;
        border-radius: 12px;
    }
    
    .banner-image {
        border-radius: 12px;
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
    }
    
    .slider-slide {
        background: transparent;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
    }
    
    .slider-btn i {
        font-size: 12px;
    }
    
    .slider-dots {
        bottom: -15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .slider-container {
        height: 180px;
        border-radius: 10px;
    }
    
    .banner-image {
        border-radius: 10px;
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
    }
    
    .slider-slide {
        background: transparent;
    }
} 

/* Footer Stili */
.site-footer {
    width: 100%;
    background: #151528;
    color: #fff;
    padding: 32px 0 20px 0;
    margin-top: 48px;
    box-shadow: 0 -2px 16px 0 rgba(0,0,0,0.12);
    position: relative;
    z-index: 100;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.footer-desc {
    font-size: 0.95rem;
    color: #bdbdd7;
    margin-bottom: 6px;
}
.footer-links {
    display: flex;
    gap: 18px;
    margin-top: 4px;
}
.footer-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.97rem;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    text-align: center;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.blonk-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.blonk-link:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.blonk-link .blonk {
    color: var(--primary-color, #22c55e);
    font-weight: 700;
}



/* Footer Yeniden Tasarım */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Ziyaretçi Sayısı Footer Stilleri */
.footer-visitors {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 120px;
    flex-shrink: 0;
}

.visitors-text {
    color: #b6c6e3;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.visitors-number {
    color: var(--primary-color, #22c55e);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.2);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-visitors {
        padding: 10px 16px;
        min-width: 120px;
    }
    
    .visitors-text {
        font-size: 11px;
    }
    
    .visitors-number {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 12px;
    }
    
    .footer-visitors {
        padding: 8px 12px;
        min-width: 100px;
    }
    
    .visitors-text {
        font-size: 10px;
    }
    
    .visitors-number {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        padding: 0 10px;
        font-size: 0.95rem;
    }
    .footer-links {
        gap: 10px;
        flex-wrap: wrap;
    }
}

/* Ana içerik ile footer arasında boşluk bırakmak için */
.main-content, .welcome-section, .quick-access, .announcement-section, .social-section {
    margin-bottom: 32px;
} 

/* Hızlı Erişim Kartları */
.quick-access {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 18px;
    margin: 32px 0 32px 0;
    padding: 0 4px;
}
.quick-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #23234a 100%);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 8px 16px 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    position: relative;
    border: 1px solid rgba(255,255,255,0.07);
}
.quick-card i {
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: #ffd700;
    transition: color 0.18s;
}
.quick-card span {
    display: block;
    text-align: center;
    font-size: 1.01rem;
    color: #fff;
}
.quick-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    background: linear-gradient(135deg, #23234a 0%, #1a1a2e 100%);
    text-decoration: none;
}
.quick-card:hover i {
    color: #fff;
}
@media (max-width: 600px) {
    .quick-access {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0;
    }
    .quick-card {
        padding: 16px 4px 12px 4px;
        font-size: 0.97rem;
    }
    .quick-card i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
} 

.banner-row {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    position: static;
}
.banner-gif, .banner-ad {
    flex: 1 1 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    min-width: 0;
    min-height: 0;
    background: none;
    margin: 0;
    padding: 0;
}
.banner-gif img, .banner-ad img {
    width: 100%;
    max-width: 95%;
    object-fit: contain;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: block;
    margin: 0;
}
@media (max-width: 900px) {
    .banner-row {
        gap: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        position: static;
    }
    .banner-gif img, .banner-ad img {
        max-height: 100px;
    }
}
@media (max-width: 600px) {
    .banner-row {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        position: static;
    }
    .banner-gif img, .banner-ad img {
        border-radius: 10px;
    }
} 

/* Duyurular / Haberler */
.announcement-section {
    background: linear-gradient(135deg, #18182e 0%, #23234a 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 22px 24px 16px 24px;
    margin: 32px auto 0 auto;
    max-width: 700px;
}
.announcement-header {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.announcement-header i {
    font-size: 1.2rem;
}
.announcement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.announcement-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.01rem;
    color: #fff;
    margin-bottom: 7px;
    padding-left: 2px;
}
.announcement-list li i {
    color: #ffd700;
    font-size: 1rem;
    min-width: 18px;
    text-align: center;
}
@media (max-width: 600px) {
    .announcement-section {
        padding: 12px 8px 10px 8px;
        border-radius: 10px;
        max-width: 100%;
    }
    .announcement-header {
        font-size: 1rem;
        gap: 5px;
    }
    .announcement-list li {
        font-size: 0.97rem;
        margin-bottom: 5px;
    }
} 

.announcement-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
    justify-content: flex-start;
}
.announcement-card {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 340px;
    background: linear-gradient(135deg, #18182e 0%, #23234a 100%);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 24px 18px 18px 18px;
    display: flex;
    align-items: flex-end;
    transition: box-shadow 0.18s, transform 0.18s;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.announcement-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    transform: translateY(-4px) scale(1.03);
}
@media (max-width: 900px) {
    .announcement-cards {
        gap: 10px;
    }
    .announcement-card {
        font-size: 0.98rem;
        padding: 16px 10px 12px 10px;
    }
}
@media (max-width: 600px) {
    .announcement-cards {
        flex-direction: column;
        gap: 8px;
    }
    .announcement-card {
        min-width: 0;
        max-width: 100%;
        font-size: 0.95rem;
        padding: 12px 8px 10px 8px;
    }
} 

.social-cards-section {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 32px 0 0 0;
    max-width: 100%;
    width: 100%;
}
.social-cards-header {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    padding-left: 24px;
}
.social-cards-desc {
    color: #bdbdd7;
    font-size: 1.01rem;
    margin-bottom: 18px;
    padding-left: 24px;
    margin-top: 8px;
}
.social-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0 0 0 0;
}
.social-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #23234a 100%);
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s, background 0.22s;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 18px 24px 16px 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-width: 280px;
    flex: 1;
    max-width: 320px;
}
.social-card:hover {
    transform: translateY(-10px) scale(1.045);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    background: linear-gradient(135deg, #23234a 0%, #1a1a2e 100%);
    text-decoration: none;
    color: inherit;
}
.social-card .social-icon {
    font-size: 2.8rem;
    margin-bottom: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
    transition: filter 0.22s, transform 0.22s;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.social-card .social-icon img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 0;
}
.social-card:hover .social-icon {
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.32));
    transform: scale(1.12) rotate(-6deg);
}
.social-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
    flex: 1;
}
.social-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0;
}
.social-desc {
    font-size: 1.01rem;
    color: #bdbdd7;
    opacity: 0.92;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(189, 189, 215, 0.3);
}
.social-card.telegram .social-icon {
    background: linear-gradient(135deg, #229ed9 60%, #00c3ff 100%);
    color: #fff;
    box-shadow: 0 2px 12px #229ed955;
}
.social-card.x .social-icon {
    background: linear-gradient(135deg, #22232a 60%, #444 100%);
    color: #fff;
}
.social-card.instagram .social-icon {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    box-shadow: 0 2px 12px #d6249f55;
}
.social-card.kick .social-icon {
    background: linear-gradient(135deg, #39ff14 60%, #bfff00 100%);
    color: #18182e;
    font-weight: 700;
    font-size: 1.8rem;
    box-shadow: 0 2px 12px #39ff1455;
}
.social-card .kick-k {
    font-size: 1.8rem;
    font-weight: 700;
    color: #18182e;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.social-card .badge {
    position: absolute;
    top: 12px;
    right: 18px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #18182e;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 2px 8px #ffd70033;
    letter-spacing: 0.5px;
    opacity: 0.92;
}
@media (max-width: 900px) {
    .social-cards-row {
        gap: 12px;
    }
    .social-card {
        font-size: 0.98rem;
        padding: 16px 14px 14px 14px;
        min-width: 240px;
        border-radius: 16px;
    }
    .social-card .social-icon {
        font-size: 1.9rem;
        width: 45px;
        height: 45px;
        margin-right: 14px;
    }
    .social-card .social-icon img {
        width: 38px;
        height: 38px;
        object-fit: cover;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        padding: 0;
    }
    .social-title {
        font-size: 1.05rem;
    }
    .social-desc {
        font-size: 0.9rem;
    }
}
@media (max-width: 600px) {
    .social-cards-row {
        flex-direction: column;
        gap: 12px;
        padding: 0;
    }
    .social-card {
        min-width: 0;
        max-width: 100%;
        font-size: 0.95rem;
        padding: 14px 12px 12px 12px;
        border-radius: 12px;
    }
    .social-card .social-icon {
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    .social-card .social-icon img {
        width: 34px;
        height: 34px;
        object-fit: cover;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        padding: 0;
    }
    .social-title {
        font-size: 1rem;
    }
    .social-desc {
        font-size: 0.85rem;
    }
} 

@media (max-width: 600px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sponsor-logo-card img {
        max-height: 80px;
    }
} 

.sidebar .balance-box {
    transition: all 0.3s cubic-bezier(.77,0,.18,1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 1rem;
    gap: 10px;
    background: #181a23;
    border-radius: 12px;
    margin: 10px 0 16px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.sidebar.collapsed .balance-box {
    flex-direction: column;
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    padding: 8px 0;
    font-size: 0.95rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px auto 16px auto;
}
.sidebar.collapsed .balance-box .balance-label {
    display: none !important;
}
.sidebar.collapsed .balance-box {
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis;
}
.sidebar.collapsed .balance-box .balance-amount {
    font-size: 1rem;
    font-weight: 700;
} 

@media (max-width: 700px) {
    .banner-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: center !important;
        margin-bottom: 32px !important;
        padding: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
    .banner-gif {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        min-height: 110px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
    .banner-gif img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    .banner-row + .social-cards-section {
        margin-top: 32px !important;
    }
} 

/* Sidebar scrollbar teması */
.sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

/* Sidebar Auth Bottom - Mobil için düzeltme */
.sidebar-auth-bottom {
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, #1a1a2e 20%, #1a1a2e 100%);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    z-index: 10;
}

/* Sadece auth-bottom içindeki nav-link'leri etkile */
.sidebar-auth-bottom > .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-auth-bottom > .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-auth-bottom > .nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar-auth-bottom > .nav-link span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Sosyal Medya linkini auth-bottom stilinden hariç tut */
.sidebar-nav .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 0;
}

.sidebar-nav .nav-item .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.sidebar-nav .nav-item .nav-link.active {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-nav .nav-item .nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar-nav .nav-item .nav-link span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mobil için özel düzenlemeler */
@media (max-width: 768px) {
    .sidebar-auth-bottom {
        position: fixed;
        bottom: 60px; /* Bir tık daha yukarı */
        left: 0;
        right: 0;
        width: 280px;
        background: #1a1a2e; /* Sabit renk */
        padding: 15px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        max-height: 120px; /* Yükseklik sınırı */
        overflow-y: auto; /* Scroll ekle */
        z-index: 1001; /* Üstte kal */
    }
    
    .sidebar-auth-bottom > .nav-link {
        padding: 8px 12px;
        margin-bottom: 4px;
        font-size: 0.8rem;
        min-height: 36px; /* Minimum yükseklik */
        display: flex;
        align-items: center;
    }
    
    .sidebar-auth-bottom > .nav-link i {
        font-size: 0.9rem;
        width: 16px;
    }
    
    /* Mobilde nav-link'leri düzelt */
    .sidebar-nav .nav-item .nav-link {
        padding: 12px 16px;
        margin: 2px 0;
        font-size: 0.9rem;
        background: transparent;
        border: none;
    }
    
    .sidebar-nav .nav-item .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        transform: none;
        box-shadow: none;
    }
    
    .sidebar-nav .nav-item .nav-link.active {
        background: var(--primary-color);
        border: none;
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .sidebar-nav .nav-item .nav-link i {
        font-size: 1rem;
        width: 18px;
    }
    
    .sidebar-nav .nav-item .nav-link span {
        font-size: 0.85rem;
    }
    
    /* Sidebar'ın alt kısmında boşluk bırak */
    .sidebar {
        padding-bottom: 140px; /* Daha fazla boşluk */
    }
}

/* Sidebar collapsed durumunda auth bottom gizle */
.sidebar.collapsed .sidebar-auth-bottom {
    display: none;
} 

/* Sponsorlar Sayfası Ana Container */
.sponsorlar-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
    min-height: 100vh;
} 