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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --border-color: #e5e7eb;
    --text-color: #374151;
    --text-light: #6b7280;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

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

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

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

/* Header */
.main-header {
    background: white;
    color: var(--text-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

@media (min-width: 769px) {
    .header-content {
        justify-content: space-between;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .main-nav {
        margin-left: auto;
        justify-content: flex-end;
        flex: 0 0 auto;
    }
}

/* Mobil Menü Toggle Butonu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
        padding-right: 60px; /* Menü butonu için alan */
    }
    
    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .logo-images {
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100%;
        margin: 0 auto;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
    
    .mobile-menu-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-images {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    height: 60px;
    width: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

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

.logo-images a {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.logo-images a:hover .header-logo {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

@media (max-width: 768px) {
    .main-nav {
        display: none !important;
        width: 100%;
        gap: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        padding: 1rem 0;
        margin-top: 0.5rem;
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: flex !important;
    }

    .main-nav a {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
        order: 1;
    }
    
    /* Sonuçlar ve Yarışmaya Başvur butonlarını en alta al */
    .main-nav a.nav-results-btn,
    .main-nav a.nav-apply-btn {
        order: 999;
        margin-top: 0.5rem;
        border-top: 2px solid var(--border-color);
        border-bottom: none;
        padding: 1rem 1.5rem;
        justify-content: center;
        font-weight: 600;
    }
    
    .main-nav a.nav-results-btn {
        order: 998;
    }
    
    .main-nav a.nav-apply-btn {
        order: 999;
    }
    
    .main-nav a:not(.nav-results-btn):not(.nav-apply-btn):last-child {
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav a:hover {
        background: var(--light-color);
    }
    
    .main-nav a.nav-results-btn:hover {
        background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
        background-color: #d97706 !important;
    }
    
    .main-nav a.nav-apply-btn:hover {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
        background-color: var(--primary-color) !important;
    }
}

@media (max-width: 480px) {
    .main-nav {
        gap: 0.5rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav .nav-dropdown > a {
    position: relative;
}

.main-nav a i {
    font-size: 0.9rem;
}

.main-nav a:hover {
    background: var(--light-color);
}

.main-nav a.nav-results-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    background-color: #d97706 !important;
}

.main-nav a.nav-apply-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
    background-color: var(--primary-color) !important;
}

/* Navigasyon Dropdown Menü */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    cursor: pointer;
    pointer-events: auto;
}

.nav-dropdown-toggle .nav-chevron {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: none;
}

.nav-dropdown-toggle .nav-chevron.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .nav-dropdown-toggle .nav-chevron.mobile-only {
        display: inline-block;
    }
}

.nav-dropdown-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 10000;
    overflow: hidden;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }
    
    .nav-dropdown-menu {
        display: none !important;
        position: static;
        width: 100%;
        min-width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--light-color);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: block !important;
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .nav-dropdown-item {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none !important;
    }
    
    .nav-chevron {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .nav-chevron {
        transform: rotate(180deg);
    }
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown menü ile toggle arasında boşluk için padding */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    z-index: 9999;
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.nav-dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.nav-dropdown-item i {
    margin-right: 0.5rem;
    color: var(--danger-color);
}


/* Yarışma Kılavuzu Butonu - Giriş Butonu Stili */
header.main-header nav.main-nav a.btn-guide,
header.main-header nav.main-nav button.btn-guide,
.main-header .main-nav .btn-guide,
.main-nav a.btn-guide,
.main-nav button.btn-guide,
a.btn-guide,
button.btn-guide,
nav.main-nav a.btn-guide,
nav.main-nav button.btn-guide {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25) !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    border: none !important;
    margin-left: 0.5rem !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
}

.main-nav .btn-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.main-nav .btn-guide:hover::before {
    left: 100%;
}

header.main-header nav.main-nav a.btn-guide:hover,
header.main-header nav.main-nav button.btn-guide:hover,
.main-header .main-nav .btn-guide:hover,
.main-nav a.btn-guide:hover,
.main-nav button.btn-guide:hover,
a.btn-guide:hover,
button.btn-guide:hover,
nav.main-nav a.btn-guide:hover,
nav.main-nav button.btn-guide:hover {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
    background-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
    transform: translateY(-1px) !important;
}

.main-nav .btn-guide:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.3) !important;
    background: linear-gradient(90deg, #1d4ed8 0%, #1e40af 100%) !important;
}

.main-nav .btn-guide i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Yarışma Kılavuzu Dropdown */
.guide-dropdown {
    position: relative;
    display: inline-block;
}

.guide-dropdown-toggle {
    cursor: pointer;
}

.guide-dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.guide-dropdown-menu.show {
    display: block !important;
    animation: fadeInDown 0.3s ease;
}

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

.guide-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.guide-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.guide-dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.guide-dropdown-item i {
    margin-right: 0.5rem;
    color: var(--danger-color);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Responsive Yarışma Kılavuzu Butonu */
@media (max-width: 768px) {
    .main-nav .btn-guide {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-nav .btn-guide {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    .main-nav .btn-guide i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
}
    color: var(--primary-color);
    transform: translateY(-2px);
}

.admin-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    background: transparent;
    margin-top: 10px;
    padding: 20px 20px 20px 20px;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 1280px;
    max-width: 100%;
    height: 620px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    background: white;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
}

.slide:not(.active) .slide-link {
    pointer-events: none;
    z-index: 1;
}

.slide img {
    width: 1280px;
    height: 620px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

@media (max-width: 1280px) {
    .slide img {
        width: 100%;
        height: 100%;
    }
}

.slide.active img {
    transform: scale(1);
}

.slide-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    z-index: 6;
    pointer-events: none;
}

.slide-title-content {
    max-width: 1200px;
    margin: 0 auto;
}

.slide-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.2;
    animation: slideTitleFadeIn 0.8s ease-out;
}

@keyframes slideTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide:not(.active) .slide-title-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.slide.active .slide-title-overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease 0.3s, visibility 0.6s ease 0.3s;
}

/* Responsive slider title */
@media (max-width: 768px) {
    .slide-title-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .slide-title-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--secondary-color);
}

.slider-btn:active {
    transform: scale(1.05) translateY(0);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.dot.active {
    background: white;
    transform: scale(1.4);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Countdown Section */
.countdown-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, transparent 0%, var(--light-color) 100%);
    position: relative;
    width: 100%;
    margin-top: 0;
    z-index: 2;
}

.countdown-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .countdown-wrapper {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .countdown-wrapper {
        padding: 1rem 0.75rem;
    }
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .countdown-title {
        font-size: 1.5rem;
    margin-bottom: 1rem;
}

    .countdown-title i {
    font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .countdown-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .countdown-title i {
        font-size: 1rem;
    }
}

.countdown-title i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .countdown-container {
        gap: 0.25rem;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 0.15rem;
        flex-wrap: nowrap;
        padding: 0 0.25rem;
    }
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .countdown-item {
        padding: 0.75rem 0.5rem;
        min-width: 55px;
        max-width: 55px;
        border-radius: 10px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 0.6rem 0.4rem;
        min-width: 50px;
        max-width: 50px;
        border-radius: 8px;
        flex-shrink: 0;
    }
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .countdown-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 480px) {
    .countdown-number {
        font-size: 1.25rem;
        margin-bottom: 0.15rem;
    }
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0.5rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .countdown-separator {
        font-size: 1rem;
        margin: 0 0.15rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .countdown-separator {
        font-size: 0.85rem;
        margin: 0 0.1rem;
        flex-shrink: 0;
    }
}

.countdown-target {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Frontend Yatay Zaman Çizelgesi */
.timeline-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    margin-top: 0;
}

.timeline-section .container {
    padding: 0 20px;
}

.timeline-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.timeline-section-header h2 {
    color: var(--dark-color);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.timeline-section-header h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.frontend-timeline-container {
    width: 100%;
    padding: 2rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.05);
}

.frontend-timeline-container::-webkit-scrollbar {
    height: 8px;
}

.frontend-timeline-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.frontend-timeline-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.frontend-timeline-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.frontend-timeline-wrapper {
    display: flex;
    align-items: flex-start;
    min-width: fit-content;
    padding: 2rem 1rem;
    position: relative;
}

.frontend-timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 220px;
    flex-shrink: 0;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.frontend-timeline-item:nth-child(odd) { animation-delay: 0.1s; }
.frontend-timeline-item:nth-child(even) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.frontend-timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 4px solid white;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1.25rem;
}

.frontend-marker-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.frontend-timeline-item:hover .frontend-timeline-marker {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.frontend-timeline-arrow {
    width: 100px;
    height: 2px;
    margin: 0 0.6rem;
    margin-top: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.frontend-timeline-arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--secondary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.frontend-timeline-arrow i {
    display: none;
}

.frontend-timeline-content {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    position: relative;
}

.frontend-timeline-item:hover .frontend-timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.frontend-timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.frontend-timeline-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.frontend-timeline-month {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.frontend-timeline-year {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0.8;
}

.frontend-timeline-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frontend-timeline-time {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--light-color);
    padding: 0.4rem 0.85rem;
    border-radius: 18px;
    margin-top: 0.4rem;
}

.frontend-timeline-time i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.frontend-timeline-item.past .frontend-timeline-content {
    opacity: 0.6;
    background: #f9fafb;
}

.frontend-timeline-item.past .frontend-timeline-marker {
    opacity: 0.5;
}

.frontend-timeline-item.today .frontend-timeline-content {
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.frontend-timeline-item.today .frontend-timeline-marker {
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
    animation: frontendPulse 2s infinite;
}

@keyframes frontendPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(37, 99, 235, 0.9);
    }
}

.timeline-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.timeline-empty i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.timeline-empty p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 2rem 0;
    }
    
    .timeline-section-header h2 {
        font-size: 1.35rem;
    }
    
    .timeline-section-header h2 i {
        font-size: 1.25rem;
    }
    
    .frontend-timeline-wrapper {
        padding: 1.5rem 0.5rem;
    }
    
    .frontend-timeline-item {
        min-width: 150px;
        max-width: 180px;
    }
    
    .frontend-timeline-marker {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
        border-width: 3px;
    }
    
    .frontend-marker-dot {
        width: 10px;
        height: 10px;
    }
    
    .frontend-timeline-arrow {
        width: 60px;
        margin: 0 0.4rem;
        margin-top: 22px;
    }
    
    .frontend-timeline-arrow i {
        font-size: 0.75rem;
        padding: 0.2rem;
    }
    
    .frontend-timeline-content {
        padding: 1rem;
    }
    
    .frontend-timeline-day {
        font-size: 1.75rem;
    }
    
    .frontend-timeline-month {
        font-size: 0.8rem;
    }
    
    .frontend-timeline-year {
        font-size: 0.7rem;
    }
    
    .frontend-timeline-title {
        font-size: 0.85rem;
        min-height: 2.2rem;
    }
    
    .frontend-timeline-time {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

@media (max-width: 480px) {
    .frontend-timeline-item {
        min-width: 130px;
        max-width: 160px;
    }
    
    .frontend-timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .frontend-timeline-day {
        font-size: 1.5rem;
    }
    
    .frontend-timeline-title {
        font-size: 0.8rem;
        min-height: 2rem;
    }
    
    .frontend-timeline-arrow {
        width: 50px;
    }
}

/* Sections */
.announcements-section,
.categories-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.categories-section {
    background: white;
}

.section-title-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

/* Announcements Grid - Ana sayfa için yatay scroll */
.announcements-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.announcements-grid::-webkit-scrollbar {
    height: 8px;
}

.announcements-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

.announcements-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.announcements-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Announcements Grid Full - Tüm duyurular sayfası için 3 sütunlu grid */
.announcements-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.announcements-grid-full .announcement-card-link {
    flex: none;
    min-width: auto;
    width: 100%;
}

.announcement-card {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    flex: 0 0 350px;
    min-width: 350px;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.announcement-card:hover::before {
    transform: scaleY(1);
}

.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.announcement-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-date i {
    font-size: 0.85rem;
}

.announcement-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.announcement-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.announcement-card-preview {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0 0.25rem;
}
.announcement-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color, #1a73e8);
    margin-top: 0.5rem;
    transition: gap 0.2s;
}
.announcement-card-link:hover .announcement-read-more {
    gap: 0.5rem;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.announcement-card:hover .read-more-link {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.read-more-link i {
    font-size: 0.8rem;
}

.announcement-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 0 0 350px;
    min-width: 350px;
}

/* Categories Grid */
.categories-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.categories-grid::-webkit-scrollbar {
    height: 8px;
}

.categories-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 0 0 250px;
    min-width: 250px;
}

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* No Content */
.no-content {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

/* Home Page Sections */
.home-sections {
    padding: 4rem 0;
    background: var(--light-color);
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.home-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.home-card:hover::before {
    transform: scaleX(1);
}

.home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.home-card-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-card-icon i {
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.home-card:hover .home-card-icon i {
    transform: scale(1.1) rotate(5deg);
}

.home-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.home-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.home-card .btn {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Announcement Detail Page */
.announcement-detail-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.announcement-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.announcement-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.announcement-detail-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.announcement-detail-date i {
    font-size: 0.9rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-4px);
}

.announcement-detail-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.announcement-gallery {
    margin-bottom: 2rem;
}
.announcement-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.announcement-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f8f9fa;
}
.announcement-gallery-link {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.announcement-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.announcement-gallery-link:hover img {
    transform: scale(1.05);
}
@media (max-width: 600px) {
    .announcement-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.announcement-detail-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.announcement-detail-content p { margin: 0 0 1rem; }
.announcement-detail-content p:last-child { margin-bottom: 0; }
.announcement-detail-content h2 { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.announcement-detail-content h3 { font-size: 1.25rem; margin: 1.25rem 0 0.5rem; }
.announcement-detail-content h4 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }
.announcement-detail-content ul, .announcement-detail-content ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.announcement-detail-content li { margin-bottom: 0.35rem; }
.announcement-detail-content blockquote { margin: 1rem 0; padding: 0.5rem 1rem; border-left: 4px solid var(--primary-color, #333); background: rgba(0,0,0,0.04); }
.announcement-detail-content a { color: var(--primary-color, #1a73e8); text-decoration: underline; }
.announcement-detail-content a:hover { text-decoration: none; }
.announcement-detail-content img { max-width: 100%; height: auto; border-radius: 4px; }
.announcement-detail-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.announcement-detail-content th, .announcement-detail-content td { border: 1px solid #ddd; padding: 0.5rem 0.75rem; text-align: left; }
.announcement-detail-content strong { font-weight: 700; }
.announcement-detail-content code, .announcement-detail-content .ql-code-block { background: rgba(0,0,0,0.06); padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.95em; }

/* Category Detail Page */
.category-detail-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.category-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.category-detail-header {
    margin-bottom: 2rem;
}

.category-detail-content {
    text-align: center;
}

.category-detail-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-detail-icon i {
    font-size: 5rem;
}

.category-detail-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

.category-detail-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.category-detail-short {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
}

.category-detail-short p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.category-detail-description {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
}

.category-detail-description h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-detail-description h3 i {
    color: var(--primary-color);
}

.detail-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.detail-content p { margin: 0 0 1rem; }
.detail-content p:last-child { margin-bottom: 0; }
.detail-content h2 { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.detail-content h3 { font-size: 1.25rem; margin: 1.25rem 0 0.5rem; }
.detail-content h4 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }
.detail-content ul, .detail-content ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.detail-content li { margin-bottom: 0.35rem; }
.detail-content blockquote { margin: 1rem 0; padding: 0.5rem 1rem; border-left: 4px solid var(--primary-color, #333); background: rgba(0,0,0,0.04); }
.detail-content a { color: var(--primary-color, #1a73e8); text-decoration: underline; }
.detail-content a:hover { text-decoration: none; }
.detail-content img { max-width: 100%; height: auto; border-radius: 4px; }
.detail-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.detail-content th, .detail-content td { border: 1px solid #ddd; padding: 0.5rem 0.75rem; text-align: left; }
.detail-content strong { font-weight: 700; }
.detail-content code, .detail-content .ql-code-block { background: rgba(0,0,0,0.06); padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.95em; }

.category-detail-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-label {
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label i {
    color: var(--primary-color);
}

.info-value {
    color: var(--dark-color);
    font-weight: 600;
}

.info-value code {
    background: var(--light-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Footer */
/* Sabit "Bize Ulaşın" butonu - sağ alt, scroll'da sabit */
.fixed-contact-btn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color, #1a73e8);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.fixed-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    color: #fff !important;
}
.fixed-contact-btn i {
    font-size: 1.1rem;
}
@media (max-width: 480px) {
    .fixed-contact-btn span { display: none; }
    .fixed-contact-btn { padding: 0.85rem 1rem; border-radius: 50%; }
    .fixed-contact-btn i { font-size: 1.25rem; margin: 0; }
}

.main-footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        padding: 10px;
    }
    
    .slider-container {
        height: auto;
        aspect-ratio: 1280 / 620;
        border-radius: 15px;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        max-height: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-container:hover {
        transform: none !important;
    }
    
    .announcement-card,
    .announcement-card-link {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .category-card-link {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.25rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .category-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .category-detail-title {
        font-size: 1.75rem;
    }
    
    .category-detail-icon {
        font-size: 3rem;
    }
    
    .category-detail-icon i {
        font-size: 3rem;
    }
    
    .category-detail-info {
        flex-direction: column;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
    
    .announcements-grid-full {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .announcement-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .announcement-detail-title {
        font-size: 1.75rem;
    }
    
    .announcement-detail-content {
        font-size: 1rem;
    }
    
    .announcement-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-images {
        gap: 0.75rem;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
}

/* Yarışma Kılavuzu Butonu - Son Öncelik (En Son Yüklenen) */
body header.main-header .container .header-content nav.main-nav a.btn-guide,
body header.main-header .container .header-content nav.main-nav button.btn-guide {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}

body header.main-header .container .header-content nav.main-nav a.btn-guide:hover,
body header.main-header .container .header-content nav.main-nav button.btn-guide:hover {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
    background-color: #2563eb !important;
}

/* Mobil Responsive İyileştirmeleri */
@media (max-width: 768px) {
    .main-header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-images {
        gap: 0.75rem;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
    
    .main-nav {
        width: 100%;
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-nav a {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border-color);
        border-radius: 6px;
    }
    
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu {
        transform: translateY(0);
    }
    
    .hero-slider {
        padding: 10px;
    }
    
    .slider-container {
        border-radius: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .countdown-section {
        padding: 1.5rem 1rem;
    }
    
    .countdown-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .countdown-title {
        font-size: 1.25rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .announcements-scroll,
    .categories-scroll {
        padding: 1rem 0;
    }
    
    .announcement-card,
    .category-card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding-right: 50px; /* Menü butonu için alan */
    }
    
    .header-logo {
        height: 40px;
        width: 40px;
    }
    
    .logo-images {
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .main-header {
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        right: 10px;
        font-size: 1.25rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .hero-slider {
        padding: 5px;
    }
    
    .slider-container {
        border-radius: 10px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slide-title {
        font-size: 1.25rem;
    }
    
    .slide-title-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .countdown-section {
        padding: 1rem 0.75rem;
    }
    
    .countdown-wrapper {
        padding: 1rem 0.75rem;
    }
    
    .countdown-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.75rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1.25rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .announcement-card,
    .category-card {
        min-width: 250px;
        padding: 1rem;
    }
    
    .announcement-card h3,
    .category-card h3 {
        font-size: 1.1rem;
    }
    
    .main-footer {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
}

/* Başvuru Butonu (Menüde) */
.nav-results-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-results-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    background-color: #d97706 !important;
    color: white !important;
}

.nav-results-btn i {
    font-size: 1rem;
}

.nav-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    margin-left: auto;
    white-space: nowrap;
}

.nav-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
    background-color: var(--primary-color) !important;
    color: white !important;
}

.nav-apply-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .nav-results-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
    }
    
    .nav-apply-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
    }
}

/* İstatistikler Dashboard - Modern ve Anlaşılır Tasarım */
.stats-dashboard-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.stats-dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .stats-dashboard {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .stats-dashboard {
        padding: 0 10px;
    }
}

/* Özet İstatistikler */
.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Dashboard Paneller */
.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-panel:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.panel-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.panel-header i {
    font-size: 1.3rem;
}

.panel-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.panel-body {
    padding: 2rem;
    max-height: 500px;
    overflow-y: auto;
}

/* Kategori Listesi */
.category-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.category-item-modern:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.category-name-modern {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

.category-count-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.category-count-modern .count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.category-count-modern .count-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Okul Listesi */
.school-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.school-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--light-color);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.school-item-modern:hover {
    transform: translateX(5px);
    background: rgba(30, 64, 175, 0.05);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.school-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.school-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.school-name-modern {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.school-count-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.school-count-modern .count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.school-count-modern .count-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Panel Scrollbar Stili */
.panel-body::-webkit-scrollbar {
    width: 8px;
}

.panel-body::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.panel-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.panel-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* No Content */
.dashboard-panel .no-content {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.dashboard-panel .no-content i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.dashboard-panel .no-content p {
    font-size: 1rem;
    margin: 0;
}

/* Kategorilere Göre İstatistikler */
.category-stats-section {
    padding: 4rem 0;
    background: white;
}

.category-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    color: white;
}

.category-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-stat-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-stat-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Toplam İstatistikler Bölümü - Modern Tasarım */
.total-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.total-stats-modern {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.total-stats-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-modern-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.stat-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.stat-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.stat-modern-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.stat-modern-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

.stat-modern-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.stat-modern-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-modern-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Kategori Dağılımı - Modern */
.category-distribution-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.category-distribution-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.category-distribution-header i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.category-distribution-header span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.category-distribution-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.category-distribution-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-distribution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.category-distribution-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.category-distribution-item:hover::before {
    left: 100%;
}

.category-dist-name {
    font-size: 0.95rem;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.category-dist-badge {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    min-width: 35px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

/* Kategori Dağılımı */
.category-breakdown {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.category-breakdown-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.category-breakdown-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.category-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.category-breakdown-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.category-breakdown-name {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.category-breakdown-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    min-width: 40px;
    text-align: center;
}

.total-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.total-stat-item.category-stats-item {
    flex: 2;
    min-width: 400px;
}

.total-stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.total-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Kategori İstatistikleri (Tek Satır) */
.category-stats-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-inline-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.category-inline-name {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.category-inline-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    min-width: 30px;
    text-align: center;
}

.category-separator {
    color: var(--text-light);
    font-weight: 300;
    margin: 0 0.25rem;
}

.no-category {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-dashboard-section {
        padding: 2.5rem 0;
    }
    
    .dashboard-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .summary-value {
        font-size: 1.8rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel-header {
        padding: 1.25rem 1.5rem;
    }
    
    .panel-header h3 {
        font-size: 1rem;
    }
    
    .panel-body {
        padding: 1.5rem;
        max-height: 400px;
    }
    
    .category-item-modern,
    .school-item-modern {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .category-count-modern,
    .school-count-modern {
        align-items: flex-start;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.5rem;
    }
    
    .category-name-modern,
    .school-name-modern {
        font-size: 0.9rem;
    }
    
    .total-stats-section {
        padding: 2.5rem 0;
    }
    
    .total-stats-modern {
        gap: 1.5rem;
    }
    
    .total-stats-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-modern-card {
        padding: 1.5rem;
    }
    
    .stat-modern-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-modern-value {
        font-size: 2rem;
    }
    
    .category-distribution-modern {
        padding: 1.5rem;
    }
    
    .category-distribution-header {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .category-distribution-header i {
        font-size: 1.1rem;
    }
    
    .category-distribution-items {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .category-distribution-item {
        padding: 0.6rem 1rem;
    }
    
    .category-dist-name {
        font-size: 0.85rem;
    }
    
    .category-dist-badge {
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
        min-width: 30px;
    }
}

/* Başvuru Formu */
.apply-section {
    padding: 3rem 0;
    background: var(--light-color);
    min-height: calc(100vh - 200px);
}

.apply-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apply-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.apply-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.veli-izin-link {
    margin-top: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.veli-izin-link:hover {
    background: #bbdefb;
    transform: translateX(5px);
}

.veli-izin-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.veli-izin-link a:hover {
    color: #1e40af;
}

.veli-izin-link a i.fa-file-word {
    font-size: 1.2rem;
    color: #2b579a;
}

.veli-izin-link a i.fa-download {
    font-size: 0.9rem;
    opacity: 0.8;
}

.apply-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.form-group .required {
    color: var(--danger-color);
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control select {
    cursor: pointer;
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert i {
    font-size: 1.25rem;
}

/* Öğrenci Bilgileri Bölümü */
.form-section-divider {
    margin: 2.5rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.form-section-divider h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.student-info-section {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.student-info-section h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .apply-header h1 {
        font-size: 2rem;
    }
    
    .apply-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .student-info-section {
        padding: 1.25rem;
    }
}

/* Stats Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-summary {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .summary-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .stats-dashboard-section {
        padding: 2.5rem 0;
    }
    
    .dashboard-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .summary-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .summary-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .summary-label {
        font-size: 0.8rem;
    }
    
    .summary-value {
        font-size: 1.6rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel-header {
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .panel-header h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .panel-body {
        padding: 1.5rem;
        max-height: 400px;
    }
    
    .category-item-modern,
    .school-item-modern {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .category-name-modern,
    .school-name-modern {
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
        word-break: break-word;
    }
    
    .category-count-modern,
    .school-count-modern {
        flex-shrink: 0;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.5rem;
    }
    
    .school-info {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .stats-dashboard-section {
        padding: 2rem 0;
    }
    
    .dashboard-summary {
        margin-bottom: 1.5rem;
    }
    
    .summary-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
    }
    
    .summary-value {
        font-size: 1.5rem;
    }
    
    .panel-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .panel-header h3 {
        font-size: 0.95rem;
    }
    
    .panel-body {
        padding: 1rem;
        max-height: 350px;
    }
    
    .category-item-modern,
    .school-item-modern {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.875rem;
    }
    
    .category-count-modern,
    .school-count-modern {
        align-items: flex-start;
        width: 100%;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.3rem;
    }
    
    .school-info {
        width: 100%;
    }
    
    .school-name-modern {
        font-size: 0.85rem;
    }
}


    
    .main-nav a.nav-apply-btn {
        order: 999;
    }
    
    .main-nav a:not(.nav-results-btn):not(.nav-apply-btn):last-child {
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav a:hover {
        background: var(--light-color);
    }
    
    .main-nav a.nav-results-btn:hover {
        background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
        background-color: #d97706 !important;
    }
    
    .main-nav a.nav-apply-btn:hover {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
        background-color: var(--primary-color) !important;
    }
}

@media (max-width: 480px) {
    .main-nav {
        gap: 0.5rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav .nav-dropdown > a {
    position: relative;
}

.main-nav a i {
    font-size: 0.9rem;
}

.main-nav a:hover {
    background: var(--light-color);
}

.main-nav a.nav-results-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    background-color: #d97706 !important;
}

.main-nav a.nav-apply-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
    background-color: var(--primary-color) !important;
}

/* Navigasyon Dropdown Menü */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    cursor: pointer;
    pointer-events: auto;
}

.nav-dropdown-toggle .nav-chevron {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: none;
}

.nav-dropdown-toggle .nav-chevron.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .nav-dropdown-toggle .nav-chevron.mobile-only {
        display: inline-block;
    }
}

.nav-dropdown-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 10000;
    overflow: hidden;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }
    
    .nav-dropdown-menu {
        display: none !important;
        position: static;
        width: 100%;
        min-width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--light-color);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: block !important;
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .nav-dropdown-item {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none !important;
    }
    
    .nav-chevron {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .nav-chevron {
        transform: rotate(180deg);
    }
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown menü ile toggle arasında boşluk için padding */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    z-index: 9999;
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.nav-dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.nav-dropdown-item i {
    margin-right: 0.5rem;
    color: var(--danger-color);
}


/* Yarışma Kılavuzu Butonu - Giriş Butonu Stili */
header.main-header nav.main-nav a.btn-guide,
header.main-header nav.main-nav button.btn-guide,
.main-header .main-nav .btn-guide,
.main-nav a.btn-guide,
.main-nav button.btn-guide,
a.btn-guide,
button.btn-guide,
nav.main-nav a.btn-guide,
nav.main-nav button.btn-guide {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25) !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    border: none !important;
    margin-left: 0.5rem !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
}

.main-nav .btn-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.main-nav .btn-guide:hover::before {
    left: 100%;
}

header.main-header nav.main-nav a.btn-guide:hover,
header.main-header nav.main-nav button.btn-guide:hover,
.main-header .main-nav .btn-guide:hover,
.main-nav a.btn-guide:hover,
.main-nav button.btn-guide:hover,
a.btn-guide:hover,
button.btn-guide:hover,
nav.main-nav a.btn-guide:hover,
nav.main-nav button.btn-guide:hover {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
    background-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
    transform: translateY(-1px) !important;
}

.main-nav .btn-guide:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.3) !important;
    background: linear-gradient(90deg, #1d4ed8 0%, #1e40af 100%) !important;
}

.main-nav .btn-guide i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Yarışma Kılavuzu Dropdown */
.guide-dropdown {
    position: relative;
    display: inline-block;
}

.guide-dropdown-toggle {
    cursor: pointer;
}

.guide-dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.guide-dropdown-menu.show {
    display: block !important;
    animation: fadeInDown 0.3s ease;
}

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

.guide-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.guide-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.guide-dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.guide-dropdown-item i {
    margin-right: 0.5rem;
    color: var(--danger-color);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Responsive Yarışma Kılavuzu Butonu */
@media (max-width: 768px) {
    .main-nav .btn-guide {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-nav .btn-guide {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    .main-nav .btn-guide i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
}
    color: var(--primary-color);
    transform: translateY(-2px);
}

.admin-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    background: transparent;
    margin-top: 10px;
    padding: 20px 20px 20px 20px;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 1280px;
    max-width: 100%;
    height: 620px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    background: white;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
}

.slide:not(.active) .slide-link {
    pointer-events: none;
    z-index: 1;
}

.slide img {
    width: 1280px;
    height: 620px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

@media (max-width: 1280px) {
    .slide img {
        width: 100%;
        height: 100%;
    }
}

.slide.active img {
    transform: scale(1);
}

.slide-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    z-index: 6;
    pointer-events: none;
}

.slide-title-content {
    max-width: 1200px;
    margin: 0 auto;
}

.slide-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.2;
    animation: slideTitleFadeIn 0.8s ease-out;
}

@keyframes slideTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide:not(.active) .slide-title-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.slide.active .slide-title-overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease 0.3s, visibility 0.6s ease 0.3s;
}

/* Responsive slider title */
@media (max-width: 768px) {
    .slide-title-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .slide-title-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--secondary-color);
}

.slider-btn:active {
    transform: scale(1.05) translateY(0);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.dot.active {
    background: white;
    transform: scale(1.4);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Countdown Section */
.countdown-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, transparent 0%, var(--light-color) 100%);
    position: relative;
    width: 100%;
    margin-top: 0;
    z-index: 2;
}

.countdown-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .countdown-wrapper {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .countdown-wrapper {
        padding: 1rem 0.75rem;
    }
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .countdown-title {
        font-size: 1.5rem;
    margin-bottom: 1rem;
}

    .countdown-title i {
    font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .countdown-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .countdown-title i {
        font-size: 1rem;
    }
}

.countdown-title i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .countdown-container {
        gap: 0.25rem;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 0.15rem;
        flex-wrap: nowrap;
        padding: 0 0.25rem;
    }
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .countdown-item {
        padding: 0.75rem 0.5rem;
        min-width: 55px;
        max-width: 55px;
        border-radius: 10px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 0.6rem 0.4rem;
        min-width: 50px;
        max-width: 50px;
        border-radius: 8px;
        flex-shrink: 0;
    }
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .countdown-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 480px) {
    .countdown-number {
        font-size: 1.25rem;
        margin-bottom: 0.15rem;
    }
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0.5rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .countdown-separator {
        font-size: 1rem;
        margin: 0 0.15rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .countdown-separator {
        font-size: 0.85rem;
        margin: 0 0.1rem;
        flex-shrink: 0;
    }
}

.countdown-target {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Frontend Yatay Zaman Çizelgesi */
.timeline-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    margin-top: 0;
}

.timeline-section .container {
    padding: 0 20px;
}

.timeline-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.timeline-section-header h2 {
    color: var(--dark-color);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.timeline-section-header h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.frontend-timeline-container {
    width: 100%;
    padding: 2rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.05);
}

.frontend-timeline-container::-webkit-scrollbar {
    height: 8px;
}

.frontend-timeline-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.frontend-timeline-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.frontend-timeline-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.frontend-timeline-wrapper {
    display: flex;
    align-items: flex-start;
    min-width: fit-content;
    padding: 2rem 1rem;
    position: relative;
}

.frontend-timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 220px;
    flex-shrink: 0;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.frontend-timeline-item:nth-child(odd) { animation-delay: 0.1s; }
.frontend-timeline-item:nth-child(even) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.frontend-timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 4px solid white;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1.25rem;
}

.frontend-marker-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.frontend-timeline-item:hover .frontend-timeline-marker {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.frontend-timeline-arrow {
    width: 100px;
    height: 2px;
    margin: 0 0.6rem;
    margin-top: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.frontend-timeline-arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--secondary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.frontend-timeline-arrow i {
    display: none;
}

.frontend-timeline-content {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    position: relative;
}

.frontend-timeline-item:hover .frontend-timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.frontend-timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.frontend-timeline-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.frontend-timeline-month {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.frontend-timeline-year {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0.8;
}

.frontend-timeline-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frontend-timeline-time {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--light-color);
    padding: 0.4rem 0.85rem;
    border-radius: 18px;
    margin-top: 0.4rem;
}

.frontend-timeline-time i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.frontend-timeline-item.past .frontend-timeline-content {
    opacity: 0.6;
    background: #f9fafb;
}

.frontend-timeline-item.past .frontend-timeline-marker {
    opacity: 0.5;
}

.frontend-timeline-item.today .frontend-timeline-content {
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.frontend-timeline-item.today .frontend-timeline-marker {
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
    animation: frontendPulse 2s infinite;
}

@keyframes frontendPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(37, 99, 235, 0.9);
    }
}

.timeline-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.timeline-empty i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.timeline-empty p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 2rem 0;
    }
    
    .timeline-section-header h2 {
        font-size: 1.35rem;
    }
    
    .timeline-section-header h2 i {
        font-size: 1.25rem;
    }
    
    .frontend-timeline-wrapper {
        padding: 1.5rem 0.5rem;
    }
    
    .frontend-timeline-item {
        min-width: 150px;
        max-width: 180px;
    }
    
    .frontend-timeline-marker {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
        border-width: 3px;
    }
    
    .frontend-marker-dot {
        width: 10px;
        height: 10px;
    }
    
    .frontend-timeline-arrow {
        width: 60px;
        margin: 0 0.4rem;
        margin-top: 22px;
    }
    
    .frontend-timeline-arrow i {
        font-size: 0.75rem;
        padding: 0.2rem;
    }
    
    .frontend-timeline-content {
        padding: 1rem;
    }
    
    .frontend-timeline-day {
        font-size: 1.75rem;
    }
    
    .frontend-timeline-month {
        font-size: 0.8rem;
    }
    
    .frontend-timeline-year {
        font-size: 0.7rem;
    }
    
    .frontend-timeline-title {
        font-size: 0.85rem;
        min-height: 2.2rem;
    }
    
    .frontend-timeline-time {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

@media (max-width: 480px) {
    .frontend-timeline-item {
        min-width: 130px;
        max-width: 160px;
    }
    
    .frontend-timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .frontend-timeline-day {
        font-size: 1.5rem;
    }
    
    .frontend-timeline-title {
        font-size: 0.8rem;
        min-height: 2rem;
    }
    
    .frontend-timeline-arrow {
        width: 50px;
    }
}

/* Sections */
.announcements-section,
.categories-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.categories-section {
    background: white;
}

.section-title-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

/* Announcements Grid - Ana sayfa için yatay scroll */
.announcements-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.announcements-grid::-webkit-scrollbar {
    height: 8px;
}

.announcements-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

.announcements-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.announcements-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Announcements Grid Full - Tüm duyurular sayfası için 3 sütunlu grid */
.announcements-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.announcements-grid-full .announcement-card-link {
    flex: none;
    min-width: auto;
    width: 100%;
}

.announcement-card {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    flex: 0 0 350px;
    min-width: 350px;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.announcement-card:hover::before {
    transform: scaleY(1);
}

.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.announcement-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-date i {
    font-size: 0.85rem;
}

.announcement-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.announcement-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.announcement-card-preview {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0 0.25rem;
}
.announcement-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color, #1a73e8);
    margin-top: 0.5rem;
    transition: gap 0.2s;
}
.announcement-card-link:hover .announcement-read-more {
    gap: 0.5rem;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.announcement-card:hover .read-more-link {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.read-more-link i {
    font-size: 0.8rem;
}

.announcement-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 0 0 350px;
    min-width: 350px;
}

/* Categories Grid */
.categories-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.categories-grid::-webkit-scrollbar {
    height: 8px;
}

.categories-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 0 0 250px;
    min-width: 250px;
}

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* No Content */
.no-content {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

/* Home Page Sections */
.home-sections {
    padding: 4rem 0;
    background: var(--light-color);
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.home-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.home-card:hover::before {
    transform: scaleX(1);
}

.home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.home-card-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-card-icon i {
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.home-card:hover .home-card-icon i {
    transform: scale(1.1) rotate(5deg);
}

.home-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.home-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.home-card .btn {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Announcement Detail Page */
.announcement-detail-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.announcement-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.announcement-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.announcement-detail-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.announcement-detail-date i {
    font-size: 0.9rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-4px);
}

.announcement-detail-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.announcement-gallery {
    margin-bottom: 2rem;
}
.announcement-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.announcement-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f8f9fa;
}
.announcement-gallery-link {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.announcement-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.announcement-gallery-link:hover img {
    transform: scale(1.05);
}
@media (max-width: 600px) {
    .announcement-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.announcement-detail-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.announcement-detail-content p { margin: 0 0 1rem; }
.announcement-detail-content p:last-child { margin-bottom: 0; }
.announcement-detail-content h2 { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.announcement-detail-content h3 { font-size: 1.25rem; margin: 1.25rem 0 0.5rem; }
.announcement-detail-content h4 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }
.announcement-detail-content ul, .announcement-detail-content ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.announcement-detail-content li { margin-bottom: 0.35rem; }
.announcement-detail-content blockquote { margin: 1rem 0; padding: 0.5rem 1rem; border-left: 4px solid var(--primary-color, #333); background: rgba(0,0,0,0.04); }
.announcement-detail-content a { color: var(--primary-color, #1a73e8); text-decoration: underline; }
.announcement-detail-content a:hover { text-decoration: none; }
.announcement-detail-content img { max-width: 100%; height: auto; border-radius: 4px; }
.announcement-detail-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.announcement-detail-content th, .announcement-detail-content td { border: 1px solid #ddd; padding: 0.5rem 0.75rem; text-align: left; }
.announcement-detail-content strong { font-weight: 700; }
.announcement-detail-content code, .announcement-detail-content .ql-code-block { background: rgba(0,0,0,0.06); padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.95em; }

/* Category Detail Page */
.category-detail-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.category-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.category-detail-header {
    margin-bottom: 2rem;
}

.category-detail-content {
    text-align: center;
}

.category-detail-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-detail-icon i {
    font-size: 5rem;
}

.category-detail-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

.category-detail-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.category-detail-short {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
}

.category-detail-short p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.category-detail-description {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
}

.category-detail-description h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-detail-description h3 i {
    color: var(--primary-color);
}

.detail-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.detail-content p { margin: 0 0 1rem; }
.detail-content p:last-child { margin-bottom: 0; }
.detail-content h2 { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.detail-content h3 { font-size: 1.25rem; margin: 1.25rem 0 0.5rem; }
.detail-content h4 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }
.detail-content ul, .detail-content ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.detail-content li { margin-bottom: 0.35rem; }
.detail-content blockquote { margin: 1rem 0; padding: 0.5rem 1rem; border-left: 4px solid var(--primary-color, #333); background: rgba(0,0,0,0.04); }
.detail-content a { color: var(--primary-color, #1a73e8); text-decoration: underline; }
.detail-content a:hover { text-decoration: none; }
.detail-content img { max-width: 100%; height: auto; border-radius: 4px; }
.detail-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.detail-content th, .detail-content td { border: 1px solid #ddd; padding: 0.5rem 0.75rem; text-align: left; }
.detail-content strong { font-weight: 700; }
.detail-content code, .detail-content .ql-code-block { background: rgba(0,0,0,0.06); padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.95em; }

.category-detail-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-label {
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label i {
    color: var(--primary-color);
}

.info-value {
    color: var(--dark-color);
    font-weight: 600;
}

.info-value code {
    background: var(--light-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Footer */
/* Sabit "Bize Ulaşın" butonu - sağ alt, scroll'da sabit */
.fixed-contact-btn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color, #1a73e8);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.fixed-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    color: #fff !important;
}
.fixed-contact-btn i {
    font-size: 1.1rem;
}
@media (max-width: 480px) {
    .fixed-contact-btn span { display: none; }
    .fixed-contact-btn { padding: 0.85rem 1rem; border-radius: 50%; }
    .fixed-contact-btn i { font-size: 1.25rem; margin: 0; }
}

.main-footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        padding: 10px;
    }
    
    .slider-container {
        height: auto;
        aspect-ratio: 1280 / 620;
        border-radius: 15px;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        max-height: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-container:hover {
        transform: none !important;
    }
    
    .announcement-card,
    .announcement-card-link {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .category-card-link {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.25rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .category-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .category-detail-title {
        font-size: 1.75rem;
    }
    
    .category-detail-icon {
        font-size: 3rem;
    }
    
    .category-detail-icon i {
        font-size: 3rem;
    }
    
    .category-detail-info {
        flex-direction: column;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
    
    .announcements-grid-full {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .announcement-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .announcement-detail-title {
        font-size: 1.75rem;
    }
    
    .announcement-detail-content {
        font-size: 1rem;
    }
    
    .announcement-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-images {
        gap: 0.75rem;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
}

/* Yarışma Kılavuzu Butonu - Son Öncelik (En Son Yüklenen) */
body header.main-header .container .header-content nav.main-nav a.btn-guide,
body header.main-header .container .header-content nav.main-nav button.btn-guide {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}

body header.main-header .container .header-content nav.main-nav a.btn-guide:hover,
body header.main-header .container .header-content nav.main-nav button.btn-guide:hover {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
    background-color: #2563eb !important;
}

/* Mobil Responsive İyileştirmeleri */
@media (max-width: 768px) {
    .main-header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-images {
        gap: 0.75rem;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
    
    .main-nav {
        width: 100%;
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-nav a {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border-color);
        border-radius: 6px;
    }
    
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu {
        transform: translateY(0);
    }
    
    .hero-slider {
        padding: 10px;
    }
    
    .slider-container {
        border-radius: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .countdown-section {
        padding: 1.5rem 1rem;
    }
    
    .countdown-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .countdown-title {
        font-size: 1.25rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .announcements-scroll,
    .categories-scroll {
        padding: 1rem 0;
    }
    
    .announcement-card,
    .category-card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding-right: 50px; /* Menü butonu için alan */
    }
    
    .header-logo {
        height: 40px;
        width: 40px;
    }
    
    .logo-images {
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .main-header {
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        right: 10px;
        font-size: 1.25rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .hero-slider {
        padding: 5px;
    }
    
    .slider-container {
        border-radius: 10px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slide-title {
        font-size: 1.25rem;
    }
    
    .slide-title-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .countdown-section {
        padding: 1rem 0.75rem;
    }
    
    .countdown-wrapper {
        padding: 1rem 0.75rem;
    }
    
    .countdown-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.75rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1.25rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .announcement-card,
    .category-card {
        min-width: 250px;
        padding: 1rem;
    }
    
    .announcement-card h3,
    .category-card h3 {
        font-size: 1.1rem;
    }
    
    .main-footer {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
}

/* Başvuru Butonu (Menüde) */
.nav-results-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-results-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    background-color: #d97706 !important;
    color: white !important;
}

.nav-results-btn i {
    font-size: 1rem;
}

.nav-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    margin-left: auto;
    white-space: nowrap;
}

.nav-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
    background-color: var(--primary-color) !important;
    color: white !important;
}

.nav-apply-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .nav-results-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
    }
    
    .nav-apply-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
    }
}

/* İstatistikler Dashboard - Modern ve Anlaşılır Tasarım */
.stats-dashboard-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.stats-dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .stats-dashboard {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .stats-dashboard {
        padding: 0 10px;
    }
}

/* Özet İstatistikler */
.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Dashboard Paneller */
.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-panel:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.panel-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.panel-header i {
    font-size: 1.3rem;
}

.panel-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.panel-body {
    padding: 2rem;
    max-height: 500px;
    overflow-y: auto;
}

/* Kategori Listesi */
.category-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.category-item-modern:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.category-name-modern {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

.category-count-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.category-count-modern .count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.category-count-modern .count-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Okul Listesi */
.school-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.school-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--light-color);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.school-item-modern:hover {
    transform: translateX(5px);
    background: rgba(30, 64, 175, 0.05);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.school-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.school-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.school-name-modern {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.school-count-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.school-count-modern .count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.school-count-modern .count-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Panel Scrollbar Stili */
.panel-body::-webkit-scrollbar {
    width: 8px;
}

.panel-body::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.panel-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.panel-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* No Content */
.dashboard-panel .no-content {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.dashboard-panel .no-content i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.dashboard-panel .no-content p {
    font-size: 1rem;
    margin: 0;
}

/* Kategorilere Göre İstatistikler */
.category-stats-section {
    padding: 4rem 0;
    background: white;
}

.category-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    color: white;
}

.category-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-stat-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-stat-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Toplam İstatistikler Bölümü - Modern Tasarım */
.total-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.total-stats-modern {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.total-stats-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-modern-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.stat-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.stat-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.stat-modern-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.stat-modern-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

.stat-modern-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.stat-modern-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-modern-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Kategori Dağılımı - Modern */
.category-distribution-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.category-distribution-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.category-distribution-header i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.category-distribution-header span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.category-distribution-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.category-distribution-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-distribution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.category-distribution-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.category-distribution-item:hover::before {
    left: 100%;
}

.category-dist-name {
    font-size: 0.95rem;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.category-dist-badge {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    min-width: 35px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

/* Kategori Dağılımı */
.category-breakdown {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.category-breakdown-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.category-breakdown-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.category-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.category-breakdown-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.category-breakdown-name {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.category-breakdown-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    min-width: 40px;
    text-align: center;
}

.total-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.total-stat-item.category-stats-item {
    flex: 2;
    min-width: 400px;
}

.total-stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.total-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Kategori İstatistikleri (Tek Satır) */
.category-stats-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-inline-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.category-inline-name {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.category-inline-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    min-width: 30px;
    text-align: center;
}

.category-separator {
    color: var(--text-light);
    font-weight: 300;
    margin: 0 0.25rem;
}

.no-category {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-dashboard-section {
        padding: 2.5rem 0;
    }
    
    .dashboard-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .summary-value {
        font-size: 1.8rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel-header {
        padding: 1.25rem 1.5rem;
    }
    
    .panel-header h3 {
        font-size: 1rem;
    }
    
    .panel-body {
        padding: 1.5rem;
        max-height: 400px;
    }
    
    .category-item-modern,
    .school-item-modern {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .category-count-modern,
    .school-count-modern {
        align-items: flex-start;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.5rem;
    }
    
    .category-name-modern,
    .school-name-modern {
        font-size: 0.9rem;
    }
    
    .total-stats-section {
        padding: 2.5rem 0;
    }
    
    .total-stats-modern {
        gap: 1.5rem;
    }
    
    .total-stats-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-modern-card {
        padding: 1.5rem;
    }
    
    .stat-modern-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-modern-value {
        font-size: 2rem;
    }
    
    .category-distribution-modern {
        padding: 1.5rem;
    }
    
    .category-distribution-header {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .category-distribution-header i {
        font-size: 1.1rem;
    }
    
    .category-distribution-items {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .category-distribution-item {
        padding: 0.6rem 1rem;
    }
    
    .category-dist-name {
        font-size: 0.85rem;
    }
    
    .category-dist-badge {
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
        min-width: 30px;
    }
}

/* Başvuru Formu */
.apply-section {
    padding: 3rem 0;
    background: var(--light-color);
    min-height: calc(100vh - 200px);
}

.apply-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apply-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.apply-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.veli-izin-link {
    margin-top: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.veli-izin-link:hover {
    background: #bbdefb;
    transform: translateX(5px);
}

.veli-izin-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.veli-izin-link a:hover {
    color: #1e40af;
}

.veli-izin-link a i.fa-file-word {
    font-size: 1.2rem;
    color: #2b579a;
}

.veli-izin-link a i.fa-download {
    font-size: 0.9rem;
    opacity: 0.8;
}

.apply-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.form-group .required {
    color: var(--danger-color);
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control select {
    cursor: pointer;
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert i {
    font-size: 1.25rem;
}

/* Öğrenci Bilgileri Bölümü */
.form-section-divider {
    margin: 2.5rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.form-section-divider h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.student-info-section {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.student-info-section h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .apply-header h1 {
        font-size: 2rem;
    }
    
    .apply-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .student-info-section {
        padding: 1.25rem;
    }
}

/* Stats Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-summary {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .summary-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .stats-dashboard-section {
        padding: 2.5rem 0;
    }
    
    .dashboard-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .summary-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .summary-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .summary-label {
        font-size: 0.8rem;
    }
    
    .summary-value {
        font-size: 1.6rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel-header {
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .panel-header h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .panel-body {
        padding: 1.5rem;
        max-height: 400px;
    }
    
    .category-item-modern,
    .school-item-modern {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .category-name-modern,
    .school-name-modern {
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
        word-break: break-word;
    }
    
    .category-count-modern,
    .school-count-modern {
        flex-shrink: 0;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.5rem;
    }
    
    .school-info {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .stats-dashboard-section {
        padding: 2rem 0;
    }
    
    .dashboard-summary {
        margin-bottom: 1.5rem;
    }
    
    .summary-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
    }
    
    .summary-value {
        font-size: 1.5rem;
    }
    
    .panel-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .panel-header h3 {
        font-size: 0.95rem;
    }
    
    .panel-body {
        padding: 1rem;
        max-height: 350px;
    }
    
    .category-item-modern,
    .school-item-modern {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.875rem;
    }
    
    .category-count-modern,
    .school-count-modern {
        align-items: flex-start;
        width: 100%;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.3rem;
    }
    
    .school-info {
        width: 100%;
    }
    
    .school-name-modern {
        font-size: 0.85rem;
    }
}


    
    .main-nav a.nav-apply-btn {
        order: 999;
    }
    
    .main-nav a:not(.nav-results-btn):not(.nav-apply-btn):last-child {
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav a:hover {
        background: var(--light-color);
    }
    
    .main-nav a.nav-results-btn:hover {
        background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
        background-color: #d97706 !important;
    }
    
    .main-nav a.nav-apply-btn:hover {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
        background-color: var(--primary-color) !important;
    }
}

@media (max-width: 480px) {
    .main-nav {
        gap: 0.5rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav .nav-dropdown > a {
    position: relative;
}

.main-nav a i {
    font-size: 0.9rem;
}

.main-nav a:hover {
    background: var(--light-color);
}

.main-nav a.nav-results-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    background-color: #d97706 !important;
}

.main-nav a.nav-apply-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
    background-color: var(--primary-color) !important;
}

/* Navigasyon Dropdown Menü */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    cursor: pointer;
    pointer-events: auto;
}

.nav-dropdown-toggle .nav-chevron {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: none;
}

.nav-dropdown-toggle .nav-chevron.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .nav-dropdown-toggle .nav-chevron.mobile-only {
        display: inline-block;
    }
}

.nav-dropdown-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 10000;
    overflow: hidden;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }
    
    .nav-dropdown-menu {
        display: none !important;
        position: static;
        width: 100%;
        min-width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--light-color);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: block !important;
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .nav-dropdown-item {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none !important;
    }
    
    .nav-chevron {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .nav-chevron {
        transform: rotate(180deg);
    }
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown menü ile toggle arasında boşluk için padding */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    z-index: 9999;
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.nav-dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.nav-dropdown-item i {
    margin-right: 0.5rem;
    color: var(--danger-color);
}


/* Yarışma Kılavuzu Butonu - Giriş Butonu Stili */
header.main-header nav.main-nav a.btn-guide,
header.main-header nav.main-nav button.btn-guide,
.main-header .main-nav .btn-guide,
.main-nav a.btn-guide,
.main-nav button.btn-guide,
a.btn-guide,
button.btn-guide,
nav.main-nav a.btn-guide,
nav.main-nav button.btn-guide {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25) !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    border: none !important;
    margin-left: 0.5rem !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
}

.main-nav .btn-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.main-nav .btn-guide:hover::before {
    left: 100%;
}

header.main-header nav.main-nav a.btn-guide:hover,
header.main-header nav.main-nav button.btn-guide:hover,
.main-header .main-nav .btn-guide:hover,
.main-nav a.btn-guide:hover,
.main-nav button.btn-guide:hover,
a.btn-guide:hover,
button.btn-guide:hover,
nav.main-nav a.btn-guide:hover,
nav.main-nav button.btn-guide:hover {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
    background-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
    transform: translateY(-1px) !important;
}

.main-nav .btn-guide:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.3) !important;
    background: linear-gradient(90deg, #1d4ed8 0%, #1e40af 100%) !important;
}

.main-nav .btn-guide i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Yarışma Kılavuzu Dropdown */
.guide-dropdown {
    position: relative;
    display: inline-block;
}

.guide-dropdown-toggle {
    cursor: pointer;
}

.guide-dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.guide-dropdown-menu.show {
    display: block !important;
    animation: fadeInDown 0.3s ease;
}

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

.guide-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.guide-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.guide-dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.guide-dropdown-item i {
    margin-right: 0.5rem;
    color: var(--danger-color);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Responsive Yarışma Kılavuzu Butonu */
@media (max-width: 768px) {
    .main-nav .btn-guide {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-nav .btn-guide {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    .main-nav .btn-guide i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
}
    color: var(--primary-color);
    transform: translateY(-2px);
}

.admin-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    background: transparent;
    margin-top: 10px;
    padding: 20px 20px 20px 20px;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 1280px;
    max-width: 100%;
    height: 620px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    background: white;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
}

.slide:not(.active) .slide-link {
    pointer-events: none;
    z-index: 1;
}

.slide img {
    width: 1280px;
    height: 620px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

@media (max-width: 1280px) {
    .slide img {
        width: 100%;
        height: 100%;
    }
}

.slide.active img {
    transform: scale(1);
}

.slide-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    z-index: 6;
    pointer-events: none;
}

.slide-title-content {
    max-width: 1200px;
    margin: 0 auto;
}

.slide-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.2;
    animation: slideTitleFadeIn 0.8s ease-out;
}

@keyframes slideTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide:not(.active) .slide-title-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.slide.active .slide-title-overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease 0.3s, visibility 0.6s ease 0.3s;
}

/* Responsive slider title */
@media (max-width: 768px) {
    .slide-title-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .slide-title-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--secondary-color);
}

.slider-btn:active {
    transform: scale(1.05) translateY(0);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.dot.active {
    background: white;
    transform: scale(1.4);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Countdown Section */
.countdown-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, transparent 0%, var(--light-color) 100%);
    position: relative;
    width: 100%;
    margin-top: 0;
    z-index: 2;
}

.countdown-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .countdown-wrapper {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .countdown-wrapper {
        padding: 1rem 0.75rem;
    }
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .countdown-title {
        font-size: 1.5rem;
    margin-bottom: 1rem;
}

    .countdown-title i {
    font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .countdown-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .countdown-title i {
        font-size: 1rem;
    }
}

.countdown-title i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .countdown-container {
        gap: 0.25rem;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 0.15rem;
        flex-wrap: nowrap;
        padding: 0 0.25rem;
    }
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .countdown-item {
        padding: 0.75rem 0.5rem;
        min-width: 55px;
        max-width: 55px;
        border-radius: 10px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 0.6rem 0.4rem;
        min-width: 50px;
        max-width: 50px;
        border-radius: 8px;
        flex-shrink: 0;
    }
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .countdown-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 480px) {
    .countdown-number {
        font-size: 1.25rem;
        margin-bottom: 0.15rem;
    }
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0.5rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .countdown-separator {
        font-size: 1rem;
        margin: 0 0.15rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .countdown-separator {
        font-size: 0.85rem;
        margin: 0 0.1rem;
        flex-shrink: 0;
    }
}

.countdown-target {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Frontend Yatay Zaman Çizelgesi */
.timeline-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    margin-top: 0;
}

.timeline-section .container {
    padding: 0 20px;
}

.timeline-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.timeline-section-header h2 {
    color: var(--dark-color);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.timeline-section-header h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.frontend-timeline-container {
    width: 100%;
    padding: 2rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.05);
}

.frontend-timeline-container::-webkit-scrollbar {
    height: 8px;
}

.frontend-timeline-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.frontend-timeline-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.frontend-timeline-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.frontend-timeline-wrapper {
    display: flex;
    align-items: flex-start;
    min-width: fit-content;
    padding: 2rem 1rem;
    position: relative;
}

.frontend-timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 220px;
    flex-shrink: 0;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.frontend-timeline-item:nth-child(odd) { animation-delay: 0.1s; }
.frontend-timeline-item:nth-child(even) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.frontend-timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 4px solid white;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1.25rem;
}

.frontend-marker-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.frontend-timeline-item:hover .frontend-timeline-marker {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.frontend-timeline-arrow {
    width: 100px;
    height: 2px;
    margin: 0 0.6rem;
    margin-top: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.frontend-timeline-arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--secondary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.frontend-timeline-arrow i {
    display: none;
}

.frontend-timeline-content {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    position: relative;
}

.frontend-timeline-item:hover .frontend-timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.frontend-timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.frontend-timeline-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.frontend-timeline-month {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.frontend-timeline-year {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0.8;
}

.frontend-timeline-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frontend-timeline-time {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--light-color);
    padding: 0.4rem 0.85rem;
    border-radius: 18px;
    margin-top: 0.4rem;
}

.frontend-timeline-time i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.frontend-timeline-item.past .frontend-timeline-content {
    opacity: 0.6;
    background: #f9fafb;
}

.frontend-timeline-item.past .frontend-timeline-marker {
    opacity: 0.5;
}

.frontend-timeline-item.today .frontend-timeline-content {
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.frontend-timeline-item.today .frontend-timeline-marker {
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
    animation: frontendPulse 2s infinite;
}

@keyframes frontendPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(37, 99, 235, 0.9);
    }
}

.timeline-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.timeline-empty i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.timeline-empty p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 2rem 0;
    }
    
    .timeline-section-header h2 {
        font-size: 1.35rem;
    }
    
    .timeline-section-header h2 i {
        font-size: 1.25rem;
    }
    
    .frontend-timeline-wrapper {
        padding: 1.5rem 0.5rem;
    }
    
    .frontend-timeline-item {
        min-width: 150px;
        max-width: 180px;
    }
    
    .frontend-timeline-marker {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
        border-width: 3px;
    }
    
    .frontend-marker-dot {
        width: 10px;
        height: 10px;
    }
    
    .frontend-timeline-arrow {
        width: 60px;
        margin: 0 0.4rem;
        margin-top: 22px;
    }
    
    .frontend-timeline-arrow i {
        font-size: 0.75rem;
        padding: 0.2rem;
    }
    
    .frontend-timeline-content {
        padding: 1rem;
    }
    
    .frontend-timeline-day {
        font-size: 1.75rem;
    }
    
    .frontend-timeline-month {
        font-size: 0.8rem;
    }
    
    .frontend-timeline-year {
        font-size: 0.7rem;
    }
    
    .frontend-timeline-title {
        font-size: 0.85rem;
        min-height: 2.2rem;
    }
    
    .frontend-timeline-time {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

@media (max-width: 480px) {
    .frontend-timeline-item {
        min-width: 130px;
        max-width: 160px;
    }
    
    .frontend-timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .frontend-timeline-day {
        font-size: 1.5rem;
    }
    
    .frontend-timeline-title {
        font-size: 0.8rem;
        min-height: 2rem;
    }
    
    .frontend-timeline-arrow {
        width: 50px;
    }
}

/* Sections */
.announcements-section,
.categories-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.categories-section {
    background: white;
}

.section-title-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

/* Announcements Grid - Ana sayfa için yatay scroll */
.announcements-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.announcements-grid::-webkit-scrollbar {
    height: 8px;
}

.announcements-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

.announcements-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.announcements-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Announcements Grid Full - Tüm duyurular sayfası için 3 sütunlu grid */
.announcements-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.announcements-grid-full .announcement-card-link {
    flex: none;
    min-width: auto;
    width: 100%;
}

.announcement-card {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    flex: 0 0 350px;
    min-width: 350px;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.announcement-card:hover::before {
    transform: scaleY(1);
}

.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.announcement-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-date i {
    font-size: 0.85rem;
}

.announcement-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.announcement-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.announcement-card-preview {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0 0.25rem;
}
.announcement-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color, #1a73e8);
    margin-top: 0.5rem;
    transition: gap 0.2s;
}
.announcement-card-link:hover .announcement-read-more {
    gap: 0.5rem;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.announcement-card:hover .read-more-link {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.read-more-link i {
    font-size: 0.8rem;
}

.announcement-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 0 0 350px;
    min-width: 350px;
}

/* Categories Grid */
.categories-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.categories-grid::-webkit-scrollbar {
    height: 8px;
}

.categories-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 0 0 250px;
    min-width: 250px;
}

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* No Content */
.no-content {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

/* Home Page Sections */
.home-sections {
    padding: 4rem 0;
    background: var(--light-color);
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.home-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.home-card:hover::before {
    transform: scaleX(1);
}

.home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.home-card-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-card-icon i {
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.home-card:hover .home-card-icon i {
    transform: scale(1.1) rotate(5deg);
}

.home-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.home-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.home-card .btn {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Announcement Detail Page */
.announcement-detail-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.announcement-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.announcement-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.announcement-detail-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.announcement-detail-date i {
    font-size: 0.9rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-4px);
}

.announcement-detail-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.announcement-gallery {
    margin-bottom: 2rem;
}
.announcement-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.announcement-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f8f9fa;
}
.announcement-gallery-link {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.announcement-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.announcement-gallery-link:hover img {
    transform: scale(1.05);
}
@media (max-width: 600px) {
    .announcement-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.announcement-detail-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.announcement-detail-content p { margin: 0 0 1rem; }
.announcement-detail-content p:last-child { margin-bottom: 0; }
.announcement-detail-content h2 { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.announcement-detail-content h3 { font-size: 1.25rem; margin: 1.25rem 0 0.5rem; }
.announcement-detail-content h4 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }
.announcement-detail-content ul, .announcement-detail-content ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.announcement-detail-content li { margin-bottom: 0.35rem; }
.announcement-detail-content blockquote { margin: 1rem 0; padding: 0.5rem 1rem; border-left: 4px solid var(--primary-color, #333); background: rgba(0,0,0,0.04); }
.announcement-detail-content a { color: var(--primary-color, #1a73e8); text-decoration: underline; }
.announcement-detail-content a:hover { text-decoration: none; }
.announcement-detail-content img { max-width: 100%; height: auto; border-radius: 4px; }
.announcement-detail-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.announcement-detail-content th, .announcement-detail-content td { border: 1px solid #ddd; padding: 0.5rem 0.75rem; text-align: left; }
.announcement-detail-content strong { font-weight: 700; }
.announcement-detail-content code, .announcement-detail-content .ql-code-block { background: rgba(0,0,0,0.06); padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.95em; }

/* Category Detail Page */
.category-detail-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.category-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.category-detail-header {
    margin-bottom: 2rem;
}

.category-detail-content {
    text-align: center;
}

.category-detail-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-detail-icon i {
    font-size: 5rem;
}

.category-detail-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

.category-detail-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.category-detail-short {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
}

.category-detail-short p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.category-detail-description {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
}

.category-detail-description h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-detail-description h3 i {
    color: var(--primary-color);
}

.detail-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.detail-content p { margin: 0 0 1rem; }
.detail-content p:last-child { margin-bottom: 0; }
.detail-content h2 { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.detail-content h3 { font-size: 1.25rem; margin: 1.25rem 0 0.5rem; }
.detail-content h4 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }
.detail-content ul, .detail-content ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.detail-content li { margin-bottom: 0.35rem; }
.detail-content blockquote { margin: 1rem 0; padding: 0.5rem 1rem; border-left: 4px solid var(--primary-color, #333); background: rgba(0,0,0,0.04); }
.detail-content a { color: var(--primary-color, #1a73e8); text-decoration: underline; }
.detail-content a:hover { text-decoration: none; }
.detail-content img { max-width: 100%; height: auto; border-radius: 4px; }
.detail-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.detail-content th, .detail-content td { border: 1px solid #ddd; padding: 0.5rem 0.75rem; text-align: left; }
.detail-content strong { font-weight: 700; }
.detail-content code, .detail-content .ql-code-block { background: rgba(0,0,0,0.06); padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.95em; }

.category-detail-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-label {
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label i {
    color: var(--primary-color);
}

.info-value {
    color: var(--dark-color);
    font-weight: 600;
}

.info-value code {
    background: var(--light-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Footer */
/* Sabit "Bize Ulaşın" butonu - sağ alt, scroll'da sabit */
.fixed-contact-btn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color, #1a73e8);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.fixed-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    color: #fff !important;
}
.fixed-contact-btn i {
    font-size: 1.1rem;
}
@media (max-width: 480px) {
    .fixed-contact-btn span { display: none; }
    .fixed-contact-btn { padding: 0.85rem 1rem; border-radius: 50%; }
    .fixed-contact-btn i { font-size: 1.25rem; margin: 0; }
}

.main-footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        padding: 10px;
    }
    
    .slider-container {
        height: auto;
        aspect-ratio: 1280 / 620;
        border-radius: 15px;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        max-height: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-container:hover {
        transform: none !important;
    }
    
    .announcement-card,
    .announcement-card-link {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .category-card-link {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.25rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .category-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .category-detail-title {
        font-size: 1.75rem;
    }
    
    .category-detail-icon {
        font-size: 3rem;
    }
    
    .category-detail-icon i {
        font-size: 3rem;
    }
    
    .category-detail-info {
        flex-direction: column;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
    
    .announcements-grid-full {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .announcement-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .announcement-detail-title {
        font-size: 1.75rem;
    }
    
    .announcement-detail-content {
        font-size: 1rem;
    }
    
    .announcement-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-images {
        gap: 0.75rem;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
}

/* Yarışma Kılavuzu Butonu - Son Öncelik (En Son Yüklenen) */
body header.main-header .container .header-content nav.main-nav a.btn-guide,
body header.main-header .container .header-content nav.main-nav button.btn-guide {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}

body header.main-header .container .header-content nav.main-nav a.btn-guide:hover,
body header.main-header .container .header-content nav.main-nav button.btn-guide:hover {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
    background-color: #2563eb !important;
}

/* Mobil Responsive İyileştirmeleri */
@media (max-width: 768px) {
    .main-header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-images {
        gap: 0.75rem;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
    
    .main-nav {
        width: 100%;
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-nav a {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border-color);
        border-radius: 6px;
    }
    
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu {
        transform: translateY(0);
    }
    
    .hero-slider {
        padding: 10px;
    }
    
    .slider-container {
        border-radius: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .countdown-section {
        padding: 1.5rem 1rem;
    }
    
    .countdown-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .countdown-title {
        font-size: 1.25rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .announcements-scroll,
    .categories-scroll {
        padding: 1rem 0;
    }
    
    .announcement-card,
    .category-card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding-right: 50px; /* Menü butonu için alan */
    }
    
    .header-logo {
        height: 40px;
        width: 40px;
    }
    
    .logo-images {
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .main-header {
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        right: 10px;
        font-size: 1.25rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .hero-slider {
        padding: 5px;
    }
    
    .slider-container {
        border-radius: 10px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slide-title {
        font-size: 1.25rem;
    }
    
    .slide-title-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .countdown-section {
        padding: 1rem 0.75rem;
    }
    
    .countdown-wrapper {
        padding: 1rem 0.75rem;
    }
    
    .countdown-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.75rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1.25rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .announcement-card,
    .category-card {
        min-width: 250px;
        padding: 1rem;
    }
    
    .announcement-card h3,
    .category-card h3 {
        font-size: 1.1rem;
    }
    
    .main-footer {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
}

/* Başvuru Butonu (Menüde) */
.nav-results-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-results-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    background-color: #d97706 !important;
    color: white !important;
}

.nav-results-btn i {
    font-size: 1rem;
}

.nav-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    margin-left: auto;
    white-space: nowrap;
}

.nav-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
    background-color: var(--primary-color) !important;
    color: white !important;
}

.nav-apply-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .nav-results-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
    }
    
    .nav-apply-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
    }
}

/* İstatistikler Dashboard - Modern ve Anlaşılır Tasarım */
.stats-dashboard-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.stats-dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .stats-dashboard {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .stats-dashboard {
        padding: 0 10px;
    }
}

/* Özet İstatistikler */
.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Dashboard Paneller */
.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-panel:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.panel-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.panel-header i {
    font-size: 1.3rem;
}

.panel-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.panel-body {
    padding: 2rem;
    max-height: 500px;
    overflow-y: auto;
}

/* Kategori Listesi */
.category-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.category-item-modern:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.category-name-modern {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

.category-count-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.category-count-modern .count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.category-count-modern .count-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Okul Listesi */
.school-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.school-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--light-color);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.school-item-modern:hover {
    transform: translateX(5px);
    background: rgba(30, 64, 175, 0.05);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.school-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.school-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.school-name-modern {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.school-count-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.school-count-modern .count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.school-count-modern .count-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Panel Scrollbar Stili */
.panel-body::-webkit-scrollbar {
    width: 8px;
}

.panel-body::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.panel-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.panel-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* No Content */
.dashboard-panel .no-content {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.dashboard-panel .no-content i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.dashboard-panel .no-content p {
    font-size: 1rem;
    margin: 0;
}

/* Kategorilere Göre İstatistikler */
.category-stats-section {
    padding: 4rem 0;
    background: white;
}

.category-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    color: white;
}

.category-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-stat-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-stat-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Toplam İstatistikler Bölümü - Modern Tasarım */
.total-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.total-stats-modern {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.total-stats-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-modern-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.stat-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.stat-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.stat-modern-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.stat-modern-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

.stat-modern-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.stat-modern-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-modern-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Kategori Dağılımı - Modern */
.category-distribution-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.category-distribution-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.category-distribution-header i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.category-distribution-header span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.category-distribution-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.category-distribution-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-distribution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.category-distribution-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.category-distribution-item:hover::before {
    left: 100%;
}

.category-dist-name {
    font-size: 0.95rem;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.category-dist-badge {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    min-width: 35px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

/* Kategori Dağılımı */
.category-breakdown {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.category-breakdown-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.category-breakdown-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.category-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.category-breakdown-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.category-breakdown-name {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.category-breakdown-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    min-width: 40px;
    text-align: center;
}

.total-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.total-stat-item.category-stats-item {
    flex: 2;
    min-width: 400px;
}

.total-stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.total-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Kategori İstatistikleri (Tek Satır) */
.category-stats-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-inline-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.category-inline-name {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.category-inline-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    min-width: 30px;
    text-align: center;
}

.category-separator {
    color: var(--text-light);
    font-weight: 300;
    margin: 0 0.25rem;
}

.no-category {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-dashboard-section {
        padding: 2.5rem 0;
    }
    
    .dashboard-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .summary-value {
        font-size: 1.8rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel-header {
        padding: 1.25rem 1.5rem;
    }
    
    .panel-header h3 {
        font-size: 1rem;
    }
    
    .panel-body {
        padding: 1.5rem;
        max-height: 400px;
    }
    
    .category-item-modern,
    .school-item-modern {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .category-count-modern,
    .school-count-modern {
        align-items: flex-start;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.5rem;
    }
    
    .category-name-modern,
    .school-name-modern {
        font-size: 0.9rem;
    }
    
    .total-stats-section {
        padding: 2.5rem 0;
    }
    
    .total-stats-modern {
        gap: 1.5rem;
    }
    
    .total-stats-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-modern-card {
        padding: 1.5rem;
    }
    
    .stat-modern-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-modern-value {
        font-size: 2rem;
    }
    
    .category-distribution-modern {
        padding: 1.5rem;
    }
    
    .category-distribution-header {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .category-distribution-header i {
        font-size: 1.1rem;
    }
    
    .category-distribution-items {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .category-distribution-item {
        padding: 0.6rem 1rem;
    }
    
    .category-dist-name {
        font-size: 0.85rem;
    }
    
    .category-dist-badge {
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
        min-width: 30px;
    }
}

/* Başvuru Formu */
.apply-section {
    padding: 3rem 0;
    background: var(--light-color);
    min-height: calc(100vh - 200px);
}

.apply-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apply-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.apply-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.veli-izin-link {
    margin-top: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.veli-izin-link:hover {
    background: #bbdefb;
    transform: translateX(5px);
}

.veli-izin-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.veli-izin-link a:hover {
    color: #1e40af;
}

.veli-izin-link a i.fa-file-word {
    font-size: 1.2rem;
    color: #2b579a;
}

.veli-izin-link a i.fa-download {
    font-size: 0.9rem;
    opacity: 0.8;
}

.apply-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.form-group .required {
    color: var(--danger-color);
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control select {
    cursor: pointer;
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert i {
    font-size: 1.25rem;
}

/* Öğrenci Bilgileri Bölümü */
.form-section-divider {
    margin: 2.5rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.form-section-divider h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.student-info-section {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.student-info-section h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .apply-header h1 {
        font-size: 2rem;
    }
    
    .apply-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .student-info-section {
        padding: 1.25rem;
    }
}

/* Stats Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-summary {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .summary-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .stats-dashboard-section {
        padding: 2.5rem 0;
    }
    
    .dashboard-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .summary-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .summary-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .summary-label {
        font-size: 0.8rem;
    }
    
    .summary-value {
        font-size: 1.6rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel-header {
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .panel-header h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .panel-body {
        padding: 1.5rem;
        max-height: 400px;
    }
    
    .category-item-modern,
    .school-item-modern {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .category-name-modern,
    .school-name-modern {
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
        word-break: break-word;
    }
    
    .category-count-modern,
    .school-count-modern {
        flex-shrink: 0;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.5rem;
    }
    
    .school-info {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .stats-dashboard-section {
        padding: 2rem 0;
    }
    
    .dashboard-summary {
        margin-bottom: 1.5rem;
    }
    
    .summary-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
    }
    
    .summary-value {
        font-size: 1.5rem;
    }
    
    .panel-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .panel-header h3 {
        font-size: 0.95rem;
    }
    
    .panel-body {
        padding: 1rem;
        max-height: 350px;
    }
    
    .category-item-modern,
    .school-item-modern {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.875rem;
    }
    
    .category-count-modern,
    .school-count-modern {
        align-items: flex-start;
        width: 100%;
    }
    
    .category-count-modern .count-number,
    .school-count-modern .count-number {
        font-size: 1.3rem;
    }
    
    .school-info {
        width: 100%;
    }
    
    .school-name-modern {
        font-size: 0.85rem;
    }
}

/* Popup Duyuru Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-content {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.popup-text {
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
}

.popup-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: var(--light-color);
    flex-wrap: wrap;
}

.popup-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
    user-select: none;
}

.popup-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.popup-footer .btn {
    min-width: 100px;
}

@media (max-width: 768px) {
    .popup-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .popup-header {
        padding: 1.25rem;
    }
    
    .popup-header h3 {
        font-size: 1.25rem;
    }
    
    .popup-content {
        padding: 1.25rem;
    }
    
    .popup-footer {
        padding: 1rem 1.25rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .popup-checkbox-label {
        order: 2;
        justify-content: center;
    }
    
    .popup-footer .btn {
        order: 1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .popup-header h3 {
        font-size: 1.1rem;
    }
    
    .popup-text {
        font-size: 0.95rem;
    }
}
