/* İnegöl Belediyesi Etkinlik Sistemi V2 - Modern Tasarım */
:root {
    --primary: #1553a4;
    --primary-dark: #0d3d7a;
    --primary-light: #2196f3;
    --accent: #00bcd4;
    --accent-light: #4dd0e1;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
    --info: #03a9f4;
    --light: #f5f7fa;
    --dark: #1a1a2e;
    --gray: #607d8b;
    --gray-light: #90a4ae;
    --border: #e0e6ed;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1553a4 0%, #2196f3 100%);
    --gradient-accent: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%);
    --gradient-hero: linear-gradient(135deg, #1553a4 0%, #0d3d7a 50%, #1a1a2e 100%);
    --shadow-sm: 0 2px 8px rgba(21, 83, 164, 0.08);
    --shadow-md: 0 4px 20px rgba(21, 83, 164, 0.12);
    --shadow-lg: 0 8px 40px rgba(21, 83, 164, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    min-height: 100vh;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}
.header .container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 72px; 
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    text-decoration: none; 
    color: var(--primary); 
}
.logo svg { transition: transform 0.3s ease; }
.logo:hover svg { transform: scale(1.05); }
.logo span { 
    font-weight: 700; 
    font-size: 15px; 
    line-height: 1.3; 
    letter-spacing: -0.3px;
}
.logo small { 
    font-weight: 500; 
    color: var(--gray); 
    font-size: 11px; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link { 
    color: var(--dark); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 15px; 
    padding: 10px 18px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
.nav-link:hover { 
    color: var(--primary); 
    background: rgba(21, 83, 164, 0.06);
}
.nav-profile { 
    display: flex; 
    align-items: center; 
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-lg) !important;
}
.nav-profile:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 10px;
    color: var(--primary);
}
.mobile-menu { 
    display: none; 
    background: var(--white); 
    border-top: 1px solid var(--border);
    padding: 16px 0;
}
.mobile-menu.active { display: block; }
.mobile-nav-link { 
    display: block; 
    padding: 14px 24px; 
    color: var(--dark); 
    text-decoration: none; 
    font-weight: 500;
    transition: all 0.2s;
}
.mobile-nav-link:hover {
    background: rgba(21, 83, 164, 0.06);
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    padding: 14px 28px; 
    border: none; 
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 15px; 
    font-weight: 600; 
    cursor: pointer; 
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: var(--radius-md); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-primary { 
    background: var(--gradient-primary); 
    color: var(--white); 
    box-shadow: 0 4px 15px rgba(21, 83, 164, 0.3);
}
.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(21, 83, 164, 0.4);
}
.btn-accent { 
    background: var(--gradient-accent); 
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}
.btn-success { 
    background: var(--success); 
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}
.btn-danger { 
    background: var(--danger); 
    color: var(--white);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}
.btn-outline { 
    background: transparent; 
    border: 2px solid var(--primary); 
    color: var(--primary); 
}
.btn-outline:hover { 
    background: var(--primary); 
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== FORMS ==================== */
.form-group { margin-bottom: 24px; }
.form-group label { 
    display: block; 
    margin-bottom: 10px; 
    font-weight: 600; 
    color: var(--dark);
    font-size: 14px;
}
.form-control {
    width: 100%; 
    padding: 16px 20px; 
    border: 2px solid var(--border); 
    border-radius: var(--radius-md);
    font-family: inherit; 
    font-size: 16px; 
    transition: all 0.3s ease;
    background: var(--white);
}
.form-control:focus { 
    outline: none; 
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(21, 83, 164, 0.1);
}
.form-control-lg { padding: 20px 24px; font-size: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ==================== ALERTS ==================== */
.alert { 
    padding: 18px 24px; 
    border-radius: var(--radius-md); 
    margin-bottom: 24px; 
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid;
}
.alert-success { 
    background: rgba(76, 175, 80, 0.1); 
    color: #2e7d32;
    border-left-color: var(--success);
}
.alert-danger { 
    background: rgba(244, 67, 54, 0.1); 
    color: #c62828;
    border-left-color: var(--danger);
}
.alert-warning { 
    background: rgba(255, 152, 0, 0.1); 
    color: #ef6c00;
    border-left-color: var(--warning);
}
.alert-info { 
    background: rgba(3, 169, 244, 0.1); 
    color: #0277bd;
    border-left-color: var(--info);
}

/* ==================== HERO ==================== */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--light);
    border-radius: 50% 50% 0 0;
    transform: scaleX(1.5);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { 
    font-size: 52px; 
    margin-bottom: 20px; 
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero p { 
    font-size: 20px; 
    opacity: 0.9; 
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) { 
    .hero { padding: 60px 0 80px; } 
    .hero h1 { font-size: 32px; } 
    .hero p { font-size: 16px; }
}

/* ==================== SECTIONS ==================== */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-title { 
    font-size: 36px; 
    color: var(--primary); 
    margin-bottom: 16px; 
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.page-title { 
    font-size: 36px; 
    color: var(--primary); 
    margin-bottom: 32px;
    font-weight: 700;
}

/* ==================== EVENTS GRID ==================== */
.events-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 28px; 
}
.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
}
.event-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.event-image { 
    position: relative; 
    aspect-ratio: 16/10; 
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    overflow: hidden;
}
.event-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.4s ease;
}
.event-card:hover .event-image img {
    transform: scale(1.05);
}
.event-placeholder { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100%; 
    color: rgba(255,255,255,0.5);
}
.event-placeholder svg { width: 56px; height: 56px; }
.event-category { 
    position: absolute; 
    top: 16px; 
    left: 16px; 
    background: var(--white);
    color: var(--primary);
    padding: 6px 14px; 
    border-radius: var(--radius-lg);
    font-size: 12px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}
.event-badge { 
    position: absolute; 
    top: 16px; 
    right: 16px; 
    padding: 6px 14px; 
    border-radius: var(--radius-lg);
    font-size: 12px; 
    font-weight: 700;
    text-transform: uppercase;
}
.event-badge.sold-out { background: var(--danger); color: var(--white); }
.event-badge.limited { background: var(--warning); color: var(--dark); }
.event-content { padding: 24px; }
.event-content h3 { 
    font-size: 20px; 
    color: var(--dark); 
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}
.event-meta { 
    display: flex; 
    gap: 20px; 
    font-size: 14px; 
    color: var(--gray); 
    margin-bottom: 12px;
}
.event-meta span { display: flex; align-items: center; gap: 6px; }
.event-meta svg { color: var(--primary); }
.event-venue { font-size: 14px; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.event-capacity { margin-top: 16px; }
.capacity-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.capacity-fill { height: 100%; background: var(--gradient-primary); border-radius: 4px; transition: width 0.5s ease; }
.event-capacity span { font-size: 13px; color: var(--gray); margin-top: 8px; display: block; font-weight: 500; }

/* ==================== FILTER BAR ==================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; justify-content: center; }
.filter-btn { 
    padding: 12px 24px; 
    border: 2px solid var(--border); 
    border-radius: var(--radius-xl);
    background: var(--white); 
    color: var(--dark); 
    font-size: 14px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(21, 83, 164, 0.05); }
.filter-btn.active { border-color: var(--primary); background: var(--gradient-primary); color: var(--white); box-shadow: var(--shadow-md); }

/* ==================== STEPS ==================== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
.step { 
    text-align: center; 
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.step-number { 
    width: 64px; height: 64px; 
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center; 
    font-size: 26px; font-weight: 800; 
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(21, 83, 164, 0.25);
}
.step h3 { color: var(--dark); margin-bottom: 12px; font-size: 20px; font-weight: 700; }
.step p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ==================== AUTH ==================== */
.auth-section { 
    min-height: calc(100vh - 72px); 
    display: flex; align-items: center; justify-content: center; 
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--light) 0%, #e8f4fc 100%);
}
.auth-container { 
    background: var(--white); padding: 48px; 
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%; max-width: 440px;
    border: 1px solid var(--border);
}
.auth-container-wide { max-width: 540px; }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-container h1 { text-align: center; color: var(--primary); margin-bottom: 12px; font-size: 28px; font-weight: 700; }
.auth-subtitle { text-align: center; color: var(--gray); margin-bottom: 36px; font-size: 15px; line-height: 1.6; }
.auth-form { margin-bottom: 24px; }
.auth-note { text-align: center; font-size: 13px; color: var(--gray); line-height: 1.6; }
.auth-note a { color: var(--primary); font-weight: 600; text-decoration: none; }
.auth-note a:hover { text-decoration: underline; }

.phone-input-wrapper { display: flex; align-items: center; }
.phone-prefix { 
    background: var(--light);
    border: 2px solid var(--border); border-right: none; 
    padding: 16px 14px; 
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--gray); font-weight: 600;
}
.phone-input-wrapper .form-control { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

.otp-inputs { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; }
.otp-input { 
    width: 56px; height: 64px; 
    text-align: center; font-size: 28px; font-weight: 700; 
    border: 2px solid var(--border); border-radius: var(--radius-md);
    transition: all 0.3s ease; color: var(--primary);
}
.otp-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(21, 83, 164, 0.1); }

/* ==================== EVENT DETAIL ==================== */
.event-detail { 
    background: var(--white); border-radius: var(--radius-xl);
    padding: 40px; box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.event-detail-header { display: grid; grid-template-columns: 340px 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 900px) { .event-detail-header { grid-template-columns: 1fr; } }
.event-detail-image { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: var(--gradient-primary); }
.event-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.event-placeholder-lg { display: flex; align-items: center; justify-content: center; height: 100%; color: rgba(255,255,255,0.4); }
.event-placeholder-lg svg { width: 80px; height: 80px; }
.event-category-badge { 
    display: inline-block; 
    background: var(--gradient-primary); color: var(--white);
    padding: 8px 18px; border-radius: var(--radius-lg);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.event-detail-info h1 { font-size: 32px; color: var(--dark); margin-bottom: 20px; font-weight: 800; line-height: 1.2; }
.event-detail-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 20px; }
.meta-item { display: flex; align-items: center; gap: 10px; color: var(--gray); font-weight: 500; }
.meta-item svg { color: var(--primary); }
.event-description { color: var(--dark); margin-bottom: 28px; font-size: 16px; line-height: 1.7; }
.event-stats { display: flex; gap: 40px; padding-top: 24px; border-top: 2px solid var(--border); }
.stat { text-align: center; }
.stat-value { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 13px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }

/* ==================== SEAT SELECTION ==================== */
.seat-selection { margin-top: 40px; padding-top: 40px; border-top: 2px solid var(--border); }
.seat-selection h2 { color: var(--primary); margin-bottom: 12px; font-size: 24px; font-weight: 700; }
.seat-info { color: var(--gray); margin-bottom: 24px; font-size: 15px; }
.seat-legend { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 28px; padding: 20px 24px; background: var(--light); border-radius: var(--radius-md); }
.seat-legend span { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.seat-icon { width: 28px; height: 28px; border-radius: 6px; }
.seat-icon.available { background: var(--success); }
.seat-icon.selected { background: var(--primary); }
.seat-icon.occupied { background: var(--gray-light); }
.seat-icon.protocol { background: var(--accent); }

.stage-area { 
    background: var(--gradient-hero); color: var(--white);
    text-align: center; padding: 16px; 
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 700; letter-spacing: 3px; font-size: 14px;
    margin-bottom: 24px;
}

.seat-grid-wrapper { overflow-x: auto; padding: 24px 0; background: var(--light); border-radius: var(--radius-md); margin-bottom: 24px; }
.seat-grid { display: flex; flex-direction: column; gap: 6px; min-width: fit-content; padding: 20px; }
.seat-row { display: flex; gap: 6px; align-items: center; justify-content: center; min-height: 36px; }
.empty-row { min-height: 20px; }
.row-label { min-width: 36px; text-align: center; font-weight: 700; color: var(--gray); font-size: 13px; }

.seat {
    width: 32px; height: 32px; 
    border: none; border-radius: 6px; cursor: pointer;
    font-size: 11px; font-weight: 700; color: var(--white);
    transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center;
}
.seat-gap { width: 32px; height: 32px; }
.seat-available { background: var(--success); }
.seat-available:hover { background: #43a047; transform: scale(1.15); box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4); }
.seat-selected { background: var(--primary); box-shadow: 0 4px 12px rgba(21, 83, 164, 0.4); }
.seat-occupied { background: var(--gray-light); cursor: not-allowed; opacity: 0.7; }
.seat-protocol { background: var(--accent); cursor: not-allowed; }

.selected-seats-summary { 
    background: linear-gradient(135deg, rgba(21, 83, 164, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
    padding: 24px; border-radius: var(--radius-md);
    margin: 24px 0; border: 2px solid var(--primary);
}
.selected-seats-summary h3 { font-size: 18px; margin-bottom: 16px; color: var(--primary); }
.selected-seat-tag { 
    display: inline-block; background: var(--gradient-primary); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-md);
    margin: 4px; font-size: 14px; font-weight: 700;
}

/* ==================== TICKET MANAGEMENT ==================== */
.ticket-event-info { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 32px; border-radius: var(--radius-lg);
    margin-bottom: 32px; color: var(--white);
}
.ticket-event-info h2 { color: var(--white); margin-bottom: 12px; font-size: 24px; }
.ticket-event-info .event-meta { color: rgba(255,255,255,0.8); }
.ticket-event-info .event-meta svg { color: var(--accent-light); }
.tickets-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.ticket-item { 
    display: flex; align-items: center; gap: 24px; 
    background: var(--white); padding: 24px; 
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}
.ticket-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.ticket-item.ticket-inactive { opacity: 0.6; }
.ticket-checkbox { flex-shrink: 0; }
.ticket-checkbox input { width: 22px; height: 22px; cursor: pointer; accent-color: var(--primary); }
.ticket-qr { 
    flex-shrink: 0; width: 100px; height: 100px; 
    background: var(--light); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
}
.ticket-qr img { width: 100%; height: 100%; object-fit: contain; }
.qr-placeholder { color: var(--danger); }
.ticket-info { flex: 1; }
.ticket-code { 
    font-size: 24px; font-weight: 800; color: var(--primary);
    font-family: 'Monaco', 'Consolas', monospace; letter-spacing: 2px;
}
.ticket-seat { color: var(--gray); margin: 8px 0; font-weight: 500; }
.ticket-status { 
    display: inline-block; padding: 6px 16px; 
    border-radius: var(--radius-lg);
    font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.status-confirmed { background: rgba(76, 175, 80, 0.15); color: #2e7d32; }
.status-checked_in { background: rgba(3, 169, 244, 0.15); color: #0277bd; }
.status-cancelled { background: rgba(244, 67, 54, 0.15); color: #c62828; }
.status-no_show { background: rgba(255, 152, 0, 0.15); color: #ef6c00; }
.cancel-actions { display: flex; gap: 16px; justify-content: flex-end; }
.back-link { margin-top: 40px; text-align: center; }
.back-link a { color: var(--primary); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.back-link a:hover { text-decoration: underline; }

/* ==================== PROFILE ==================== */
.profile-header { 
    display: flex; align-items: center; gap: 24px; 
    background: var(--gradient-primary);
    padding: 32px; border-radius: var(--radius-xl);
    margin-bottom: 32px; color: var(--white);
}
.profile-avatar { 
    width: 80px; height: 80px; 
    background: rgba(255,255,255,0.2); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center; 
    font-size: 28px; font-weight: 800;
    border: 3px solid rgba(255,255,255,0.3);
}
.profile-info { flex: 1; }
.profile-info h1 { font-size: 28px; color: var(--white); margin-bottom: 6px; }
.profile-info p { color: rgba(255,255,255,0.8); font-weight: 500; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-bottom: 40px; }
.stat-card { 
    background: var(--white); padding: 28px; 
    border-radius: var(--radius-lg); text-align: center;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card .stat-value { font-size: 40px; font-weight: 800; color: var(--primary); }
.stat-card .stat-label { color: var(--gray); font-size: 14px; font-weight: 600; margin-top: 8px; }
.stat-card.stat-danger .stat-value { color: var(--danger); }

.profile-section { 
    background: var(--white); padding: 32px; 
    border-radius: var(--radius-lg); margin-bottom: 24px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.profile-section h2 { color: var(--primary); margin-bottom: 24px; font-size: 22px; font-weight: 700; }

.upcoming-events { display: flex; flex-direction: column; gap: 20px; }
.upcoming-event-card { 
    border: 2px solid var(--border); border-radius: var(--radius-lg);
    padding: 24px; transition: all 0.3s ease;
}
.upcoming-event-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.event-card-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 12px; }
.event-card-header h3 { font-size: 20px; color: var(--dark); font-weight: 700; }
.ticket-count { 
    background: var(--gradient-primary); color: var(--white);
    padding: 6px 14px; border-radius: var(--radius-lg);
    font-size: 12px; font-weight: 700;
}
.event-card-meta { display: flex; gap: 20px; color: var(--gray); font-size: 14px; margin-bottom: 16px; font-weight: 500; }
.event-card-tickets { margin-bottom: 20px; }
.ticket-tag { 
    display: inline-block; background: var(--light);
    padding: 6px 14px; border-radius: var(--radius-md);
    font-size: 13px; font-weight: 600; margin: 4px;
    color: var(--primary); border: 1px solid var(--border);
}

.empty-state { text-align: center; padding: 60px 20px; color: var(--gray); }
.empty-state svg { margin-bottom: 20px; color: var(--border); width: 64px; height: 64px; }
.empty-state h3 { color: var(--dark); margin-bottom: 12px; font-size: 20px; }
.empty-state p { margin-bottom: 24px; }

.penalty-list, .past-events { display: flex; flex-direction: column; gap: 12px; }
.penalty-item, .past-event-item { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 16px 20px; background: var(--light); border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
.penalty-item:hover, .past-event-item:hover { background: rgba(21, 83, 164, 0.05); }
.penalty-item.penalty-used { opacity: 0.6; }
.penalty-status { font-size: 12px; font-weight: 700; color: var(--danger); text-transform: uppercase; }
.penalty-item.penalty-used .penalty-status { color: var(--gray); }

/* ==================== KONTROL ==================== */
.kontrol-body { background: var(--gradient-hero); min-height: 100vh; }
.kontrol-login { max-width: 420px; margin: 0 auto; padding: 80px 20px; }
.kontrol-logo { text-align: center; margin-bottom: 40px; }
.kontrol-login h1 { color: var(--white); text-align: center; font-size: 32px; margin-bottom: 12px; }
.kontrol-login p { color: rgba(255,255,255,0.7); text-align: center; margin-bottom: 40px; }
.kontrol-login .form-control { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--white); }
.kontrol-login .form-control::placeholder { color: rgba(255,255,255,0.5); }
.kontrol-login .form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.2); }
.kontrol-login .form-group label { color: rgba(255,255,255,0.9); }
.kontrol-login .alert { margin-bottom: 24px; }

.kontrol-container { max-width: 520px; margin: 0 auto; padding: 24px; }
.kontrol-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.kontrol-header h1 { color: var(--white); font-size: 26px; }
.kontrol-tabs { display: flex; gap: 12px; margin-bottom: 24px; }
.tab-btn { 
    flex: 1; padding: 16px; 
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: var(--white); font-size: 15px; font-weight: 700; 
    border-radius: var(--radius-md); cursor: pointer;
    transition: all 0.3s ease;
}
.tab-btn:hover { background: rgba(255,255,255,0.15); }
.tab-btn.active { background: var(--white); color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

#qr-reader { width: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.qr-hint { color: rgba(255,255,255,0.7); text-align: center; margin-top: 16px; font-weight: 500; }
.qr-error { color: var(--danger); text-align: center; padding: 48px; background: var(--white); border-radius: var(--radius-lg); }

.manual-form { background: var(--white); padding: 32px; border-radius: var(--radius-lg); }
.manual-form .form-control { text-align: center; font-size: 24px; letter-spacing: 4px; font-weight: 700; color: var(--primary); }
.manual-form .btn { margin-top: 20px; }

.result-card { padding: 40px; border-radius: var(--radius-lg); text-align: center; margin-bottom: 24px; }
.result-success { background: rgba(76, 175, 80, 0.15); border: 2px solid var(--success); }
.result-warning { background: rgba(255, 152, 0, 0.15); border: 2px solid var(--warning); }
.result-error { background: rgba(244, 67, 54, 0.15); border: 2px solid var(--danger); }
.result-icon svg { width: 72px; height: 72px; }
.result-success .result-icon { color: var(--success); }
.result-warning .result-icon { color: var(--warning); }
.result-error .result-icon { color: var(--danger); }
.result-message { font-size: 24px; font-weight: 700; margin-top: 16px; color: var(--dark); }
.result-detail { font-size: 15px; margin-top: 12px; opacity: 0.8; }

.ticket-details { background: var(--white); padding: 28px; border-radius: var(--radius-lg); margin-bottom: 24px; }
.detail-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: none; }
.detail-row span { color: var(--gray); font-weight: 500; }
.detail-row strong { color: var(--dark); }

.checkin-form { margin-bottom: 16px; }

/* ==================== FOOTER ==================== */
.footer { 
    background: var(--gradient-hero); color: var(--white);
    padding: 60px 0 24px; margin-top: 80px;
}
.footer-content { display: flex; justify-content: space-between; align-items: start; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand strong { display: block; font-size: 18px; font-weight: 700; }
.footer-brand p { opacity: 0.7; font-size: 14px; margin-top: 4px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; opacity: 0.6; }

@media (max-width: 768px) {
    .footer-content { flex-direction: column; gap: 32px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-muted { color: var(--gray); }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 28px; }
.mb-3 { margin-bottom: 20px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.event-card, .step, .stat-card { animation: fadeIn 0.6s ease forwards; }
html { scroll-behavior: smooth; }

/* ==================== CALENDAR ==================== */
.calendar-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 20px 0 20px;
    position: relative;
    overflow: hidden;
}
.calendar-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.calendar-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.calendar-hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.calendar-hero-text h1 span {
    color: var(--accent-light);
}
.calendar-hero-text p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 24px;
}
.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.9;
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}
.calendar-stats {
    display: flex;
    gap: 20px;
}
.stat-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}
.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-light);
}
.stat-text {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .calendar-hero-content { flex-direction: column; text-align: center; }
    .calendar-hero-text h1 { font-size: 32px; }
    .calendar-legend { justify-content: center; }
    .calendar-stats { justify-content: center; }
}

.calendar-section {
    padding: 60px 0 80px;
    background: var(--light);
}
.calendar-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: var(--gradient-primary);
    color: var(--white);
}
.calendar-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}
.calendar-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}
.calendar-today-link {
    text-align: center;
    padding: 12px;
    background: var(--light);
}
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--light);
    border-bottom: 2px solid var(--border);
}
.weekday {
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.weekday.weekend {
    color: var(--primary);
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.calendar-day {
    min-height: 120px;
    padding: 8px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    transition: all 0.2s ease;
    position: relative;
}
.calendar-day:nth-child(7n) {
    border-right: none;
}
.calendar-day:hover {
    background: rgba(21, 83, 164, 0.02);
}
.calendar-day.other-month {
    background: var(--light);
    opacity: 0.5;
}
.calendar-day.today {
    background: rgba(21, 83, 164, 0.05);
}
.calendar-day.today .day-number {
    background: var(--primary);
    color: var(--white);
}
.calendar-day.past {
    opacity: 0.6;
}
.calendar-day.weekend {
    background: rgba(21, 83, 164, 0.02);
}
.calendar-day.has-events {
    cursor: pointer;
}
.day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    border-radius: 50%;
    margin-bottom: 6px;
}
.day-events {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.day-event {
    display: block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    overflow: hidden;
}
.day-event:hover {
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.event-time {
    font-weight: 700;
    margin-right: 4px;
}
.event-title {
    opacity: 0.95;
}
.more-events {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    padding: 2px 8px;
}

/* Month Events List (Mobile) */
.month-events-list {
    margin-top: 40px;
}
.month-events-list h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}
.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.event-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}
.event-list-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.event-date-box {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.event-day {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}
.event-month {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.9;
}
.event-list-content {
    flex: 1;
}
.event-list-content h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}
.event-list-meta {
    display: flex;
    gap: 16px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}
.event-list-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.event-category-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.event-list-arrow {
    flex-shrink: 0;
    color: var(--gray-light);
    transition: all 0.3s ease;
}
.event-list-item:hover .event-list-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .calendar-day { min-height: 80px; padding: 4px; }
    .day-number { width: 24px; height: 24px; font-size: 12px; }
    .day-event { padding: 2px 4px; font-size: 9px; }
    .event-time { display: none; }
    .calendar-title { font-size: 20px; }
    .calendar-header { padding: 16px 20px; }
    .weekday { padding: 10px 4px; font-size: 11px; }
    .event-list-item { padding: 16px; gap: 12px; }
    .event-date-box { width: 52px; height: 52px; }
    .event-day { font-size: 20px; }
}


.event-list-item {
    /* Mevcut flex yapısını koruyoruz, align-items center önemli */
    align-items: center; 
}

.event-countdown-box {
    margin-left: auto; /* Sağa yaslar */
    margin-right: 20px; /* Ok işaretinden biraz boşluk */
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 120px; /* Sabit genişlik hizalamayı düzeltir */
}

.countdown-label {
    font-size: 11px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.countdown-timer {
    font-size: 14px;
    font-weight: 700;
    color: #e91e63; /* Örnek kırmızı renk, temanıza göre değiştirebilirsiniz */
    background: #fdf2f6; /* Hafif bir arka plan */
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .event-list-item {
        flex-wrap: wrap; /* Mobilde sığmazsa alta geçsin */
    }
    
    .event-countdown-box {
        margin-left: 0; /* Mobilde sola dayalı olsun */
        margin-top: 10px;
        width: 100%; /* Tam genişlik */
        flex-direction: row; /* Yan yana */
        align-items: center;
        gap: 10px;
    }
    
    .countdown-timer {
        font-size: 13px;
    }
}




.modern-slider-section {
    background: #ffffff; /* Temiz beyaz veya çok açık gri */
    padding: 40px 0 60px;
    border-bottom: 1px solid #e0e6ed;
}

.modern-slider-container {
    padding: 10px 20px 20px 20px; /* Gölgelerin kesilmemesi için padding */
}

/* Header ve Kontroller */
.section-header-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header-simple h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e6ed;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* --- KART YAPISI --- */
.modern-card {
    display: block;
    background: #fff;
    border-radius: 12px; /* Oval köşeler */
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Hafif gölge */
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 220px; /* Kart yüksekliği */
}

.modern-card:hover {
    transform: translateY(-5px); /* Üzerine gelince yukarı kalkar */
    box-shadow: 0 10px 25px rgba(0,0,0,0.12); /* Gölge belirginleşir */
}

/* Renkli Üst Alan */
.card-header-color {
    height: 100px;
    position: relative;
    /* Kategori rengi inline style ile gelecek */
}

/* Tarih Kutusu */
.card-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #333;
    min-width: 50px;
}
.card-date-badge .day {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}
.card-date-badge .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* Kategori Etiketi */
.card-category-tag {
    position: absolute;
    bottom: -12px; /* Çizgiyi ortalar */
    right: 15px;
    background: #fff;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

/* Alt Bilgi */
.card-body {
    padding: 20px 15px 15px;
}

.card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 satırdan fazlasını gizle */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px; /* Başlık hizalaması için */
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-meta svg {
    color: var(--gray-light);
}

/* Mobil Ayarı */
@media (max-width: 768px) {
    .section-header-simple h3 { font-size: 20px; }
    .swiper-button-prev-custom, .swiper-button-next-custom { display: none; } /* Mobilde okları gizle, parmakla kaydırılır */
    .card-body h4 { font-size: 15px; }
}

/* --- YENİ YATAY & İNCE SLIDER --- */

.sleek-slider-section {
    background: #fff;
    padding: 30px 0 50px; /* Üst-alt boşluk */
    /* Alt sınır çizgisi isteğe bağlı */
    border-bottom: 1px solid #f1f1f1;
}

/* Başlık Ortala */
.section-header-centered {
    text-align: flex-start;
    margin-bottom: 30px;
}

.section-header-centered h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Slider Kapsayıcı: Ortada dursun */
.sleek-slider-wrapper {
    max-width: 1400px; /* Çok geniş ekranlarda yayılmasın */
    margin: 0 auto;    /* Ortala */
    padding: 10px;     /* Gölgeler kesilmesin */
}

/* --- KART TASARIMI (YATAY) --- */
.sleek-card {
    display: flex; /* Yan yana dizilim */
    align-items: stretch; /* Yükseklikleri eşitle */
    background: #fff;
    border-radius: 10px; /* Hafif oval */
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* Çok hafif gölge */
    transition: all 0.3s ease;
    height: 90px; /* KART YÜKSEKLİĞİ: Buradan inceliği ayarlayabilirsin */
}

.sleek-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Sol Taraf: Tarih Kutusu */
.sleek-date-box {
    width: 70px; /* Genişlik sabit */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* Rengi inline style'dan alıyor */
}

.sleek-date-box .day {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.sleek-date-box .month {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
    opacity: 0.9;
}

/* Sağ Taraf: İçerik */
.sleek-content {
    flex: 1;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikey ortala */
}

.sleek-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.sleek-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.3;
    /* Uzun başlıkları kes */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sleek-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sleek-meta .separator {
    font-size: 8px; /* Nokta küçülsün */
    color: #ccc;
}

/* Slider Noktaları (Pagination) */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    bottom: 0 !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Mobil Ayar */
@media (max-width: 768px) {
    .sleek-card { height: 80px; } /* Mobilde daha da ince */
    .sleek-date-box { width: 60px; }
    .sleek-content h4 { font-size: 13px; }
}
