/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #FF69B4 0%, #FFB6C1 50%, #FFC0CB 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    overflow: hidden;
}

/* Canvas Tam Ekran ve Pixelart Optimizasyonu */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    z-index: 1;
}

/* Ana Oyun Konteyneri */
.game-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

/* Oyun UI Overlay */
.game-ui {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

/* Logo Header - Can Barı Stilinde */
.game-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 80px;   /* Küçültüldü */
    height: 80px;  /* Küçültüldü */
    z-index: 25;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.95);  /* Can barı gibi beyaz arka plan */
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 105, 180, 0.3);
    padding: 8px;  /* İç boşluk */
}

.game-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    /* Gölge ve kenarlık kaldırıldı çünkü artık container'da */
}

/* Üst Bar - Logo ile çakışma önlendi */
.top-bar {
    position: fixed;
    top: 15px;
    left: 140px; /* Logo için yer bırakıldı */
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 105, 180, 0.3);
    z-index: 15;
}

.score-display, .lives-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #C71585;
}

.score-label, .lives-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#scoreValue {
    color: #FF69B4;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

/* Kalp Canları - İyileştirilmiş */
#heartsContainer {
    display: flex;
    gap: 8px;
}

.heart {
    font-size: 24px;
    color: #8B4513; /* Kahve rengi */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(139, 69, 19, 0.5));
}

.heart.lost {
    color: #DDD;
    transform: scale(0.7);
    filter: grayscale(100%);
}

/* Alt Bar - Sol Köşede Dikey Küçük Panel */
.bottom-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    color: #C71585;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 105, 180, 0.3);
    z-index: 15;
}

.level-display {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.level-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#levelValue {
    color: #FF69B4;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.controls-hint {
    display: none; /* Küçük panelde yer kaplamıyor */
}

/* Süper Ebe Energy Bar - Orta Konum, Enerjik Görünüm */
.nitro-bar {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 80px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 245, 0.95));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(255, 20, 147, 0.3),
        0 4px 16px rgba(255, 105, 180, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 20, 147, 0.4);
    padding: 15px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: energyPulse 2s ease-in-out infinite;
}

.nitro-label {
    font-size: 16px;
    font-weight: bold;
    color: #FF1493;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 20, 147, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: labelGlow 1.5s ease-in-out infinite alternate;
}

.nitro-container {
    position: relative;
    flex: 1;
    background: linear-gradient(90deg, rgba(50, 50, 50, 0.4), rgba(100, 100, 100, 0.3));
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.4);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 20, 147, 0.2);
}

.nitro-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        #FFD700 0%, 
        #FF8C00 25%, 
        #FF4500 50%, 
        #FF1493 75%, 
        #8A2BE2 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.7),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    animation: energyFlow 1s linear infinite;
}

.nitro-fill.ready {
    animation: nitroGlow 1s ease-in-out infinite alternate;
}

.nitro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
    color: #FFF;
    text-shadow: 
        0 0 8px rgba(255, 20, 147, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    letter-spacing: 1px;
}

@keyframes nitroGlow {
    0% { 
        box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
        filter: brightness(1);
    }
    100% { 
        box-shadow: 0 0 20px rgba(255, 20, 147, 0.9);
        filter: brightness(1.2);
    }
}

/* Yeni Enerjik Animasyonlar */
@keyframes energyPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 8px 32px rgba(255, 20, 147, 0.3),
            0 4px 16px rgba(255, 105, 180, 0.2);
    }
    50% { 
        transform: translateX(-50%) scale(1.02);
        box-shadow: 
            0 12px 40px rgba(255, 20, 147, 0.4),
            0 6px 20px rgba(255, 105, 180, 0.3);
    }
}

@keyframes labelGlow {
    0% { 
        text-shadow: 
            0 0 10px rgba(255, 20, 147, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    100% { 
        text-shadow: 
            0 0 20px rgba(255, 20, 147, 0.9),
            0 0 30px rgba(255, 20, 147, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.2);
    }
}

@keyframes energyFlow {
    0% { 
        filter: brightness(1) saturate(1);
    }
    50% { 
        filter: brightness(1.2) saturate(1.3);
    }
    100% { 
        filter: brightness(1) saturate(1);
    }
}

@keyframes energyBoost {
    0% { 
        transform: translateX(-50%) scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        filter: brightness(1.4) saturate(1.5);
        box-shadow: 
            0 16px 48px rgba(255, 20, 147, 0.6),
            0 8px 24px rgba(255, 105, 180, 0.4);
    }
    100% { 
        transform: translateX(-50%) scale(1);
        filter: brightness(1);
    }
}

/* Menü Stilleri - Geliştirilmiş */
.menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.98);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 4px solid #FF69B4;
    z-index: 100;
    display: none;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
}

.menu.active {
    display: block;
    animation: menuSlideIn 0.5s ease-out;
}

@keyframes menuSlideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Başlangıç Menüsü */
.game-title {
    font-size: 42px;
    color: #C71585;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.game-subtitle {
    font-size: 20px;
    color: #FF69B4;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.4;
}

.instructions {
    margin-top: 30px;
    color: #666;
    font-size: 16px;
    background: rgba(255, 182, 193, 0.2);
    padding: 20px;
    border-radius: 15px;
    border: 2px dashed #FFB6C1;
}

.instructions p {
    margin: 10px 0;
    line-height: 1.6;
}

.instructions p:first-child {
    font-weight: bold;
    color: #C71585;
}

/* Oyun Sonu Menüsü */
.game-over-title {
    font-size: 36px;
    color: #C71585;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.final-score, .high-score {
    margin: 20px 0;
    font-size: 22px;
    color: #333;
    background: rgba(255, 105, 180, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.final-score span:last-child,
.high-score span:last-child {
    color: #FF69B4;
    font-weight: bold;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.love-message {
    margin-top: 30px;
    color: #FF69B4;
    font-style: italic;
    font-size: 18px;
    background: rgba(255, 192, 203, 0.3);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.4);
}

/* Combo İstatistikleri */
.combo-stats {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 182, 193, 0.3);
    border-radius: 10px;
    border: 2px solid rgba(255, 105, 180, 0.4);
    font-size: 16px;
    color: #C71585;
}

.combo-stats p {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-stats strong {
    color: #FF69B4;
}

/* Duraklama Menüsü */
.pause-title {
    font-size: 32px;
    color: #C71585;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Menü Butonları - Geliştirilmiş */
.menu-button {
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 20px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    margin: 12px;
    box-shadow: 
        0 6px 20px rgba(255, 105, 180, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(255, 105, 180, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
}

.menu-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(255, 105, 180, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Mobil Kontroller - Yeniden Tasarlandı */
.mobile-controls {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
}

/* Yön tuşları - Kenarlar */
.mobile-direction-left {
    position: fixed !important;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    pointer-events: auto;
}

.mobile-direction-right {
    position: fixed !important;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    pointer-events: auto;
}

/* Orta kontrol butonları */
.mobile-center-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    pointer-events: auto;
}

/* Mobil butonlar - Genel */
.mobile-button {
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 
        0 6px 20px rgba(255, 105, 180, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    touch-action: manipulation;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

/* Küçük butonlar - Orta kontroller */
.mobile-small {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
}

/* Nitro butonu özel stilleri */
#nitroButton {
    background: linear-gradient(135deg, #FFD700, #FF8C00) !important;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
}

#nitroButton:active {
    background: linear-gradient(135deg, #FF8C00, #FFD700) !important;
    transform: scale(0.95);
}

/* Nitro butonu hazır olduğunda */
#nitroButton.ready {
    animation: nitroButtonGlow 1s ease-in-out infinite alternate;
}

@keyframes nitroButtonGlow {
    0% { 
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
    100% { 
        box-shadow: 
            0 8px 30px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
}

.mobile-button:active {
    transform: scale(0.95);
    box-shadow: 
        0 3px 12px rgba(255, 105, 180, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Responsive Tasarım - Tam Ekran */
@media (max-width: 900px) {
    .mobile-controls {
        display: block;
    }
    
    .game-logo {
        width: 70px;
        height: 70px;
        top: 15px;
        left: 15px;
    }
    
    .top-bar {
        left: 100px; /* Logo için yer bırak */
        padding: 10px 15px;
    }
    
    .bottom-bar {
        width: 100px;
        padding: 12px;
    }
    
    .level-label {
        font-size: 11px;
    }
    
    #levelValue {
        font-size: 16px;
    }
    
    .score-display, .lives-display {
        font-size: 16px;
    }
    
    #scoreValue {
        font-size: 20px;
    }
    
    .heart {
        font-size: 20px;
    }
    
    .nitro-bar {
        width: 250px;
        height: 70px;
        top: 100px;
        padding: 12px;
    }
    
    /* Mobil yön tuşları - Tablet için */
    .mobile-direction-left, .mobile-direction-right {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .mobile-small {
        width: 55px !important;
        height: 55px !important;
        font-size: 22px !important;
    }
}

@media (max-width: 480px) {
    .nitro-bar {
        width: 200px;
        height: 60px;
        top: 80px;
        padding: 10px;
    }
    
    .nitro-label {
        font-size: 14px;
    }
    
    .nitro-text {
        font-size: 10px;
    }
    
    .game-title {
        font-size: 32px;
    }
    
    .menu {
        padding: 30px;
        margin: 20px;
    }
    
    .top-bar {
        left: 85px;
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .bottom-bar {
        width: 90px;
        padding: 10px;
        bottom: 15px;
        left: 15px;
    }
    
    .level-label {
        font-size: 10px;
    }
    
    #levelValue {
        font-size: 14px;
    }
    
    #scoreValue {
        font-size: 18px;
    }
    
    .heart {
        font-size: 18px;
    }
    
    .game-logo {
        width: 60px;
        height: 60px;
    }
    
    /* Küçük mobil cihazlar için kontroller */
    .mobile-direction-left, .mobile-direction-right {
        width: 65px;
        height: 65px;
        font-size: 26px;
        left: 15px; /* Sol için */
    }
    
    .mobile-direction-right {
        right: 15px; /* Sağ için - left override ediliyor */
        left: auto;
    }
    
    .mobile-small {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    
    .mobile-center-controls {
        bottom: 25px;
        gap: 12px;
    }
}

/* Animasyonlar - Geliştirilmiş */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes coffeeGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(139, 69, 19, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 10px rgba(139, 69, 19, 0.8));
        transform: scale(1.1);
    }
}

.heart.gained {
    animation: coffeeGlow 0.8s ease;
}

@keyframes scoreIncrease {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); color: #FFB6C1; }
    100% { transform: scale(1); }
}

.score-increase {
    animation: scoreIncrease 0.6s ease;
}

@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
        border-color: rgba(255, 255, 255, 0.8);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(255, 105, 180, 0.6);
        border-color: rgba(255, 105, 180, 0.8);
    }
}

.game-logo img {
    animation: logoGlow 4s ease-in-out infinite;
}

/* Yükleme Ekranı - Geliştirilmiş */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-text {
    color: white;
    font-size: 32px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    font-weight: bold;
}

/* Gelişmiş Hover Efektleri */
.menu-button, .mobile-button {
    position: relative;
    overflow: hidden;
}

.menu-button::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.6s;
}

.menu-button:hover::before {
    left: 100%;
}

/* Tam Ekran Modunda Scrollbar Gizle */
html, body {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* UI Geçiş Animasyonları */
.game-ui > * {
    animation: uiFadeIn 1s ease-out;
}

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

/* Desktop için ses butonu (sağ üst köşe) */
@media (min-width: 901px) {
    .sound-button {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        bottom: auto !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        z-index: 30 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 2px solid rgba(255, 105, 180, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.3s ease !important;
    }

    .sound-button:hover {
        background: rgba(255, 255, 255, 1) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 6px 25px rgba(255, 105, 180, 0.3) !important;
    }

    .sound-button.muted {
        background: rgba(200, 200, 200, 0.95) !important;
        color: #666 !important;
        border-color: rgba(150, 150, 150, 0.3) !important;
    }
} 

/* Tutorial Overlay Stili */
.tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.98) 0%, 
        rgba(255, 192, 203, 0.95) 25%, 
        rgba(255, 240, 245, 0.98) 50%, 
        rgba(255, 192, 203, 0.95) 75%, 
        rgba(255, 182, 193, 0.98) 100%);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tutorialFadeIn 0.8s ease-out;
}

.tutorial-overlay.hidden {
    display: none;
}

.tutorial-content {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(255, 240, 245, 0.95));
    border-radius: 25px;
    padding: 30px;
    box-shadow: 
        0 15px 50px rgba(255, 20, 147, 0.3),
        0 8px 25px rgba(255, 105, 180, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.6);
    border: 4px solid rgba(255, 20, 147, 0.4);
    text-align: center;
    max-width: 600px;
    width: 90%;
    animation: tutorialSlideIn 0.8s ease-out 0.2s both;
}

.tutorial-title {
    font-size: 28px;
    font-weight: bold;
    color: #FF1493;
    margin-bottom: 25px;
    text-shadow: 
        0 0 15px rgba(255, 20, 147, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.tutorial-characters {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 25px 0;
    gap: 20px;
}

.tutorial-character {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: characterBounce 2s ease-in-out infinite;
}

.tutorial-character.left {
    animation-delay: 0s;
}

.tutorial-character.center {
    animation-delay: 0.3s;
    transform: scale(1.1);
}

.tutorial-character.right {
    animation-delay: 0.6s;
}

.tutorial-character img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FF69B4;
    box-shadow: 
        0 0 20px rgba(255, 105, 180, 0.5),
        0 4px 15px rgba(255, 20, 147, 0.3);
    margin-bottom: 10px;
    image-rendering: pixelated;
}

.character-name {
    font-size: 14px;
    font-weight: bold;
    color: #FF1493;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.tutorial-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.tutorial-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(90deg, 
        rgba(255, 240, 245, 0.9), 
        rgba(255, 255, 255, 0.8));
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 
        0 4px 12px rgba(255, 20, 147, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
    animation: stepSlideIn 0.5s ease-out;
}

.tutorial-step:nth-child(1) { animation-delay: 0.4s; }
.tutorial-step:nth-child(2) { animation-delay: 0.5s; }
.tutorial-step:nth-child(3) { animation-delay: 0.6s; }
.tutorial-step:nth-child(4) { animation-delay: 0.7s; }
.tutorial-step:nth-child(5) { animation-delay: 0.8s; }
.tutorial-step:nth-child(6) { animation-delay: 0.9s; }

.step-icon {
    font-size: 24px;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

.step-text {
    font-size: 15px;
    font-weight: 600;
    color: #C71585;
    text-align: left;
}

.tutorial-button {
    background: linear-gradient(135deg, #FF69B4, #FF1493, #C71585);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 6px 20px rgba(255, 20, 147, 0.4),
        0 3px 10px rgba(255, 105, 180, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

.tutorial-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 20, 147, 0.5),
        0 4px 15px rgba(255, 105, 180, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.tutorial-button:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px rgba(255, 20, 147, 0.4),
        0 2px 8px rgba(255, 105, 180, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Tutorial Animasyonları */
@keyframes tutorialFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes titleGlow {
    0% { text-shadow: 0 0 15px rgba(255, 20, 147, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.2); }
    100% { text-shadow: 0 0 25px rgba(255, 20, 147, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3); }
}

@keyframes characterBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes stepSlideIn {
    from { 
        opacity: 0;
        transform: translateX(-30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes buttonGlow {
    0% { box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4), 0 3px 10px rgba(255, 105, 180, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6), 0 4px 15px rgba(255, 105, 180, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3); }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .tutorial-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .tutorial-title {
        font-size: 24px;
    }
    
    .tutorial-character img {
        width: 60px;
        height: 60px;
    }
    
    .tutorial-steps {
        grid-template-columns: 1fr;
    }
    
    .step-text {
        font-size: 14px;
    }
    
    .tutorial-button {
        padding: 12px 30px;
        font-size: 16px;
    }
} 