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

/* Arka plan ve genel font */
body {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
    color: #e5e7eb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px 16px 0 16px;
    background: transparent;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        padding: 16px 12px 0 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px 8px 0 8px;
    }
}

/* Görseldeki Header Tasarımı */
.header {
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
}

.header-icons-panel {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    margin-top: 38px;
}

.header-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.7rem;
    box-shadow: 0 0 32px 8px rgba(34,197,94,0.18);
    border: none;
    background: #23272f;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.header-icon:nth-child(1) {
    background: radial-gradient(circle, #22c55e 60%, #23272f 100%);
    box-shadow: 0 0 32px 8px #22c55e44;
}
.header-icon:nth-child(2) {
    background: radial-gradient(circle, #6b7280 60%, #23272f 100%);
    box-shadow: 0 0 32px 8px #6b728044;
}
.header-icon:nth-child(3) {
    background: radial-gradient(circle, #f59e0b 60%, #23272f 100%);
    box-shadow: 0 0 32px 8px #f59e0b44;
}
.header-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 0 48px 12px #22c55e55;
}

.header-title {
    font-size: 4.2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #4ade80 0%, #fef08a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -2px;
    margin-bottom: 0.1em;
    margin-top: 18px;
    text-shadow: 0 4px 24px #0006, 0 1px 0 #23272f;
}

.header-gradient-bar {
    width: 300px;
    height: 7px;
    margin: 0 auto 24px auto;
    border-radius: 8px;
    background: linear-gradient(90deg, #22c55e 0%, #fbbf24 100%);
    box-shadow: 0 2px 12px #22c55e33;
}

.header-subtitle {
    color: #a1a1aa;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px #0004;
    margin-top: 18px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.header-menu {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.header-menu-link {
    color: #a1a1aa;
    background: none;
    border-radius: 16px;
    padding: 12px 36px;
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
    outline: none;
}
.header-menu-link.active {
    background: #232009;
    color: #fbbf24;
    box-shadow: 0 2px 12px #fbbf2433;
    border-radius: 16px;
}
.header-menu-link:hover {
    color: #22c55e;
    background: #23272f;
}

.header-description {
    color: #b6b6c7;
    font-size: 1.35rem;
    text-align: center;
    font-weight: 500;
    margin: 38px auto 0 auto;
    letter-spacing: 0.01em;
    line-height: 1.7;
    max-width: 900px;
    background: none;
    text-shadow: 0 1px 4px #0002;
}

@media (max-width: 900px) {
    .header-title { font-size: 2.7rem; }
    .header-gradient-bar { width: 180px; }
    .header-subtitle { font-size: 1.2rem; }
    .header-menu-link { font-size: 1.05rem; padding: 10px 18px; }
    .header-icons-panel { gap: 24px; }
    .header-icon { width: 54px; height: 54px; font-size: 1.3rem; }
}

@media (max-width: 600px) {
    .header-title { font-size: 1.5rem; }
    .header-gradient-bar { width: 90px; height: 4px; }
    .header-subtitle { font-size: 0.9rem; }
    .header-menu-link { font-size: 0.93rem; padding: 7px 10px; }
    .header-icons-panel { gap: 12px; }
    .header-icon { width: 32px; height: 32px; font-size: 0.9rem; }
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

@media (max-width: 600px) {
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.company-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
}

@media (max-width: 600px) {
    .company-title {
        font-size: 1.4rem;
    }
}

.company-subtitle {
    font-size: 0.9rem;
    color: #8b8b9a;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 600px) {
    .company-subtitle {
        font-size: 0.8rem;
    }
}

/* Title Section */
.title-section {
    margin: 24px 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .title-section {
        margin: 20px 0 12px 0;
        gap: 12px;
    }
}

.title-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .title-icon-container {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .title-icon-container {
        gap: 8px;
    }
}

.title-icon {
    width: 44px;
    height: 44px;
    background: rgba(34,197,94,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 2px 12px 2px rgba(34,197,94,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.08);
    filter: blur(0.1px);
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    color: #22c55e;
}
.title-icon:nth-child(2) {
    background: rgba(107,114,128,0.10);
    color: #6b7280;
}
.title-icon:nth-child(3) {
    background: rgba(245,158,11,0.10);
    color: #f59e0b;
}
.title-icon:hover {
    background: rgba(34,197,94,0.18);
    box-shadow: 0 4px 18px 2px rgba(34,197,94,0.18);
    transform: scale(1.08);
}

.title {
    background: linear-gradient(90deg, #22c55e 30%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 0.2em;
    text-shadow: 0 2px 12px rgba(34,197,94,0.10);
}

.title-subtitle {
    color: #b6c2d1;
    font-size: 1.05rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px rgba(34,197,94,0.08);
}

.description {
    color: #b6b6c7;
    font-size: 1.05rem;
    text-align: center;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    line-height: 1.6;
    text-shadow: none;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.1rem;
    }
    .title-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    .title-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .title-section {
        gap: 7px;
    }
}

/* Açıklama ve alt başlık */
.title-subtitle, .description {
    color: #a1a1aa;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}

/* Arama kutusu ve filtreler - Yeni Modern Tasarım */
.search-container {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8) 0%, rgba(45, 55, 72, 0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(55, 65, 81, 0.6);
    padding: 32px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7) 0%, rgba(26, 31, 46, 0.8) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.search-input-group:focus-within {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 31, 46, 0.9) 100%);
}

.search-icon {
    position: absolute;
    left: 16px;
    font-size: 1.3rem;
    color: #9ca3af;
    z-index: 2;
    transition: color 0.3s ease;
}

.search-input-group:focus-within .search-icon {
    color: #22c55e;
}

.search-input {
    background: transparent;
    color: #e5e7eb;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    padding: 18px 20px 18px 50px;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
}

.search-filters {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-select {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7) 0%, rgba(26, 31, 46, 0.8) 100%);
    color: #e5e7eb;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    padding: 14px 20px;
    min-width: 180px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.filter-select:focus {
    border-color: #22c55e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 31, 46, 0.9) 100%);
}

.filter-select:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 31, 46, 0.9) 100%);
}

.clear-btn {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: #e5e7eb;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.clear-btn::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 ease;
}

.clear-btn:hover::before {
    left: 100%;
}

.clear-btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.search-stats {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-count {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7) 0%, rgba(26, 31, 46, 0.8) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(55, 65, 81, 0.5);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Main */
.main {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 0 auto;
    justify-items: center;
}

@media (max-width: 768px) {
    .main {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .main {
        gap: 16px;
    }
}

/* Footer */
.footer {
    color: #a1a1aa;
    text-align: center;
    font-size: 0.95rem;
    margin-top: 40px;
    padding: 18px 0 0 0;
    border-top: 1px solid #23272f;
    background: none;
}

.footer-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #16a34a;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.3) 100%);
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 12px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(22, 163, 74, 0.4) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

/* Kartlar - Standart ve Responsive */
.exchange-card {
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    margin-bottom: 20px;
    padding: 32px 28px 32px 28px;
    color: #fff;
    background: linear-gradient(135deg, #23272f 0%, #1a1f2e 100%);
    border: 3px solid #fbbf24;
    transition: all 0.3s cubic-bezier(.77,0,.18,1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}
.exchange-card:hover, .exchange-card:focus {
  box-shadow: 0 12px 36px 0 rgba(34,197,94,0.18), 0 2px 12px 0 rgba(0,0,0,0.18);
  border-color: #22c55e;
  background: linear-gradient(135deg, #23272f 0%, #223c2e 100%);
  transform: translateY(-6px) scale(1.025);
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

@media (max-width: 900px) {
    .exchange-card {
        min-width: 0;
        max-width: 100%;
        padding: 24px 10px 24px 10px;
    }
}

@media (max-width: 600px) {
    .exchange-card {
        min-width: 0;
        max-width: 100%;
        padding: 16px 4px 16px 4px;
        border-radius: 12px;
    }
}

/* Sağ üst bayrak */
.flag-top-right {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.exchange-card:hover .flag-top-right {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .flag-top-right {
        font-size: 2rem;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .flag-top-right {
        font-size: 1.8rem;
        top: 10px;
        right: 10px;
    }
}
.exchange-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}
.exchange-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.exchange-card.open {
    background: #1f2937;
    border: 2px solid #10b981;
}
.exchange-card.open::before {
    background: #10b981;
}
.exchange-card.closed {
    background: #1f2937;
    border: 2px solid #ef4444;
}
.exchange-card.closed::before {
    background: #ef4444;
}
.exchange-card.holiday {
    background: #1f2937;
    border: 2px solid #f59e0b;
}
.exchange-card.holiday::before {
    background: #f59e0b;
}

/* Kart başlıkları */
.code {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.name {
    font-size: 1rem;
    color: #d1d5db;
    font-weight: 600;
    margin-bottom: 16px;
}
.open-hours {
    color: #b6c2d1;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
}
.working-days {
    margin-top: 16px;
    margin-bottom: 20px;
}
.days-label {
    color: #b6c2d1;
    font-size: 0.8rem;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Badge ve butonlar */
.status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px auto 18px auto;
    min-width: 120px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.status-badge.open { 
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); 
    color: #fff; 
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.status-badge.closed { 
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); 
    color: #fff; 
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}
.status-badge.holiday { 
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); 
    color: #fff; 
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Sayaç kutusu */
.timer-container {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.7) 0%, rgba(26, 31, 46, 0.8) 100%);
    border-radius: 12px;
    padding: 16px 12px;
    color: #fff;
    margin-top: 16px;
    border: 1px solid rgba(55, 65, 81, 0.5);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.timer-label {
    color: #d1d5db;
    font-size: 0.95rem;
    font-weight: 500;
}
.timer-display {
    display: flex;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 6px;
}
.time-unit {
    text-align: center;
}
.time-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: #23272f;
    border-radius: 6px;
    padding: 4px 10px;
    min-width: 36px;
    transition: all 0.3s ease;
    border: 1.5px solid #374151;
}

/* Timer renkleri - Açılış */
.time-value.opening {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    border: 1.5px solid #22c55e;
}

/* Timer renkleri - Kapanış */
.time-value.closing {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    border: 1.5px solid #ef4444;
}

.time-label {
    font-size: 0.7rem;
    color: #a1a1aa;
    font-weight: 500;
}
.separator {
    color: #22c55e;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Separator renkleri */
.separator.opening {
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.separator.closing {
    color: #ef4444;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

/* Holiday Badge */
.holiday-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 1px solid #ef4444;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.holiday-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.holiday-icon {
    font-size: 1.2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holiday-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .holiday-badge {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .holiday-icon {
        font-size: 1.1rem;
    }
    
    .holiday-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .holiday-badge {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .holiday-icon {
        font-size: 1rem;
    }
    
    .holiday-text {
        font-size: 0.85rem;
    }
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Holiday Row */
.holiday-row {
    font-size: 1rem;
    color: #b0b0b8;
    font-weight: 400;
    margin-top: 8px;
} 

/* İletişim sayfası stilleri */
.nav-menu {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #b6c2d1;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-weight: 500;
    white-space: nowrap;
    font-size: 1.01rem;
    background: none;
    box-shadow: none;
}
.nav-link:hover {
    color: #22c55e;
    background: rgba(34,197,94,0.07);
    box-shadow: 0 2px 8px rgba(34,197,94,0.07);
}
.nav-link.active {
    color: #fff;
    background: linear-gradient(90deg, #22c55e 30%, #16a34a 100%);
    box-shadow: 0 2px 12px rgba(34,197,94,0.10);
}

@media (max-width: 768px) {
    .nav-link {
        padding: 7px 12px;
        font-size: 0.97rem;
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 6px 8px;
        font-size: 0.93rem;
    }
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h3 {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 10px;
}

.contact-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #232329;
    border: 1px solid #35353a;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d1d5db;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #d1d5db;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 1.2em;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.info-item {
    background: #232329;
    border: 1px solid #35353a;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 2rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.info-content h4 {
    color: #d1d5db;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-content p {
    color: #9ca3af;
    margin: 0;
}

/* Mesaj stilleri */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #6ee7b7;
}

.message-icon {
    font-size: 1.2em;
    flex-shrink: 0;
}

.message-text {
    font-weight: 500;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .contact-container {
        padding: 15px;
    }
    
    .contact-header h3 {
        font-size: 1.8rem;
    }
    
    .contact-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 20px;
        border-radius: 10px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .info-item {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon {
        font-size: 1.8rem;
    }
    
    .info-content h4 {
        font-size: 1rem;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 10px;
        margin-top: 15px;
    }
    
    .nav-link {
        text-align: center;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .message {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .message-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 10px;
    }
    
    .contact-header {
        margin-bottom: 30px;
    }
    
    .contact-header h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .contact-header p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 5px;
    }
    
    .contact-form {
        padding: 16px;
        border-radius: 8px;
        margin-bottom: 30px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .btn-icon {
        font-size: 1.1em;
    }
    
    .contact-info {
        gap: 12px;
        margin-top: 25px;
    }
    
    .info-item {
        padding: 14px;
        gap: 10px;
        border-radius: 8px;
    }
    
    .info-icon {
        font-size: 1.6rem;
    }
    
    .info-content h4 {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }
    
    .info-content p {
        font-size: 0.85rem;
    }
    
    .nav-menu {
        gap: 8px;
        margin-top: 12px;
    }
    
    .nav-link {
        padding: 5px 10px;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .message {
        padding: 10px 14px;
        gap: 6px;
        border-radius: 6px;
        margin-bottom: 16px;
    }
    
    .message-icon {
        font-size: 1.1em;
    }
    
    .message-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .contact-container {
        padding: 8px;
    }
    
    .contact-header h3 {
        font-size: 1.4rem;
    }
    
    .contact-header p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .info-icon {
        font-size: 1.4rem;
    }
    
    .nav-link {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* Tam Ekran Modal Stilleri */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #35353a;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid #35353a;
    background: rgba(255, 255, 255, 0.02);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-flag {
    font-size: 3rem;
    flex-shrink: 0;
}

.modal-exchange-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    margin: 0;
    letter-spacing: -1px;
}

.modal-exchange-info p {
    font-size: 1.2rem;
    color: #9ca3af;
    margin: 5px 0 0 0;
}

.modal-close {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: 65vh;
    padding-bottom: 24px;
}

.modal-status {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.modal-status-badge {
    padding: 12px 30px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-status-badge.open {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border: 2px solid #22c55e;
}
.modal-status-badge.closed {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: 2px solid #ef4444;
}
.modal-status-badge.holiday {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    border: 2px solid #fbbf24;
}

.status-icon {
    font-size: 1.5em;
}

.modal-timer-section {
    text-align: center;
    margin-bottom: 40px;
}

.modal-timer-label {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 20px;
    font-weight: 500;
}

.modal-timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.modal-timer-display .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.modal-timer-display .time-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

/* Modal Timer renkleri - Açılış */
.modal-timer-display .time-value.opening {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: 2px solid #22c55e;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* Modal Timer renkleri - Kapanış */
.modal-timer-display .time-value.closing {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    border: 2px solid #f87171;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.modal-timer-display .time-label {
    font-size: 0.9rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.modal-timer-display .separator {
    font-size: 2.5rem;
    color: #fbbf24;
    font-weight: bold;
    margin: 0 5px;
    transition: all 0.3s ease;
}

/* Modal Separator renkleri */
.modal-timer-display .separator.opening {
    color: #22c55e;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.modal-timer-display .separator.closing {
    color: #ef4444;
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

.modal-details {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #35353a;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #9ca3af;
    font-weight: 500;
    font-size: 1rem;
}

.detail-value {
    color: #d1d5db;
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        gap: 15px;
    }
    
    .modal-flag {
        font-size: 2.5rem;
    }
    
    .modal-exchange-info h2 {
        font-size: 2rem;
    }
    
    .modal-exchange-info p {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-status-badge {
        padding: 10px 20px;
        font-size: 1.1rem;
    }
    
    .modal-timer-display .time-value {
        font-size: 2rem;
        padding: 12px 16px;
        min-width: 60px;
    }
    
    .modal-timer-display .separator {
        font-size: 2rem;
    }
    
    .modal-timer-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98vw;
        max-height: 98vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-flag {
        font-size: 2rem;
    }
    
    .modal-exchange-info h2 {
        font-size: 1.8rem;
    }
    
    .modal-exchange-info p {
        font-size: 0.9rem;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-status {
        margin-bottom: 20px;
    }
    
    .modal-status-badge {
        padding: 8px 16px;
        font-size: 1rem;
    }
    
    .modal-timer-display {
        gap: 10px;
    }
    
    .modal-timer-display .time-value {
        font-size: 1.5rem;
        padding: 8px 12px;
        min-width: 50px;
    }
    
    .modal-timer-display .time-label {
        font-size: 0.8rem;
    }
    
    .modal-timer-display .separator {
        font-size: 1.5rem;
    }
    
    .modal-timer-label {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .modal-details {
        padding: 15px;
    }
    
    .detail-item {
        padding: 8px 0;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .modal-content {
        width: 99vw;
        max-height: 99vh;
        border-radius: 10px;
    }
    
    .modal-header {
        padding: 12px;
        gap: 12px;
    }
    
    .modal-title {
        gap: 8px;
    }
    
    .modal-flag {
        font-size: 1.8rem;
    }
    
    .modal-exchange-info h2 {
        font-size: 1.6rem;
    }
    
    .modal-exchange-info p {
        font-size: 0.85rem;
    }
    
    .modal-body {
        padding: 12px;
    }
    
    .modal-status {
        margin-bottom: 15px;
    }
    
    .modal-status-badge {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .modal-timer-display {
        gap: 8px;
    }
    
    .modal-timer-display .time-value {
        font-size: 1.3rem;
        padding: 6px 10px;
        min-width: 45px;
    }
    
    .modal-timer-display .time-label {
        font-size: 0.75rem;
    }
    
    .modal-timer-display .separator {
        font-size: 1.3rem;
    }
    
    .modal-timer-label {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .modal-details {
        padding: 12px;
    }
    
    .detail-item {
        padding: 6px 0;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.85rem;
    }
}

.compact-header {
    margin-bottom: 18px;
    padding: 0 0 0 0;
    background: none;
    box-shadow: none;
    text-align: left;
}
.compact-header-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}
.compact-header-icons {
    display: flex;
    gap: 7px;
}
.compact-header-icon {
    font-size: 1.3rem;
    background: #23272f;
    color: #22c55e;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px #22c55e22;
}
.compact-header-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-left: 2px;
}
.compact-header-menu {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}
.compact-header-link {
    color: #b6c2d1;
    background: none;
    border-radius: 8px;
    padding: 5px 14px;
    font-weight: 600;
    font-size: 0.98rem;
    border: none;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    outline: none;
}
.compact-header-link.active {
    background: #232009;
    color: #fbbf24;
}
.compact-header-link:hover {
    color: #22c55e;
    background: #23272f;
}
.compact-header-desc {
    color: #b6b6c7;
    font-size: 0.98rem;
    font-weight: 500;
    margin: 6px 0 0 0;
    letter-spacing: 0.01em;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .compact-header-title { font-size: 1.05rem; }
    .compact-header-icon { width: 22px; height: 22px; font-size: 0.9rem; }
    .compact-header-desc { font-size: 0.89rem; }
    .compact-header-link { font-size: 0.89rem; padding: 4px 8px; }
    .compact-header-row { gap: 7px; }
} 

/* Sidebar (Sol Açılır Menü) */
.sidebar-toggle {
    position: fixed;
    top: 32px;
    right: 32px;
    left: auto;
    z-index: 2002;
    background: none;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
@media (max-width: 900px) {
    .sidebar-toggle {
        top: 18px;
        right: 18px;
        left: auto;
    }
}
@media (max-width: 600px) {
    .sidebar-toggle {
        top: 10px;
        right: 10px;
        left: auto;
        width: 40px;
        height: 40px;
    }
}

.sidebar-hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
}
.sidebar-hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #22c55e;
    border-radius: 2px;
    transition: all 0.3s;
}
.sidebar-toggle:hover .sidebar-hamburger span {
    background: #16a34a;
}

/* Hamburger animasyonu (açıkken X şekline dönüşsün) */
.sidebar.open + .sidebar-toggle .sidebar-hamburger span:nth-child(1),
body.sidebar-open .sidebar-toggle .sidebar-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.sidebar.open + .sidebar-toggle .sidebar-hamburger span:nth-child(2),
body.sidebar-open .sidebar-toggle .sidebar-hamburger span:nth-child(2) {
    opacity: 0;
}
.sidebar.open + .sidebar-toggle .sidebar-hamburger span:nth-child(3),
body.sidebar-open .sidebar-toggle .sidebar-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Sidebar açıkken kulakçık ikonunu döndür */
.sidebar.open + .sidebar-toggle .sidebar-hamburger::before,
body.sidebar-open .sidebar-toggle .sidebar-hamburger::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Sidebar açıkken toggle butonunun konumunu ayarla */
body.sidebar-open .sidebar-toggle {
    left: 240px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -260px;
    left: auto;
    width: 220px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1f2e 80%, #23272f 100%);
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
    z-index: 2000;
    padding: 0;
    transition: right 0.3s cubic-bezier(.77,0,.18,1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Sidebar açık durumu */
.sidebar.open {
    right: 0;
    left: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 18px 18px 10px 18px;
    letter-spacing: -0.5px;
    background: none;
    margin-bottom: 0;
    margin-top: 60px;
    position: relative;
    justify-content: flex-start;
    border-bottom: 1px solid #23272f;
    min-height: 48px;
}
.sidebar-header::before {
    content: none;
}
.sidebar-header::after { content: none; }
.sidebar-menu {
    list-style: none;
    padding: 0 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.sidebar-link {
    color: #b6c2d1;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 10px 0;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    display: block;
    text-align: center;
    background: none;
    margin: 0 12px;
}
.sidebar-link.active {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 1.13rem;
    font-weight: 900;
    border-radius: 6px;
    box-shadow: 0 2px 12px #22c55e33;
    text-align: center;
    width: auto;
    margin: 0 12px;
}
.sidebar-link:hover {
    background: #23272f;
    color: #22c55e;
}
@media (max-width: 600px) {
    .sidebar {
        width: 80vw;
        max-width: 300px;
        min-width: 140px;
        right: -80vw;
        left: auto;
    }
    body.sidebar-open .sidebar-toggle {
        right: calc(80vw + 20px);
        left: auto;
    }
    .sidebar-header {
        font-size: 0.93rem;
        padding: 12px 10px 8px 10px;
        min-height: 36px;
    }
    .sidebar-header::before {
        font-size: 0.9rem;
        width: 15px;
        height: 15px;
    }
    .sidebar-link {
        font-size: 0.93rem;
        padding: 8px 0;
        margin: 0 6px;
    }
    .sidebar-link.active {
        font-size: 1rem;
        margin: 0 6px;
    }
    .sidebar-menu {
        gap: 5px;
        margin-top: 8px;
    }
}

body.sidebar-open {
    overflow: hidden;
}

/* Arama kutusu üstte ve menüyle hizalı */
.search-top {
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    width: 100%;
    z-index: 1;
}
@media (max-width: 900px) {
    .search-top { margin-top: 18px; }
}
@media (max-width: 600px) {
    .search-top { margin-top: 12px; }
}

/* Sidebar açıkken arka planı karart */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 1999;
    display: none;
}
.sidebar-backdrop.open {
    display: block;
} 

.page-title-bar {
    flex-direction: column;
    align-items: center;
    display: flex;
    width: 100%;
}
.page-title {
    font-size: 2.1rem;
    font-weight: 900;
    background: linear-gradient(90deg, #22c55e 0%, #fbbf24 50%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 4px 24px rgba(34,197,94,0.15);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 900px) {
  .page-title { font-size: 2.7rem; }
}
@media (max-width: 600px) {
  .page-title { font-size: 1.5rem; }
}
.page-desc {
    font-size: 1.25rem;
    margin-top: 18px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #4ade80 0%, #fef08a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: block;
    width: 100%;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 600px) {
    .page-desc {
        font-size: 1rem;
        margin-top: 12px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.working-days, .open-hours, .timer-container {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  display: flex;
  flex-direction: column;
}

/* --- RESPONSIVE GELİŞTİRMELER VE DÜZELTMELER --- */

@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
  .main {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 8px 0 0 0;
  }
  .main {
    max-width: 100vw;
    padding: 0 0 0 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .search-container {
    padding: 12px 2vw;
    border-radius: 14px;
    margin-bottom: 18px;
    min-width: 0;
    max-width: 100vw;
  }
  .exchange-card {
    min-width: 0;
    max-width: 98vw;
    width: 100%;
    padding: 10px 2vw;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .footer {
    padding: 10px 0 0 0;
    font-size: 0.85rem;
  }
  .sidebar {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    right: -100vw !important;
    left: auto !important;
    top: 0;
    height: 100vh;
    border-radius: 0 0 0 0;
    box-shadow: none;
    z-index: 2001;
  }
  .sidebar.open {
    right: 0 !important;
    left: auto !important;
    top: 0;
    height: 100vh;
  }
  .sidebar-backdrop {
    z-index: 2000;
    display: none;
    background: rgba(0,0,0,0.45);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
  .sidebar-backdrop.open {
    display: block;
  }
  body.sidebar-open {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100vw;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 4px 0 0 0;
  }
  .main {
    gap: 8px;
  }
  .search-container {
    padding: 8px 1vw;
    border-radius: 8px;
  }
  .exchange-card {
    padding: 6px 1vw;
    border-radius: 7px;
    font-size: 0.97rem;
  }
  .sidebar {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    right: -100vw !important;
    left: auto !important;
    top: 0;
    height: 100vh;
    border-radius: 0 0 0 0;
    box-shadow: none;
    z-index: 2001;
  }
  .sidebar.open {
    right: 0 !important;
    left: auto !important;
    top: 0;
    height: 100vh;
  }
  .sidebar-backdrop {
    z-index: 2000;
    display: none;
    background: rgba(0,0,0,0.45);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
  .sidebar-backdrop.open {
    display: block;
  }
  body.sidebar-open {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100vw;
  }
}

@media (max-width: 360px) {
  .container, .main, .search-container, .exchange-card {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .exchange-card {
    font-size: 0.92rem;
  }
}

/* Sidebar'ın üstte tam yükseklikte ve kolayca dokunulabilir olması için ek düzeltmeler */
.sidebar {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

/* Sidebar menü linklerinin mobilde daha büyük ve kolay tıklanabilir olması için */
@media (max-width: 600px) {
  .sidebar-link {
    font-size: 1.1em;
    padding: 14px 0;
    margin: 0 8px;
  }
} 

@media (max-width: 900px) {
  .sidebar.open {
    right: 0 !important;
    left: auto !important;
  }
}
@media (max-width: 600px) {
  .sidebar.open {
    right: 0 !important;
    left: auto !important;
  }
}

.sidebar {
  z-index: 2000;
}

/* Sidebar her zaman açılabilsin diye en başa ekleniyor */
.sidebar.open {
  right: 0 !important;
  left: auto !important;
  z-index: 2000;
}

/* ... existing code ... */
.fullscreen-modal .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-radius: 8px;
    background: #2a3140;
    transition: background 0.2s;
    font-size: 0.95rem;
}
.fullscreen-modal .detail-item:not(:last-child) {
    margin-bottom: 8px;
}
.fullscreen-modal .detail-label {
    font-weight: 600;
    color: #a1a1aa;
}
.fullscreen-modal .detail-value {
    font-weight: 500;
    color: #e5e7eb;
}

/* Sessions Table */
.modal-sessions {
    margin-top: 24px;
    padding: 24px;
    background: #1c212e;
    border-radius: 12px;
    border: 1px solid #374151;
}

.sessions-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 16px;
    text-align: left;
    border-bottom: 2px solid #374151;
    padding-bottom: 8px;
}

.sessions-table-container {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 8px;
}

.sessions-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.sessions-table th,
.sessions-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #374151;
}

.sessions-table th {
    background-color: #2a3140;
    color: #d1d5db;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1;
}

.sessions-table tbody tr:nth-child(even) {
    background-color: #2a3140;
}

.sessions-table tbody tr:hover {
    background-color: #374151;
}

.sessions-table td:nth-child(1) {
    font-weight: 600;
    color: #a5b4fc;
}

.sessions-table td:nth-child(2) {
    color: #f59e0b;
    font-family: 'Courier New', Courier, monospace;
}

.sessions-table td:nth-child(3) {
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.4;
}

/* Scrollbar styles */
.sessions-table-container::-webkit-scrollbar {
    width: 8px;
}
.sessions-table-container::-webkit-scrollbar-track {
    background: #1c212e;
    border-radius: 8px;
}
.sessions-table-container::-webkit-scrollbar-thumb {
    background-color: #4b5563;
    border-radius: 8px;
    border: 2px solid #1c212e;
}
.sessions-table-container::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
}


@media (max-width: 768px) {
    .fullscreen-modal .modal-content {
// ... existing code ...
        max-width: 95%;
        padding: 20px;
    }
    .fullscreen-modal .modal-title h2 {
        font-size: 1.5rem;
    }
    .fullscreen-modal .modal-timer-display {
        flex-direction: column;
        gap: 16px;
    }
    .fullscreen-modal .time-unit {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
    }
    .fullscreen-modal .time-value {
        font-size: 2rem;
    }
    .fullscreen-modal .time-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 8px 0 0 0;
        max-width: 100vw;
    }
    .main {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 100vw;
        padding: 0 0 0 0;
    }
    .exchange-card {
        min-width: 0;
        max-width: 100vw;
        width: 100%;
        padding: 14px 2vw;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .header-title { font-size: 2.1rem; }
    .header-icons-panel { gap: 16px; }
    .header-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .header-menu-link { font-size: 1rem; padding: 8px 12px; }
    .search-container { padding: 12px 2vw; border-radius: 14px; margin-bottom: 18px; }
}

@media (max-width: 600px) {
    .container {
        padding: 4px 0 0 0;
        max-width: 100vw;
    }
    .main {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 100vw;
        padding: 0 0 0 0;
    }
    .exchange-card {
        min-width: 0;
        max-width: 100vw;
        width: 100%;
        padding: 8px 1vw;
        border-radius: 7px;
        font-size: 0.97rem;
    }
    .header-title { font-size: 1.3rem; }
    .header-icons-panel { gap: 8px; }
    .header-icon { width: 28px; height: 28px; font-size: 0.8rem; }
    .header-menu-link { font-size: 0.93rem; padding: 6px 8px; }
    .search-container { padding: 8px 1vw; border-radius: 8px; }
    .search-input { font-size: 0.95rem; padding: 10px 10px 10px 36px; }
    .filter-select { font-size: 0.93rem; padding: 8px 10px; min-width: 100px; }
    .clear-btn { padding: 8px 12px; font-size: 0.93rem; }
    .result-count { font-size: 0.85rem; padding: 6px 10px; }
    .footer { padding: 10px 0 0 0; font-size: 0.85rem; }
    .modal-content {
        width: 98vw;
        max-width: 98vw;
        max-height: 98vh;
        border-radius: 12px;
        padding: 0;
    }
    .modal-header {
        padding: 10px 10px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .modal-title { gap: 8px; }
    .modal-flag { font-size: 1.5rem; }
    .modal-exchange-info h2 { font-size: 1.1rem; }
    .modal-exchange-info p { font-size: 0.8rem; }
    .modal-close { width: 32px; height: 32px; font-size: 1rem; }
    .modal-body {
        padding: 8px 2vw;
        max-height: 60vh;
        font-size: 0.93rem;
    }
    .sessions-title { font-size: 1.1rem; }
    .sessions-table th, .sessions-table td { padding: 6px 4px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .container { padding: 2px 0 0 0; }
    .main { gap: 4px; }
    .exchange-card { padding: 4px 1vw; border-radius: 5px; font-size: 0.92rem; }
    .header-title { font-size: 1.1rem; }
    .header-menu-link { font-size: 0.85rem; padding: 4px 6px; }
    .search-container { padding: 4px 0.5vw; border-radius: 6px; }
    .modal-content { border-radius: 8px; }
    .modal-header { padding: 6px 4px; }
    .modal-body { padding: 4px 1vw; font-size: 0.89rem; }
    .sessions-title { font-size: 0.95rem; }
    .sessions-table th, .sessions-table td { padding: 4px 2px; font-size: 0.8rem; }
}

@media (max-width: 360px) {
    .container, .main, .search-container, .exchange-card { padding-left: 0 !important; padding-right: 0 !important; }
    .exchange-card { font-size: 0.88rem; }
    .modal-content { border-radius: 5px; }
    .modal-header { padding: 2px 2px; }
    .modal-body { padding: 2px 0.5vw; font-size: 0.85rem; }
}

@media (max-width: 600px) {
    .modal-timer-section {
        margin-bottom: 10px;
    }
    .modal-timer-label {
        font-size: 0.93rem;
        margin-bottom: 4px;
    }
    .modal-timer-display {
        flex-direction: row !important;
        gap: 4px !important;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
    }
    .modal-timer-display .time-unit,
    .modal-timer-display .separator {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    .modal-timer-display .time-value {
        font-size: 0.95rem !important;
        min-width: 18px !important;
        padding: 1px 3px !important;
        border-radius: 3px !important;
    }
    .modal-timer-display .time-label {
        font-size: 0.6rem !important;
    }
    .modal-timer-display .separator {
        font-size: 1rem !important;
        margin: 0 1px !important;
    }
}

@media (max-width: 400px) {
    .modal-timer-display .time-value {
        font-size: 0.8rem !important;
        min-width: 12px !important;
        padding: 0 2px !important;
    }
    .modal-timer-display .time-label {
        font-size: 0.5rem !important;
    }
}

.session-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 2.8em;
  transition: max-height 0.3s;
  position: relative;
}
.session-description.expanded {
  -webkit-line-clamp: unset;
  max-height: 100em;
  overflow: visible;
}
.show-more-link {
  color: #22c55e;
  font-size: 0.92em;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 4px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  display: inline;
}

/* --- SIDEBAR Z-INDEX FIX FOR MOBILE --- */
@media (max-width: 900px) {
  .sidebar {
    z-index: 2001 !important;
  }
  .sidebar.open {
    z-index: 2001 !important;
  }
  .sidebar-backdrop {
    z-index: 2000 !important;
  }
  .sidebar-toggle {
    z-index: 2002 !important;
  }
}
@media (max-width: 600px) {
  .sidebar {
    z-index: 2001 !important;
  }
  .sidebar.open {
    z-index: 2001 !important;
  }
  .sidebar-backdrop {
    z-index: 2000 !important;
  }
  .sidebar-toggle {
    z-index: 2002 !important;
  }
}
@media (max-width: 480px) {
  .sidebar {
    z-index: 2001 !important;
  }
  .sidebar.open {
    z-index: 2001 !important;
  }
  .sidebar-backdrop {
    z-index: 2000 !important;
  }
  .sidebar-toggle {
    z-index: 2002 !important;
  }
}
/* --- END SIDEBAR Z-INDEX FIX --- */

