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

body {
    overflow-x: hidden;
    width: 100%;
}

body.pano-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
}

.pano-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    min-height: 0;
    padding-bottom: 20px; /* Footer için alan */
}

/* Üst Başlık */
.pano-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 5px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pano-header h1 {
    font-size: 4.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pano-header i {
    margin-right: 15px;
    color: #ffd700;
    vertical-align: middle;
}

.pano-header .header-logo {
    height: 1.2em;
    width: auto;
    margin-right: 15px;
    vertical-align: middle;
    display: inline-block;
}

/* Tarih Saat Çubuğu */
.date-time-bar {
    background: #2c3e50;
    padding: 5px 20px;
    text-align: center;
    font-size: 4em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.date-time-bar .date-part {
    color: #ffd700;
    display: inline-block;
}

.date-time-bar .time-part {
    color: white;
    display: inline-block;
}

/* TRT Haber Widget */
.trt-news-widget {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 15px;
    padding: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 5px;
    height: 120px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.trt-news-widget h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
    flex-shrink: 0;
}

.trt-news-widget h3 i {
    margin-right: 8px;
    color: #ffd700;
}

.trt-news-list {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    perspective: 1000px;
    min-height: 50px;
    max-height: 50px;
}

.trt-news-item {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 8px;
    border-left: 3px solid #ffd700;
    transition: transform 0.8s ease-in-out;
    opacity: 0;
    min-height: 50px;
    max-height: 50px;
    display: none;
    align-items: center;
    transform: rotateY(90deg);
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.trt-news-item.active {
    opacity: 1;
    transform: rotateY(0deg);
    pointer-events: auto;
    display: flex;
    position: relative;
}

.trt-news-item.flipping-out {
    opacity: 1;
    transform: rotateY(-90deg);
    transition: transform 0.8s ease-in-out;
}

.trt-news-item.flipping-in {
    opacity: 1;
    transform: rotateY(90deg);
    display: flex;
    transition: transform 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.trt-news-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(5px);
}

.trt-news-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trt-news-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
}

.trt-news-title {
    font-size: 0.85em;
    line-height: 1.3;
    display: block;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.trt-news-list::-webkit-scrollbar {
    width: 6px;
}

.trt-news-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.trt-news-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

/* Video Widget */
.video-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 5px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.video-widget h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
    flex-shrink: 0;
}

.video-widget h3 i {
    margin-right: 8px;
    color: #ffd700;
}

.video-player-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.pano-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.pano-video.active {
    display: block;
}

.no-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 20px;
}

.no-video i {
    margin-bottom: 10px;
    opacity: 0.5;
}

/* Footer */
.pano-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 4px 0;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.2;
}

.pano-footer p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #FFD700;
    letter-spacing: 1px;
}

.pano-footer .author-name {
    font-family: 'Gopher', sans-serif;
    font-weight: 700;
}

.trt-news-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

/* Doğum Günü Widget */
.birthday-widget {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 15px;
    padding: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.birthday-widget h3 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
    flex-shrink: 0;
}

.birthday-widget h3 i {
    margin-right: 8px;
    color: #ffd700;
}

.birthday-widget-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 150px;
}

.birthday-widget-item {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 8px;
    border-left: 3px solid #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.birthday-widget-item:hover {
    background: rgba(255,255,255,0.25);
}

.birthday-widget-item i {
    color: #ffd700;
    font-size: 1.2em;
}

.birthday-widget-name {
    flex: 1;
    font-size: 0.95em;
    font-weight: 500;
}

.birthday-widget-content::-webkit-scrollbar {
    width: 6px;
}

.birthday-widget-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.birthday-widget-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.birthday-widget-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

/* LGS/YKS Geri Sayacı Widget - Maksimum Daraltılmış */
.countdown-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 5px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Sınav Sayacı Başlığı (Widget İçinde) */
.countdown-widget .countdown-header {
    text-align: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 3px;
    order: -1; /* En üste taşı */
    width: 100%; /* Tam genişlik */
}

.countdown-widget .countdown-header h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
}

.countdown-widget .countdown-header h3 i {
    margin-right: 5px;
    color: #ffd700;
    font-size: 1.1em;
}

/* LGS/YKS İçerik Container */
.countdown-items-container {
    display: flex;
    flex-direction: row !important;
    gap: 5px;
}

.countdown-item {
    padding: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    flex: 1 1 50% !important;
    min-width: 0;
    max-width: 50%;
    display: flex !important;
    flex-direction: column !important;
    width: auto !important;
}

.countdown-item h3 {
    margin: 0 0 3px 0;
    font-size: 1.1em;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    text-align: center;
}

.countdown-item h3 i {
    margin-right: 4px;
    color: #ffd700;
    font-size: 1.05em;
}

.countdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.countdown-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.countdown-number {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffd700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75em;
    opacity: 0.9;
}

.countdown-date {
    font-size: 0.75em;
    text-align: center;
    width: 100%;
    margin-top: 2px;
}

/* Kayan Yazı */
.marquee-container {
    background: #90EE90;
    color: #1a1a1a;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    min-height: 60px;
    max-height: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    /* Animasyon süresi JavaScript ile dinamik ayarlanacak */
    transform: translateX(0);
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-block;
    padding: 0 20px;
    font-size: 2.2em;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

.marquee-separator {
    color: #667eea;
    font-weight: bold;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ana İçerik */
.main-content {
    flex: 1;
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow: hidden;
    min-width: 0;
    min-height: 0;
}

/* Sol Panel */
.left-panel {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
    justify-content: space-between;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Sağ Panel */
.right-panel {
    width: 450px;
    min-width: 450px;
    max-width: 450px;
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent;
    min-height: 0;
    max-height: 100%;
}

/* Hava Durumu Widget */
.weather-widget, .meal-program-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.weather-widget h3, .meal-program-widget h3 {
    margin-bottom: 8px;
    font-size: 1.3em;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
}

.weather-widget h3 i, .meal-program-widget h3 i {
    margin-right: 10px;
    color: #ffd700;
}

.weather-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.weather-icon {
    font-size: 2.25em;
    flex-shrink: 0;
}

.weather-icon img {
    width: 60px;
    height: 60px;
}

.weather-info {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.weather-temp {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 2px;
}

.weather-condition {
    font-size: 1.1em;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.weather-details {
    display: flex;
    justify-content: space-around;
    font-size: 0.9em;
    margin-top: 5px;
}

.weather-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Belirli Gün ve Haftalar Widget */
.special-days-widget {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 15px;
    padding: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.special-days-widget h3 {
    margin-bottom: 8px;
    font-size: 1.3em;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
}

.special-days-widget h3 i {
    margin-right: 10px;
    color: #ffd700;
}

.special-days-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.special-day-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.special-day-item i {
    font-size: 1.5em;
    color: #ffd700;
}

.special-day-name {
    flex: 1;
    font-size: 1em;
    font-weight: 500;
    text-align: center;
}

.special-day-badge {
    background: rgba(255,255,255,0.3);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    white-space: nowrap;
}

.special-day-badge.today {
    background: #ffd700;
    color: #333;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.special-day-item.type-bayram {
    border-left-color: #ff6b6b;
}

.special-day-item.type-ozel {
    border-left-color: #4ecdc4;
}

.special-day-item.type-tatil {
    border-left-color: #ffe66d;
}

.special-day-item.type-hafta {
    border-left-color: #a8e6cf;
}

/* Yaklaşan Sınavlar Widget */
/* MEB Haberleri Widget */
.meb-news-widget {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 15px;
    padding: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    height: 350px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.meb-news-widget h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
    text-align: center;
    flex-shrink: 0;
}

.meb-news-widget h3 i {
    margin-right: 8px;
    color: #ffd700;
}

.meb-news-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.meb-news-scroll {
    animation: mebNewsScroll 30s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@keyframes mebNewsScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.meb-news-item {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 8px;
    border-left: 3px solid #ffd700;
    transition: all 0.3s;
    animation: mebNewsSlideUp 0.6s ease-out forwards;
    opacity: 0;
}

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

.meb-news-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(5px);
}

.meb-news-link {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
    line-height: 1.4;
}

.meb-news-link:hover {
    text-decoration: underline;
}

.meb-news-title {
    display: block;
}

.exams-widget {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    padding: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.exams-widget h3 {
    margin-bottom: 8px;
    font-size: 1.3em;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
}

.exams-widget h3 i {
    margin-right: 10px;
    color: #ffd700;
}

.exams-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.exam-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.exam-item i {
    font-size: 1.5em;
    color: #ffd700;
}

.exam-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.exam-name {
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.3;
}

.exam-date {
    font-size: 0.85em;
    opacity: 0.9;
}

.exam-badge {
    background: rgba(255,255,255,0.3);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    white-space: nowrap;
}

.exam-badge.today {
    background: #ffd700;
    color: #333;
    animation: pulse 2s infinite;
}

.exam-item.type-lgs {
    border-left-color: #4ecdc4;
}

.exam-item.type-yks {
    border-left-color: #ff6b6b;
}

.exam-item.type-aof {
    border-left-color: #ffe66d;
}

.exam-item.type-other {
    border-left-color: #a8e6cf;
}

/* Yemek Programı */
.meal-today {
    padding: 8px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.meal-days-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
}

.meal-day-item {
    flex: 1;
    min-width: 0;
}

.meal-today strong {
    display: inline;
    margin-right: 5px;
    font-size: 1em;
}

.meal-list {
    position: relative;
    height: 100%;
}

.meal-day-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    pointer-events: none;
}

.meal-day-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.meal-day-slide strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1.1em;
}

.meal-item {
    display: inline-block;
    margin: 2px 5px 2px 0;
    padding: 3px 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    font-size: 0.95em;
}

/* Admin Giriş Butonu */
.admin-login-btn {
    margin-top: auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 20px;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.admin-login-btn i {
    margin-right: 10px;
    color: #ffd700;
}

/* Admin Modal */
.admin-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

.admin-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-content {
    background: white;
    border-radius: 15px;
    padding: 0;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideDown 0.3s;
}

.admin-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-modal-header h2 {
    margin: 0;
    font-size: 1.5em;
}

.admin-modal-header h2 i {
    margin-right: 10px;
    color: #ffd700;
}

.admin-modal-close {
    color: white;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

.admin-modal-close:hover {
    transform: rotate(90deg);
    color: #ffd700;
}

.admin-modal-form {
    padding: 25px;
}

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

.form-group-modal label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group-modal label i {
    margin-right: 8px;
    color: #667eea;
}

.form-group-modal input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s;
}

.form-group-modal input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-toggle-modal {
    position: relative;
}

.password-toggle-modal input {
    padding-right: 45px;
}

.password-toggle-modal i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 1.1em;
    margin-top: 20px;
    z-index: 1;
}

.btn-modal-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-modal-submit i {
    margin-right: 8px;
}

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

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

/* Slide Show */
.slideshow-container {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background: #000;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    transition: none;
}

.slide.active {
    opacity: 1;
}

/* Farklı geçiş animasyonları */
.slide.animate-fade {
    animation: fadeIn 1s ease-in-out;
}

.slide.animate-slide-left {
    animation: slideLeft 1s ease-in-out;
}

.slide.animate-slide-right {
    animation: slideRight 1s ease-in-out;
}

.slide.animate-slide-up {
    animation: slideUp 1s ease-in-out;
}

.slide.animate-slide-down {
    animation: slideDown 1s ease-in-out;
}

.slide.animate-zoom-in {
    animation: zoomIn 1s ease-in-out;
}

.slide.animate-zoom-out {
    animation: zoomOut 1s ease-in-out;
}

.slide.animate-rotate {
    animation: rotateIn 1s ease-in-out;
}

.slide.animate-flip {
    animation: flipIn 1s ease-in-out;
}

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

@keyframes slideLeft {
    from { 
        opacity: 0;
        transform: translateX(100%);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from { 
        opacity: 0;
        transform: translateX(-100%);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-100%);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.5);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from { 
        opacity: 0;
        transform: scale(1.5);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from { 
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to { 
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipIn {
    from { 
        opacity: 0;
        transform: rotateY(-90deg);
    }
    to { 
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.slide img {
    width: 100%;
    height: 85%;
    object-fit: cover;
}

.slide-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    height: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-caption h4 {
    font-size: 1.8em;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-caption p {
    font-size: 1.2em;
    opacity: 0.9;
}

.no-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 1.5em;
}

.no-images i {
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Admin Panel Stilleri */
.admin-container {
    min-height: 100vh;
    background: #f5f5f5;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.admin-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 8px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.admin-header h1 {
    font-size: 1.3em;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.admin-nav {
    background: white;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.admin-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.admin-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.admin-nav li {
    margin: 0;
}

.admin-nav a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    font-size: 0.95em;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.admin-nav a:hover {
    background: #f8f9fa;
    border-bottom-color: #2a5298;
    color: #2a5298;
}

.admin-nav a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-color: #764ba2;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.admin-nav a.active i {
    color: #ffd700;
}

.admin-nav a i {
    margin-right: 8px;
}

.admin-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    flex: 1;
    overflow-x: hidden;
    box-sizing: border-box;
    width: 100%;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card h2 {
    margin-bottom: 20px;
    color: #2a5298;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card h2 i {
    margin-right: 10px;
}

.card h3 {
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group {
    margin-bottom: 20px;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

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

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-primary {
    background: #2a5298;
    color: white;
}

.btn-primary:hover {
    background: #1e3c72;
}

.btn-danger {
    background: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-success {
    background: #27ae60;
    color: white;
}

.btn-success:hover {
    background: #229954;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
    line-height: 1.4;
}

.table td {
    padding: 4px 8px;
}

.table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.table tr:hover {
    background: #f8f9fa;
}

.password-toggle {
    position: relative;
}

.password-toggle input {
    padding-right: 40px;
}

.password-toggle i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2a5298;
}

.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 15px;
    margin-top: auto;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .left-panel {
        width: 100%;
    }
    
    .pano-header h1 {
        font-size: 3em;
    }
    
    .date-time-bar {
        font-size: 2em;
        padding: 5px 20px;
    }
}

@media (max-width: 1920px) {
    .pano-header h1 {
        font-size: 4em;
    }
    
    .date-time-bar {
        font-size: 3.5em;
    }
}

@media (min-width: 1921px) {
    .pano-header h1 {
        font-size: 4.5em;
    }
    
    .date-time-bar {
        font-size: 4.5em;
    }
}

/* Çok geniş ekranlar için otomatik font boyutu ayarlama */
@media (min-width: 2560px) {
    .pano-header h1 {
        font-size: 5em;
    }
}

/* Tam Ekran Resim Overlay */
.fullscreen-image-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000 !important;
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in-out;
    margin: 0 !important;
    padding: 0 !important;
}

.fullscreen-image-overlay.hidden {
    animation: fadeOut 0.5s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.fullscreen-image {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoomIn 0.5s ease-in-out;
}

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

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

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

/* Doğum Günü Overlay */
.birthday-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99998 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in-out;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.birthday-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    animation: zoomIn 0.8s ease-out;
}

.birthday-cake-container {
    margin-bottom: 40px;
    animation: bounce 1s infinite;
}

.birthday-cake-icon {
    position: relative;
    width: 350px;
    height: 320px;
    margin: 0 auto;
}

/* Pasta Tabağı */
.cake-plate {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 20px;
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Alt Katman */
.cake-layer-1 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 90px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 50%, #FFFFFF 100%);
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2), inset 0 -8px 15px rgba(0,0,0,0.1);
}

/* Orta Katman */
.cake-layer-2 {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 50%, #FFFFFF 100%);
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2), inset 0 -6px 12px rgba(0,0,0,0.1);
}

/* Üst Katman */
.cake-layer-3 {
    position: absolute;
    bottom: 190px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 70px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 50%, #FFFFFF 100%);
    border-radius: 0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2), inset 0 -5px 10px rgba(0,0,0,0.1);
}

/* Krem Şanti Süslemeleri */
.frosting-decoration {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #FFE4E1 transparent transparent transparent;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

/* Alt Katman Süslemeleri (Layer 1) */
.cake-layer-1 .frosting-1 {
    bottom: 85px;
    left: 15%;
    border-width: 0 8px 12px 8px;
    transform: rotate(0deg);
}

.cake-layer-1 .frosting-2 {
    bottom: 85px;
    left: 30%;
    border-width: 0 7px 11px 7px;
    transform: rotate(15deg);
}

.cake-layer-1 .frosting-3 {
    bottom: 85px;
    left: 45%;
    border-width: 0 9px 13px 9px;
    transform: rotate(-10deg);
}

.cake-layer-1 .frosting-4 {
    bottom: 85px;
    left: 60%;
    border-width: 0 8px 12px 8px;
    transform: rotate(20deg);
}

.cake-layer-1 .frosting-5 {
    bottom: 85px;
    left: 75%;
    border-width: 0 7px 11px 7px;
    transform: rotate(-15deg);
}

.cake-layer-1 .frosting-6 {
    bottom: 85px;
    left: 85%;
    border-width: 0 8px 12px 8px;
    transform: rotate(10deg);
}

/* Orta Katman Süslemeleri (Layer 2) */
.cake-layer-2 .frosting-7 {
    bottom: 75px;
    left: 12%;
    border-width: 0 7px 10px 7px;
    transform: rotate(-5deg);
}

.cake-layer-2 .frosting-8 {
    bottom: 75px;
    left: 28%;
    border-width: 0 8px 11px 8px;
    transform: rotate(12deg);
}

.cake-layer-2 .frosting-9 {
    bottom: 75px;
    left: 50%;
    border-width: 0 9px 12px 9px;
    transform: rotate(0deg);
}

.cake-layer-2 .frosting-10 {
    bottom: 75px;
    left: 72%;
    border-width: 0 8px 11px 8px;
    transform: rotate(-12deg);
}

.cake-layer-2 .frosting-11 {
    bottom: 75px;
    left: 88%;
    border-width: 0 7px 10px 7px;
    transform: rotate(8deg);
}

/* Üst Katman Süslemeleri (Layer 3) */
.cake-layer-3 .frosting-12 {
    bottom: 65px;
    left: 20%;
    border-width: 0 6px 9px 6px;
    transform: rotate(10deg);
}

.cake-layer-3 .frosting-13 {
    bottom: 65px;
    left: 40%;
    border-width: 0 7px 10px 7px;
    transform: rotate(-8deg);
}

.cake-layer-3 .frosting-14 {
    bottom: 65px;
    left: 60%;
    border-width: 0 8px 11px 8px;
    transform: rotate(5deg);
}

.cake-layer-3 .frosting-15 {
    bottom: 65px;
    left: 80%;
    border-width: 0 6px 9px 6px;
    transform: rotate(-10deg);
}

/* Krem Şanti */
.cake-frosting {
    position: absolute;
    bottom: 260px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 25px;
    background: linear-gradient(135deg, #FFE4E1 0%, #FFF0F5 50%, #FFE4E1 100%);
    border-radius: 120px 120px 0 0;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
}

.cake-frosting::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        #FF69B4 0px,
        #FF69B4 15px,
        #FF1493 15px,
        #FF1493 30px
    );
    border-radius: 120px 120px 0 0;
}

/* Vişneler */
.cake-cherries {
    position: absolute;
    bottom: 265px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 35px;
    justify-content: center;
    width: 240px;
}

.cherry {
    font-size: 28px;
    animation: cherryFloat 2s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.cherry:nth-child(1) { animation-delay: 0s; }
.cherry:nth-child(2) { animation-delay: 0.4s; }
.cherry:nth-child(3) { animation-delay: 0.8s; }
.cherry:nth-child(4) { animation-delay: 1.2s; }
.cherry:nth-child(5) { animation-delay: 1.6s; }

@keyframes cherryFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

/* Mumlar */
.cake-candles {
    position: absolute;
    bottom: 285px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 240px;
}

.candle-item {
    position: relative;
    width: 16px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 50%, #FF6B6B 100%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.candle-wick {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: #333;
    border-radius: 1px;
}

.candle-flame {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 30px;
    background: linear-gradient(180deg, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flameFlicker 0.4s infinite alternate;
    box-shadow: 0 0 20px #FFD700, 0 0 30px #FF8C00, 0 0 40px #FF4500;
}

@keyframes flameFlicker {
    0% {
        transform: translateX(-50%) scale(1) rotate(-4deg);
        opacity: 1;
    }
    25% {
        transform: translateX(-50%) scale(1.2) rotate(2deg);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-50%) scale(1.1) rotate(-2deg);
        opacity: 0.95;
    }
    75% {
        transform: translateX(-50%) scale(1.15) rotate(3deg);
        opacity: 0.92;
    }
    100% {
        transform: translateX(-50%) scale(1) rotate(-3deg);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.birthday-title {
    font-size: 7em;
    margin: 0 0 50px 0;
    color: #ffd700;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
}

.birthday-names {
    font-size: 5em;
    margin-top: 40px;
}

.birthday-name {
    margin: 25px 0;
    color: #fff;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
    font-weight: bold;
}

.birthday-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: confettiRain 4s linear infinite;
    top: -20px;
    left: var(--start-x, 0%);
    animation-delay: var(--delay, 0s);
}

.confetti-piece:nth-child(2n) {
    background: #4ecdc4;
    animation-duration: 3.5s;
}

.confetti-piece:nth-child(3n) {
    background: #ffe66d;
    animation-duration: 4.5s;
}

.confetti-piece:nth-child(4n) {
    background: #95e1d3;
    animation-duration: 3s;
}

.confetti-piece:nth-child(5n) {
    background: #f38181;
    animation-duration: 5s;
}

.confetti-piece:nth-child(6n) {
    background: #a8e6cf;
    animation-duration: 4s;
}

.confetti-piece:nth-child(7n) {
    background: #ffd3a5;
    animation-duration: 3.8s;
}

@keyframes confettiRain {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 20px)) translateX(var(--drift-x, 0px)) rotate(720deg);
        opacity: 0;
    }
}

/* Havai Fişek */
.firework-rocket {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    bottom: 0;
    left: var(--start-x, 50%);
    animation: fireworkLaunch 1s ease-out forwards;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.firework-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: fireworkExplode 1.5s ease-out forwards;
    left: var(--explode-x, 50%);
    top: var(--explode-y, 50%);
}

@keyframes fireworkLaunch {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(var(--launch-height, -400px)) scale(0.5);
        opacity: 0;
    }
}

@keyframes fireworkExplode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx, 0), var(--dy, 0)) scale(0);
        opacity: 0;
    }
}

