/**
 * İSTASYON 6 - HARİTADA PAYLAŞ Custom Stylesheet
 * MEB Corporate Design & Interactive Game Aesthetics
 */

:root {
    --meb-navy: #1B365D;
    --meb-red: #C41230;
    --meb-green: #00AB6B;
    --meb-blue-light: #EBF3FA;
    --meb-gray-bg: #F8FAFC;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--meb-gray-bg);
    color: #2D3748;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Navbar */
.meb-navbar {
    background: linear-gradient(135deg, var(--meb-navy) 0%, #0F2342 100%);
    box-shadow: 0 4px 16px rgba(15, 35, 66, 0.15);
}

.meb-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn-meb-primary {
    background: linear-gradient(135deg, var(--meb-navy) 0%, #2A4875 100%);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
}
.btn-meb-primary:hover {
    background: linear-gradient(135deg, #122846 0%, var(--meb-navy) 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 54, 93, 0.3);
}

.btn-meb-red {
    background: linear-gradient(135deg, var(--meb-red) 0%, #E61E3E 100%);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
}
.btn-meb-red:hover {
    background: linear-gradient(135deg, #A80E27 0%, var(--meb-red) 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 18, 48, 0.3);
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #1B365D 0%, #00AB6B 100%);
    color: #FFFFFF;
    border: none;
    font-weight: 700;
}
.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #0F2342 0%, #008754 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Hover Transforms & Animations */
.hover-lift {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

.hover-scale {
    transition: transform 0.2s ease-in-out;
}
.hover-scale:hover {
    transform: scale(1.08);
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-in-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Map & Pins Styling */
.turkey-map-wrapper {
    touch-action: manipulation;
}

.province-node {
    transition: all 0.2s ease;
}

.map-pin {
    z-index: 10;
}

.pin-badge {
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(196, 18, 48, 0.4);
}

/* Memory Cards */
.memory-card {
    perspective: 1000px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.memory-card.flipped {
    transform: rotateY(180deg);
}

/* Leaderboard Podium */
.podium-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    min-height: 220px;
    box-shadow: 0 12px 28px rgba(255, 215, 0, 0.4);
}
.podium-2 {
    background: linear-gradient(135deg, #E0E0E0 0%, #B0B0B0 100%);
    color: #1A1A1A;
    min-height: 180px;
    box-shadow: 0 10px 24px rgba(176, 176, 176, 0.4);
}
.podium-3 {
    background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%);
    color: #FFFFFF;
    min-height: 150px;
    box-shadow: 0 8px 20px rgba(205, 127, 50, 0.4);
}

/* Print Utilities */
@media print {
    .no-print {
        display: none !important;
    }
    .print-only {
        display: block !important;
    }
    body {
        background-color: #FFFFFF !important;
    }
}
