/* Genel Stiller */
:root {
    --primary-color: #28d9f0;
    --primary-hover: #1fc8de;
    --secondary-color: #FF6B6B;
    --secondary-hover: #ff5252;
    --danger-color: #e74a3b;
    --warning-color: #f6c23e;
    --dark-color: #2c3e50;
    --light-color: #f0f7fa;
    --text-muted: #6c757d;
    --bs-primary: #28d9f0;
    --bs-primary-rgb: 40, 217, 240;
    --bs-secondary: #FF6B6B;
    --bs-secondary-rgb: 255, 107, 107;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--dark-color);
    font-family: 'Nunito', sans-serif;
    position: relative;
    min-height: 100vh;
    padding-top: 76px; /* Navbar için padding */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(40, 217, 240, 0.05) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(255, 107, 107, 0.05) 2%, transparent 0%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), #1fc8de) !important;
    box-shadow: 0 2px 15px rgba(40, 217, 240, 0.2);
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(40, 217, 240, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand i {
    transition: transform 0.3s ease;
}

.navbar-brand:hover i {
    transform: scale(1.2);
}

.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: white !important;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link i {
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.navbar .btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Mobil Menü */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 0.5rem;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        max-width: 280px;
        margin-left: auto;
    }

    .navbar-collapse .nav-link {
        color: var(--dark-color) !important;
        padding: 0.6rem 0.8rem !important;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        font-weight: 500;
        display: flex;
        align-items: center;
    }

    .navbar-collapse .nav-link:hover {
        background-color: rgba(40, 217, 240, 0.1);
        color: var(--primary-color) !important;
    }

    .navbar-collapse .nav-link i {
        color: var(--primary-color);
        margin-right: 8px;
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }

    .navbar-collapse .btn-outline-light {
        background-color: var(--primary-color);
        color: white !important;
        border: none;
        margin: 0.5rem auto;
        text-align: center;
        padding: 0.6rem 1rem !important;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .navbar-collapse .btn-outline-light i {
        color: white;
        margin: 0;
        width: auto;
    }

    .navbar-collapse .btn-outline-light:hover {
        background-color: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(40, 217, 240, 0.2);
    }

    .navbar-collapse .nav-link::after {
        display: none;
    }

    .navbar-collapse .navbar-nav {
        gap: 0.3rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0;
    margin-bottom: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.business-logo {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    position: relative;
    background: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.business-logo img {
    transition: all 0.3s ease;
    border-radius: 50%;
}

.business-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(40, 217, 240, 0.3) !important;
}

.hero-badges {
    margin-top: 1.5rem;
}

.hero-badges .badge {
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-badges .badge i {
    transition: transform 0.3s ease;
}

.hero-badges .badge:hover i {
    transform: scale(1.2);
}

/* Badge Background Colors */
.bg-primary-subtle {
    background-color: rgba(40, 217, 240, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(40, 167, 69, 0.1) !important;
}

.bg-info-subtle {
    background-color: rgba(23, 162, 184, 0.1) !important;
}

/* Badge Text Colors */
.text-primary {
    color: #28d9f0 !important;
}

.text-success {
    color: #28a745 !important;
}

.text-info {
    color: #17a2b8 !important;
}

/* Badge Hover Effects */
.hero-badges .badge.bg-primary-subtle:hover {
    background-color: rgba(40, 217, 240, 0.15) !important;
    box-shadow: 0 5px 15px rgba(40, 217, 240, 0.2);
}

.hero-badges .badge.bg-success-subtle:hover {
    background-color: rgba(40, 167, 69, 0.15) !important;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.hero-badges .badge.bg-info-subtle:hover {
    background-color: rgba(23, 162, 184, 0.15) !important;
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.2);
}

/* Kartlar */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(40, 217, 240, 0.1);
    transition: all 0.3s ease;
    background-color: white;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(40, 217, 240, 0.15);
}

.card-title {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Butonlar */
.btn {
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.btn-secondary,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--secondary-hover) !important;
    border-color: var(--secondary-hover) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-secondary {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Formlar */
.form-control, .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(40, 217, 240, 0.2);
    background-color: white;
    color: var(--dark-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 217, 240, 0.15);
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Mobil Öncelikli Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .appointment-slot {
        min-width: 120px;
        min-height: 80px;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
}

/* Randevu Takvimi */
.calendar {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.calendar .day {
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
}

.calendar .day:hover {
    background-color: var(--light-color);
}

.calendar .day.active {
    background-color: var(--primary-color);
    color: white;
}

/* İşletme Kartları */
.business-card {
    position: relative;
    overflow: hidden;
}

.business-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.business-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    color: white;
}

/* İşletme Logo */
.business-logo {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    position: relative;
}

.business-logo img {
    transition: all 0.3s ease;
}

.business-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(40, 217, 240, 0.3) !important;
}

/* Yükleme Animasyonu */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Bildirimler */
.notification {
    display: none;
}

/* Bootstrap Override */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Link Override */
a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-hover);
}

/* Takvim Stilleri */
.fc {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.fc .fc-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5em !important;
}

.fc .fc-toolbar-title {
    font-size: 1.5em;
    color: var(--dark-color);
    margin: 0;
    width: 100%;
    text-align: center;
}

.fc .fc-button-group {
    display: flex;
    gap: 5px;
}

.fc .fc-button {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    font-weight: 600;
    height: auto;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.fc .fc-button:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(40, 217, 240, 0.1) !important;
}

.fc .fc-daygrid-day-number {
    color: var(--dark-color);
    text-decoration: none;
    padding: 8px;
}

.fc .fc-daygrid-day:hover {
    background-color: rgba(40, 217, 240, 0.05);
}

.fc .fc-daygrid-day.fc-day-selected {
    background-color: rgba(40, 217, 240, 0.2) !important;
}

.fc .fc-event {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 2px 4px;
    border-radius: 3px;
}

.fc .fc-event:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.fc .fc-event-title {
    font-weight: 600;
}

.fc .fc-col-header-cell {
    padding: 10px 0;
    background-color: var(--light-color);
}

.fc .fc-col-header-cell-cushion {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
}

/* Mobil Takvim */
@media (max-width: 768px) {
    .fc {
        padding: 10px;
    }

    .fc .fc-toolbar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .fc .fc-toolbar-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .fc .fc-button-group {
        width: 100%;
        justify-content: center;
    }
    
    .fc .fc-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9em;
        min-width: 35px;
        height: 35px;
    }

    .fc .fc-prev-button,
    .fc .fc-next-button {
        padding: 0.4rem !important;
    }

    .fc .fc-today-button {
        width: 100%;
        margin-top: 10px;
    }
    
    .fc .fc-daygrid-day-number {
        padding: 4px;
        font-size: 0.9em;
    }

    .fc .fc-view-harness {
        min-height: 300px;
    }

    .fc .fc-daygrid-body {
        width: 100% !important;
    }

    .fc .fc-daygrid-day {
        min-height: 40px;
    }

    .fc .fc-daygrid-day-frame {
        padding: 2px;
    }

    .fc .fc-daygrid-day-events {
        margin-top: 2px;
    }

    .fc .fc-event {
        margin: 1px 0;
        padding: 1px 2px;
        font-size: 0.8em;
    }
}

/* Randevu Slotları */
.appointment-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px;
}

.appointment-slot {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(40, 217, 240, 0.1);
}

.appointment-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 217, 240, 0.2);
}

.appointment-slot.booked {
    background: linear-gradient(135deg, var(--primary-color), #1fc8de);
    border-color: var(--primary-color);
}

.appointment-slot.booked.pending {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-color: #ffc107;
}

.appointment-slot.booked.confirmed {
    background: linear-gradient(135deg, var(--primary-color), #1fc8de);
    border-color: var(--primary-color);
}

.appointment-slot.booked.cancelled {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border-color: #dc3545;
    opacity: 0.7;
}

.appointment-slot.available {
    background-color: white;
    border-style: dashed;
    border-color: rgba(40, 217, 240, 0.5);
}

.slot-time {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.slot-time i {
    font-size: 0.9em;
    color: var(--primary-color);
    opacity: 0.8;
}

.slot-details {
    font-size: 0.9em;
}

.customer-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-name i {
    color: rgba(255, 255, 255, 0.8);
}

.service-name {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-name i {
    color: rgba(255, 255, 255, 0.8);
}

.available-text {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.available-text i {
    color: var(--primary-color);
    opacity: 0.8;
}

.appointment-slot.booked .slot-time,
.appointment-slot.booked .slot-time i {
    color: white;
}

/* Mobil Randevu Slotları */
@media (max-width: 768px) {
    .appointment-slots {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
        padding: 10px;
    }

    .appointment-slot {
        padding: 10px;
        min-height: 80px;
    }

    .slot-time {
        font-size: 1em;
        margin-bottom: 5px;
    }

    .slot-details {
        font-size: 0.8em;
    }
}

/* Modal */
.modal-backdrop {
    display: none;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    pointer-events: none;
    padding-top: 76px;
}

.modal.show {
    display: flex;
}

.modal-dialog {
    position: relative;
    margin: 0 auto;
    max-width: 400px;
    width: 90%;
    pointer-events: auto;
    transform: translateY(-20px);
}

.modal-content {
    border-radius: 15px;
    border: none;
    background-color: white;
    box-shadow: 0 10px 30px rgba(40, 217, 240, 0.2);
    position: relative;
    z-index: 2001;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), #1fc8de);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body .form-label {
    display: none;
}

.modal-body .form-control,
.modal-body .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(40, 217, 240, 0.2);
    background-color: white;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.modal-body .form-control::placeholder {
    color: var(--text-muted);
}

.modal-body .form-select {
    color: var(--text-muted);
}

.modal-body .form-select option:not(:first-child) {
    color: var(--dark-color);
}

.modal-footer {
    border-top: 1px solid rgba(40, 217, 240, 0.1);
    padding: 1rem;
}

.modal.fade .modal-dialog {
    transform: scale(0.95);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* İkonlar */
.fa-3x, .fa-4x {
    color: var(--primary-color);
    opacity: 0.9;
}

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 600;
}

.lead {
    color: var(--text-muted);
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1fc8de);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer .text-center h5::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer .text-md-end h5::after {
    left: auto;
    right: 0;
}

.footer .text-muted {
    color: #a0a0a0 !important;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobil Footer */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer .text-md-start,
    .footer .text-md-end {
        text-align: center !important;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer .mb-4 {
        margin-bottom: 2rem !important;
    }
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-piece {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    animation: pieceAnimation 1.5s infinite;
}

.loader-piece:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.loader-piece:nth-child(2) {
    top: 0;
    right: 0;
    animation-delay: 0.2s;
}

.loader-piece:nth-child(3) {
    bottom: 0;
    left: 0;
    animation-delay: 0.4s;
}

.loader-piece:nth-child(4) {
    bottom: 0;
    right: 0;
    animation-delay: 0.6s;
}

.loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0;
    animation: iconFadeIn 1.5s infinite;
}

@keyframes pieceAnimation {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(0.5) rotate(180deg);
        opacity: 0.5;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

@keyframes iconFadeIn {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
} 