* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}


/* Animasyonlar */
@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px);
    }
}

@keyframes shrimpFloat {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) rotate(360deg);
    }
}

/* Ultra Modern Coin Panel - Kırmızı Beyaz Tema */
.coin-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px; /* 30px'den 20px'e küçültüldü */
    padding: 15px 20px; /* 20px 30px'den 15px 20px'e küçültüldü */
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 127, 0.3);
    box-shadow: 
        0 20px 60px rgba(220, 38, 127, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
}

.coin-panel:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(220, 38, 127, 0.6);
    box-shadow: 
        0 30px 80px rgba(220, 38, 127, 0.25),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.coin-container {
    display: flex;
    flex-direction: row;
    gap: 15px; /* 25px'den 15px'e küçültüldü */
    align-items: center;
}

.coin-item {
    display: flex;
    align-items: center;
    gap: 10px; /* 15px'den 10px'e küçültüldü */
    padding: 10px 15px; /* 15px 20px'den 10px 15px'e küçültüldü */
    border-radius: 20px; /* 25px'den 20px'e küçültüldü */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.coin-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
}

.coin-item:hover::before {
    left: 100%;
}

.shrimp-coin {
    background: linear-gradient(135deg, 
        rgba(220, 38, 127, 0.9) 0%, 
        rgba(239, 68, 68, 0.8) 50%, 
        rgba(185, 28, 28, 0.9) 100%);
    box-shadow: 
        0 8px 25px rgba(220, 38, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.shrimp-coin:hover {
    background: linear-gradient(135deg, 
        rgba(220, 38, 127, 1) 0%, 
        rgba(239, 68, 68, 0.95) 50%, 
        rgba(185, 28, 28, 1) 100%);
    box-shadow: 
        0 12px 35px rgba(220, 38, 127, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.anoma-coin {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 50%, 
        rgba(241, 245, 249, 0.95) 100%);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 1px rgba(220, 38, 127, 0.2);
}

.anoma-coin:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 0.95) 50%, 
        rgba(241, 245, 249, 1) 100%);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 2px rgba(220, 38, 127, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.coin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* 50px'den 40px'e küçültüldü */
    height: 40px; /* 50px'den 40px'e küçültüldü */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(220, 38, 127, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.coin-item:hover .coin-icon {
    border-color: rgba(220, 38, 127, 0.4);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: rotate(5deg) scale(1.1);
}

.coin-image {
    width: 24px; /* 32px'den 24px'e küçültüldü */
    height: 24px; /* 32px'den 24px'e küçültüldü */
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(220, 38, 127, 0.3));
    transition: all 0.3s ease;
}

.coin-info {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shrimp-coin .coin-info {
    color: rgba(255, 255, 255, 0.95);
}

.anoma-coin .coin-info {
    color: rgba(30, 41, 59, 0.9);
}

.coin-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2px;
}

.coin-amount {
    font-size: 16px; /* 20px'den 16px'e küçültüldü */
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 1), 
        rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.anoma-coin .coin-amount {
    background: linear-gradient(45deg, 
        rgb(220, 38, 38), 
        rgba(202, 25, 25, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Daily Limit Message Styles */
.daily-limit-message {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    border: 3px solid #000;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    color: white;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.limit-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.limit-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.limit-reset {
    font-size: 20px;
    font-weight: bold;
    color: #ffff00;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.limit-instruction {
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .coin-panel {
        top: 10px;
        right: 10px;
        padding: 15px 20px;
    }
    
    .coin-container {
        gap: 15px;
    }
    
    .coin-item {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .coin-icon {
        width: 40px;
        height: 40px;
    }
    
    .coin-image {
        width: 24px;
        height: 24px;
    }
    
    .footer {
        bottom: 10px;
        left: 10px;
        padding: 10px 15px;
    }
    
    .footer-text {
        font-size: 12px;
    }
    
    .shrimpers-wl-button {
        bottom: 15px;
        right: 15px;
    }
    
    .wl-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Ana oyun dünyası */
.game-world {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: url('arkaplan.png') center center / cover no-repeat;
    overflow: hidden;
}

/* Bisiklet karakteri */
.player {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    transition: all 0.3s ease;
}

.bike-sprite {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transform: scaleX(-1);
}

/* Oyun alanları */
.game-zone {
    position: absolute;
    width: 200px;
    height: 150px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #333;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.game-zone:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 1);
}

.game-icon {
    width: 100%;
    height: 100%;
    object-fit: fill; /* Görseli zorla çerçeveye sığdırır, oran bozulabilir */
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.game-zone:hover .game-icon {
    transform: scale(1.05);
}

#game1 {
    top: 20%;
    left: 30%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

#game2 {
    top: 50%;
    left: 60%;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
}

#game3 {
    top: 70%;
    left: 25%;
    background: linear-gradient(135deg, #74B9FF, #0984E3);
}

#game4 {
    top: 18%;
    left: 70%;
    background: linear-gradient(135deg, #A29BFE, #6C5CE7);
}

#game5 {
    position: absolute;
    top: 15%;     /* Yukarıdan uzaklık (0% = en üst, 100% = en alt) */
    left: 5%;    /* Soldan uzaklık (0% = en sol, 100% = en sağ) */
    background: linear-gradient(135deg, #000000 0%, #aa1919 100%);
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

#game5:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}

#game6 {
    top: 55%;
    left: 85%;
    width: 200px;  /* Diğer oyunlarla aynı boyut */
    height: 150px; /* Diğer oyunlarla aynı boyut */
    background: transparent;
    border-radius: 15px;
    padding: 0; /* Padding kaldırıldı - resim çerçeveye tam oturacak */
    transition: all 0.3s ease;
    cursor: pointer;
    border: 4px solid #FFD700; /* Altın çerçeve */
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5), /* Altın parıltı efekti */
        inset 0 1px 0 rgba(255, 255, 255, 0.3); /* İç parıltı */
}

#game6:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8), /* Hover'da daha güçlü altın parıltı */
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: #FFA500; /* Hover'da turuncu altın */
}

#game6 .game-icon {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 11px; /* Çerçevenin içine tam oturması için border-radius ayarlandı */
}

.game-entrance {
    text-align: center;
    color: #333;
}

.game-entrance h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
}

.game-entrance p {
    font-size: 12px;
    opacity: 0.8;
}

/* Modal */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.game-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border: 3px solid #000;
    border-radius: 20px;
    width: 90vw;
    height: 90vh;
    max-width: 900px;
    max-height: 700px;
    position: relative;
    box-shadow: 
        0 0 50px rgba(0,0,0,0.9),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 100px rgba(255,215,0,0.3);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,215,0,0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.modal-header {
    background: linear-gradient(135deg, #f33535, #f7aeae);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 3px solid #000;
    position: relative;
    z-index: 2;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.close-btn {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    border: 2px solid #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,71,87,0.4);
}

.close-btn:hover {
    background: linear-gradient(135deg, #ff3742, #ff2f3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,71,87,0.6);
}

.close-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255,71,87,0.4);
}

.modal-body {
    height: calc(100% - 60px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* FitCoin Oyunu Stilleri */
.fitcoin-game {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fitcoin-header {
    background: #FFD700;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 4px solid #000;
}

.fitcoin-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 24px;
    color: #000;
}

.lightning {
    font-size: 28px;
    color: #000000;
    text-shadow: 0 0 10px #FFD700;
    animation: lightning-pulse 2s infinite;
}

@keyframes lightning-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.total-fit {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

/* FitCoin Oyunu Ana Layout - Düzenli Çerçeve */
.fitcoin-area {
    background: #eeda6a;
    background-image: 
        linear-gradient(#d6b601 1px, transparent 1px),
        linear-gradient(90deg, #d6b601 1px, transparent 1px);
    background-size: 20px 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px; /* Daha az padding */
    position: relative;
    gap: 20px; /* Daha az gap */
    overflow: hidden; /* Taşan içeriği gizle */
}

/* Bisiklet Bölümü - En solda - GÜNCELLENDİ */
.bike-section-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    gap: 15px;
    flex: 1;
    max-width: 220px; /* Daha küçük */
    position: relative;
}

.mining-bike-large {
    width: 200px !important; /* Daha küçük yapıldı */
    height: auto;
    max-width: 200px;
    image-rendering: pixelated;
    cursor: pointer;
    transition: transform 0.1s;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    z-index: 10;
}

.mining-bike-large:hover {
    transform: scale(1.08);
}

.mining-bike-large.mining {
    animation: bike-shake-large 0.2s infinite;
}

@keyframes bike-shake-large {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Ok - Bisikletin üstünde */
.power-arrow {
    position: absolute;
    top: -20px; /* Bisikletin üstünde */
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: #FF6B00;
    font-weight: bold;
    text-shadow: 
        0 0 10px #FFD700,
        2px 2px 4px rgba(0,0,0,0.8);
    animation: arrow-pulse-enhanced 1.5s infinite;
    z-index: 15;
}

@keyframes arrow-pulse-enhanced {
    0%, 100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translateX(-50%) translateY(-5px) scale(1.1);
    }
}

/* FitCoin Kontrolleri - Modernleştirildi */
.fitcoin-controls {
    background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
    border-top: 3px solid #FFD700;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.instruction {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #000;
    box-shadow: 
        0 4px 15px rgba(76,175,80,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    flex: 1;
}

.status-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-item {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid #000;
    box-shadow: 
        0 4px 12px rgba(255,215,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

/* End Session Butonu - Modern */
.end-session-btn {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    border: 2px solid #000;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(255,71,87,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.end-session-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.end-session-btn:hover {
    background: linear-gradient(135deg, #ff3742, #ff2f3a);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255,71,87,0.6),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.end-session-btn:hover::before {
    left: 100%;
}

.end-session-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(255,71,87,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Tıklama efektleri için yüksek z-index */
.click-effect {
    position: absolute;
    pointer-events: none;
    z-index: 9999 !important;
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 
        0 0 15px #FFD700,
        3px 3px 6px rgba(0,0,0,0.8);
    animation: floatUp 2s ease-out forwards;
}

.shrimp-effect {
    position: absolute;
    pointer-events: none;
    z-index: 9998 !important;
    font-size: 22px;
    animation: shrimpFloat 3s ease-out forwards;
}

/* Progress Bar Stilleri */
.progress-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 120px;
}

.progress-container {
    width: 40px;
    height: 300px;
    background: #333;
    border: 3px solid #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 10px rgba(0,0,0,0.5),
        0 4px 15px rgba(0,0,0,0.3);
}

.progress-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(0deg, #4CAF50, #8BC34A);
    transition: height 0.3s ease, background 0.3s ease;
    border-radius: 0 0 17px 17px;
}

.progress-fill.level-1 {
    background: linear-gradient(0deg, #4CAF50, #8BC34A);
}

.progress-fill.level-2 {
    background: linear-gradient(0deg, #FFC107, #FFD54F);
}

.progress-fill.level-3 {
    background: linear-gradient(0deg, #F44336, #FF5722);
}

.progress-label {
    color: #000;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px; /* Progress barın üstünde */
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    white-space: nowrap;
}

/* Ok - Bisikletin üstünde - SİYAH VE DAHA YUKARI */
.power-arrow {
    position: absolute;
    top: -40px; /* Daha yukarıda */
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: #000; /* Siyah */
    font-weight: bold;
    text-shadow: 
        0 0 5px rgba(255,255,255,0.8),
        2px 2px 4px rgba(0,0,0,0.3);
    animation: arrow-pulse-enhanced 1.5s infinite;
    z-index: 15;
}

@keyframes arrow-pulse-enhanced {
    0%, 100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: translateX(-50%) translateY(-5px) scale(1.1);
    }
}

/* Fan Grid */
.fan-grid-new {
    position: absolute;
    top: 15px;
    left: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    width: 120px;
    height: 70px;
}

.fan-new {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #555; /* Yuvarlak çerçeve */
    border-radius: 50%; /* Tam yuvarlak */
    border: 2px solid #333;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.fan-blades-new {
    width: 20px;
    height: 20px;
    background: 
        linear-gradient(45deg, transparent 40%, #888 40%, #888 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, #888 40%, #888 60%, transparent 60%);
    border-radius: 50%;
    position: relative;
}

.fan-blades-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

@keyframes fan-spin-new {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fan-blades-new.spinning {
    animation: fan-spin-new 0.1s linear infinite;
}

/* GPU Bölümü */
.gpu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 200px;
}

.gpu-card {
    width: 180px;
    height: 240px;
    background: linear-gradient(145deg, #4a4a4a, #2d2d2d);
    border: 3px solid #000;
    border-radius: 10px;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.4),
        inset 0 2px 0 rgba(255,255,255,0.1);
}

.gpu-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #666, #444);
    border-radius: 7px;
    position: relative;
    overflow: hidden;
}

.gpu-body::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: gpu-led-pulse 2s infinite;
}

@keyframes gpu-led-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Fan Grid */
.fan-grid-new {
    position: absolute;
    top: 11px;
    left: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    width: 120px;
    height: 70px;
}

.fan-new {
    width: 65px;
    height: 65px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fan-blades-new {
    width: 45px;
    height: 45px;
    background: 
        linear-gradient(45deg, transparent 40%, #888 40%, #888 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, #888 40%, #888 60%, transparent 60%);
    border-radius: 50%;
    position: relative;
}

.fan-blades-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

@keyframes fan-spin-new {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fan-blades-new.spinning {
    animation: fan-spin-new 0.1s linear infinite;
}

/* GPU Kablosu */
.gpu-cable {
    width: 60px;
    height: 8px;
    background: linear-gradient(90deg, #333, #555, #333);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.gpu-cable::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(90deg, #ff6b00, #ffd700, #ff6b00);
    border-radius: 2px;
    opacity: 0;
    animation: cable-energy-new 2s infinite;
}

@keyframes cable-energy-new {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

.gpu-cable.active::before {
    animation: cable-energy-new 0.3s infinite;
}

/* Bilgisayar Kurulumu */
.computer-setup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 200px;
}

.computer-section-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Monitor */
.monitor-new {
    width: 200px;
    height: 140px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border: 4px solid #000;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.screen-new {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(145deg, #001100, #003300);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.screen-content {
    padding: 8px;
    font-family: 'Courier New', monospace;
    font-size: 8px;
    color: #00ff00;
    line-height: 1.2;
}

.terminal-line {
    margin-bottom: 2px;
    text-shadow: 0 0 5px #00ff00;
}

/* Monitor Stand */
.monitor-stand-new {
    width: 40px;
    height: 20px;
    background: linear-gradient(145deg, #444, #222);
    border-radius: 0 0 8px 8px;
    border: 2px solid #000;
    border-top: none;
    position: relative;
}

.monitor-stand-new::before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: linear-gradient(145deg, #333, #111);
    border-radius: 4px;
    border: 1px solid #000;
}

/* Masa */
.desk {
    width: 180px;
    height: 15px;
    background: linear-gradient(145deg, #8B4513, #654321);
    border: 2px solid #000;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.desk::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 10px;
    width: 8px;
    height: 40px;
    background: linear-gradient(145deg, #654321, #4a2c17);
    border: 1px solid #000;
    border-top: none;
}

.desk::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 10px;
    width: 8px;
    height: 40px;
    background: linear-gradient(145deg, #654321, #4a2c17);
    border: 1px solid #000;
    border-top: none;
}

/* PNG resimler için özel boyutlandırma */
.coin-png {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Genel PNG boyut kontrolü */
img[src$=".png"] {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* FitCoin header'daki ShrimpCoin logoları */
.fitcoin-logo .shrimp-icon {
    width: 32px !important;
    height: 32px !important;
}

.total-fit .shrimp-icon {
    width: 24px !important;
    height: 24px !important;
}

/* Shrimp icon animasyonu */
.shrimp-icon {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
    animation: shrimp-glow 2s infinite;
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.6));
}

@keyframes shrimp-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.9));
        transform: scale(1.05);
    }
}

/* Trading Game Styles */
.trading-game {
    color: white;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trading-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
}

.trading-logo {
    display: flex;
    align-items: center;
}

.trading-logo .title {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.trading-logo .subtitle {
    font-size: 14px;
    color: #00ff88;
}

.current-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 16px;
    color: #ccc;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
    color: #00ff88;
}

.trading-content {
    display: flex;
    gap: 20px;
    flex: 1;
}

.chart-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px 10px 0 0;
    margin-bottom: 10px;
}

.trading-pair-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 0;
}

.pair-name {
    font-size: 18px;
    font-weight: bold;
    color: #ff4444;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pair-price {
    font-size: 16px;
    font-weight: 600;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Canvas stilleri */
#chartCanvas {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-width: 400px;
}

.chart-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Modern Countdown Timer Styles */
.countdown-timer {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 26, 0.95);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(10px);
}

.timer-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.timer-svg {
    transform: rotate(-90deg);
    width: 80px;
    height: 80px;
}

.timer-bg {
    fill: none;
    stroke: #333;
    stroke-width: 4;
}

.timer-progress {
    fill: none;
    stroke: #00ff88;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.timer-label {
    font-size: 12px;
    color: #00ff88;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timer animasyonları */
.countdown-timer.active {
    animation: timerPulse 2s infinite;
}

@keyframes timerPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    }
}

/* Son 5 saniyede kırmızı renk */
.countdown-timer.warning .timer-progress {
    stroke: #ff6b6b;
}

.countdown-timer.warning .timer-text {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.countdown-timer.warning .timer-label {
    color: #ff6b6b;
}

.countdown-timer.warning {
    border-color: #ff6b6b;
    animation: warningPulse 0.5s infinite;
}

@keyframes warningPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 107, 0.8);
    }
}

.price-chart {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.price-info {
    text-align: center;
    color: #ccc;
}

.trading-panel {
    flex: 1;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bet-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bet-amount label,
.multiplier-section label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Modern bahis miktarı bölümü */
.bet-amount-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #00ff88;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.bet-amount-section h4 {
    margin: 0;
    color: #00ff88;
    font-size: 16px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.bet-amount-input {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #333, #222);
    border: 2px solid #555;
    border-radius: 12px;
    color: #00ff88;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
}

.bet-amount-input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 
        inset 0 2px 5px rgba(0,0,0,0.3),
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 40px rgba(0, 255, 136, 0.2);
    background: linear-gradient(135deg, #2a4a2a, #1a3a1a);
}

.bet-presets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.preset-btn {
    padding: 12px 8px;
    background: linear-gradient(135deg, #444, #333);
    border: 2px solid #666;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preset-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    transition: left 0.5s;
}

.preset-btn:hover {
    background: linear-gradient(135deg, #555, #444);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.preset-btn:hover::before {
    left: 100%;
}

.preset-btn:active {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: black;
    transform: translateY(0);
}

.bet-amount input {
    width: 100%;
    padding: 10px;
    background: #333;
    border: 1px solid #555;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}

.multiplier-buttons {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.multiplier-btn {
    flex: 1;
    padding: 10px;
    background: #333;
    border: 2px solid #555;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.multiplier-btn:hover {
    background: #444;
}

.multiplier-btn.active {
    background: #00ff88;
    border-color: #00ff88;
    color: black;
}

.shrimp-cost {
    font-size: 14px;
    color: #ff6b6b;
    font-weight: bold;
}

.trade-buttons {
    display: flex;
    gap: 10px;
}

.trade-btn {
    flex: 1;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.up-btn {
    background: #00ff88;
    color: black;
}

.up-btn:hover {
    background: #00cc6a;
}

.down-btn {
    background: #ff6b6b;
    color: white;
}

.down-btn:hover {
    background: #ff5252;
}

.trade-status {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #555;
}

.trade-info {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #00ff88;
}

.trade-progress {
    background: #333;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #00ff88;
    transition: width 0.3s;
}

.balance-info {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 10px;
    border: 2px solid #555;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.trade-result {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    border: 3px solid;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    z-index: 10000;
    animation: resultPop 0.5s ease-out;
}

.trade-result.win {
    border-color: #00ff88;
    color: #00ff88;
}

.trade-result.lose {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

@keyframes resultPop {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Quest Modal Stilleri */
.quest-container {
    padding: 30px;
    background: linear-gradient(135deg, #000000 0%, #6f7172 50%, #e74c3c 100%);
    border-radius: 20px;
    color: white;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 2px solid #e74c3c;
}

.quest-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(231,76,60,0.5);
    letter-spacing: 2px;
}

.quest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent; /* rgba(0,0,0,0.8)'den transparent'a değiştirildi */
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 15px;
    border: 2px solid rgba(231,76,60,0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.quest-item:hover {
    background: rgba(52,73,94,1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231,76,60,0.4);
    border-color: #e74c3c;
}

.quest-text {
    font-size: 18px;
    font-weight: 600;
    color: #ecf0f1;
    flex: 1;
}

.quest-reward {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 20px;
    background: rgba(231,76,60,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(231,76,60,0.4);
}

.reward-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.quest-reward span {
    font-weight: bold;
    color: #f39c12;
    font-size: 16px;
}

.quest-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    min-width: 120px;
    justify-content: center;
}

.quest-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.quest-btn.completed {
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: white;
}

.x-btn {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: #2c3e50;
}

.x-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.website-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.website-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    border: 2px solid rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3C45A5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.discord-icon {
    font-size: 18px;
    margin-right: 8px;
}

.x-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.world-emoji {
    font-size: 18px;
}

.checkmark {
    font-size: 20px;
    color: #27ae60;
    font-weight: bold;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Quest Ödül Popup */
.quest-reward-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    animation: rewardPopup 3s ease-in-out;
}

.reward-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.reward-popup-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.reward-text {
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@keyframes rewardPopup {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

/* Garapon Oyunu Stilleri - Yeni Tasarım */
.garapon-game {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f5e8 100%);
    color: #333;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Memory Oyunu Stilleri */
.memory-game {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.memory-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7B8 100%);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-bottom: 4px solid #000;
    border-radius: 15px 15px 0 0;
    margin-bottom: 20px;
}

.memory-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.memory-content {
    flex: 1;
    display: flex;
    gap: 30px;
    overflow: hidden;
}

.twitter-search-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.twitter-search-section h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.search-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.twitter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #4ECDC4;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.twitter-input:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.search-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #4ECDC4, #45B7B8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.search-status {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    min-height: 20px;
}

.search-status.loading {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 2px solid #FFC107;
}

.search-status.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28A745;
    border: 2px solid #28A745;
}

.search-status.error {
    background: rgba(220, 53, 69, 0.2);
    color: #DC3545;
    border: 2px solid #DC3545;
}

.memory-canvas-section {
    flex: 2;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.canvas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#memoryCanvas {
    border: 3px solid #FFD700;
    border-radius: 15px;
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    max-width: 100%;
    height: auto;
}

.profile-position-controls {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.profile-position-controls h4 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.position-sliders {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-group label {
    color: white;
    font-weight: bold;
    min-width: 80px;
}

.position-slider {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.position-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.position-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.slider-group span {
    color: #FFD700;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.download-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.download-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #28A745, #20C997);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.download-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Memory Game Modern Styles - Black/Red/White Theme */
.memory-game-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px; /* 40px'den 20px'e düşürüldü */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #000000 100%);
    border-radius: 15px; /* 20px'den 15px'e düşürüldü */
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    max-width: 600px; /* 800px'den 600px'e düşürüldü */
    margin: 0 auto;
    color: white;
    border: 1px solid #333;
}

.memory-header-modern {
    text-align: center;
    margin-bottom: 20px; /* 40px'den 20px'e düşürüldü */
    width: 100%;
}

.memory-title {
    font-size: 1.8rem; /* 2.8rem'den 1.8rem'e düşürüldü */
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px; /* 2px'den 1px'e düşürüldü */
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff0000, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255,0,0,0.3);
    position: relative;
}

.memory-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* 100px'den 80px'e düşürüldü */
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.username-input-section {
    width: 100%;
    max-width: 500px; /* 600px'den 500px'e düşürüldü */
    margin-bottom: 20px; /* 40px'den 20px'e düşürüldü */
}

.input-container {
    display: flex;
    gap: 15px; /* 20px'den 15px'e düşürüldü */
    margin-bottom: 15px; /* 20px'den 15px'e düşürüldü */
    align-items: stretch;
}

.modern-input {
    flex: 1;
    padding: 12px 18px; /* 18px 25px'den 12px 18px'e düşürüldü */
    border: 2px solid #333;
    border-radius: 6px; /* 8px'den 6px'e düşürüldü */
    font-size: 1rem; /* 1.2rem'den 1rem'e düşürüldü */
    background: #1a1a1a;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.modern-input:focus {
    border-color: #ff0000;
    background: #000;
    box-shadow: 0 0 15px rgba(255,0,0,0.2), inset 0 0 15px rgba(255,0,0,0.05);
}

.modern-input::placeholder {
    color: #666;
    font-weight: 400;
}

.search-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* 10px'den 8px'e düşürüldü */
    padding: 12px 20px; /* 18px 30px'den 12px 20px'e düşürüldü */
    border: 2px solid #ff0000;
    border-radius: 6px; /* 8px'den 6px'e düşürüldü */
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    font-size: 1rem; /* 1.2rem'den 1rem'e düşürüldü */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 100px; /* 120px'den 100px'e düşürüldü */
}

.search-btn-modern:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    box-shadow: 0 6px 20px rgba(255,0,0,0.4);
    transform: translateY(-2px);
}

.search-btn-modern:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(255,0,0,0.3);
}

.search-status-modern {
    text-align: center;
    font-size: 0.9rem; /* 1.1rem'den 0.9rem'e düşürüldü */
    min-height: 25px; /* 30px'den 25px'e düşürüldü */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-weight: 500;
}

.canvas-section-modern {
    margin-bottom: 20px; /* 40px'den 20px'e düşürüldü */
    position: relative;
}

.canvas-wrapper {
    position: relative;
    border-radius: 10px; /* 12px'den 10px'e düşürüldü */
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 0 1px #333;
    background: white;
}

.memory-canvas {
    display: block;
    border-radius: 10px; /* 12px'den 10px'e düşürüldü */
    transition: all 0.3s ease;
    border: 2px solid #000; /* 3px'den 2px'e düşürüldü */
    max-width: 400px; /* Canvas boyutunu sınırla */
    height: auto;
}

.canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* rgba(0,0,0,0.8)'den transparent'a değiştirildi */
    border-radius: 10px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* 20px'den 15px'e düşürüldü */
    color: white;
}

.spinner {
    width: 40px; /* 50px'den 40px'e düşürüldü */
    height: 40px;
    border: 3px solid #333; /* 4px'den 3px'e düşürüldü */
    border-top: 3px solid #ff0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.download-section-modern {
    width: 100%;
    display: flex;
    justify-content: center;
}

.download-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* 12px'den 10px'e düşürüldü */
    padding: 15px 30px; /* 20px 40px'den 15px 30px'e düşürüldü */
    border: 2px solid #fff;
    border-radius: 6px; /* 8px'den 6px'e düşürüldü */
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000;
    font-size: 1.1rem; /* 1.3rem'den 1.1rem'e düşürüldü */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px; /* 250px'den 200px'e düşürüldü */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn-modern:hover:not(:disabled) {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.download-btn-modern:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.download-btn-modern:disabled {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: #666;
    border-color: #444;
    cursor: not-allowed;
    box-shadow: none;
}

.download-icon {
    font-size: 1.2rem; /* 1.4rem'den 1.2rem'e düşürüldü */
}

.search-icon {
    font-size: 1.1rem; /* 1.3rem'den 1.1rem'e düşürüldü */
}

/* Error and Success States */
.search-status-modern.error {
    color: #ff4444;
    font-weight: 600;
}

.search-status-modern.success {
    color: #44ff44;
    font-weight: 600;
}

.search-status-modern.loading {
    color: #ffaa00;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .memory-game-modern {
        padding: 15px; /* 25px'den 15px'e düşürüldü */
        margin: 10px; /* 15px'den 10px'e düşürüldü */
    }
    
    .memory-title {
        font-size: 1.5rem; /* 2.2rem'den 1.5rem'e düşürüldü */
        letter-spacing: 0.5px;
    }
    
    .input-container {
        flex-direction: column;
        gap: 12px; /* 15px'den 12px'e düşürüldü */
    }
    
    .modern-input, .search-btn-modern {
        width: 100%;
        padding: 12px 16px; /* 16px 20px'den 12px 16px'e düşürüldü */
    }
    
    .memory-canvas {
        max-width: 100%;
        height: auto;
    }
    
    .download-btn-modern {
        padding: 14px 25px; /* 18px 30px'den 14px 25px'e düşürüldü */
        font-size: 1rem; /* 1.1rem'den 1rem'e düşürüldü */
    }
}

/* Dark theme enhancements */
.memory-game-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,0,0,0.05) 0%, transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}

/* Tebrik Penceresi Stilleri */
.prize-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.prize-modal.show {
    opacity: 1;
    transform: scale(1);
}

.prize-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 5px solid #8B0000;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: prizeFloat 2s ease-in-out infinite;
}

@keyframes prizeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.prize-header h2 {
    color: #8B0000;
    font-size: 32px;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 1.5s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.8); }
}

.prize-ball {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: ballBounce 1s ease-in-out infinite;
}

.prize-ball.yellow {
    background: radial-gradient(circle at 30% 30%, #FFD700, #FFA500);
}

.prize-ball.red {
    background: radial-gradient(circle at 30% 30%, #FF6B6B, #E74C3C);
}

.prize-ball.blue {
    background: radial-gradient(circle at 30% 30%, #4e9acd, #45B7B8);
}

@keyframes ballBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.prize-amount {
    margin: 25px 0;
}

.amount-text {
    display: block;
    color: #8B0000;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.amount-value {
    display: block;
    color: #FFFFFF;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #8B0000, #DC143C);
    padding: 15px 25px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    animation: amountPulse 1.5s ease-in-out infinite;
}

@keyframes amountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.prize-message {
    color: #8B0000;
    font-size: 20px;
    font-weight: bold;
    margin: 25px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.prize-close-btn {
    background: linear-gradient(45deg, #32CD32, #228B22);
    color: white;
    border: 3px solid #000000;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
}

.prize-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.6);
    border-color: #000000;
}

.garapon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 3px solid #8B4513;
}

.garapon-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title-main {
    font-size: 48px;
    font-weight: bold;
    color: #8B0000;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 2px;
}

.title-sub {
    font-size: 24px;
    color: #8B0000;
    font-weight: bold;
    margin-top: -5px;
}

.maneki-neko {
    display: flex;
    align-items: center;
}

.cat-icon {
    font-size: 60px;
    animation: wave 2s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Cat PNG stilleri ekleyin */
.cat-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: wave 2s infinite;
}

.maneki-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.garapon-main-area {
    display: flex;
    gap: 30px;
    flex: 1;
    align-items: stretch;
}

.garapon-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.garapon-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    border: 3px solid #8B4513;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.garapon-wheel {
    position: relative;
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
}

.wheel-image {
    width: 100%;
    height: 100%;
    transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #8B0000;
    z-index: 10;
}

.spin-btn {
    padding: 15px 40px;
    background: linear-gradient(45deg, #f74c4c, #fd2e2e);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.6);
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.ball-pool-container {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    border: 3px solid #8B4513;
}

.ball-pool {
    position: relative;
    width: 200px;
    height: 100px;
}

.pool-image {
    width: 100%;
    height: 100%;
}

.balls-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.falling-ball {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: ballDrop 1s ease-in-out;
}

@keyframes ballDrop {
    0% {
        top: -50px;
        opacity: 1;
    }
    100% {
        top: 60px;
        opacity: 0.8;
    }
}

/* Top yakalama kutusu stilleri */
.ball-catch-box {
    position: relative;
    width: 120px;
    height: 60px;
    background: linear-gradient(to bottom, #8B4513 0%, #A0522D 100%);
    border: 3px solid #654321;
    border-radius: 10px 10px 0 0;
    margin: 10px 0;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.3);
}

.catch-box-opening {
    position: absolute;
    top: -3px;
    left: 10px;
    right: 10px;
    height: 15px;
    background: #2C1810;
    border-radius: 50px;
    border: 2px solid #654321;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.8);
}

.caught-balls {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    align-items: flex-end;
    justify-content: center;
}

.caught-ball {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: ballCatch 0.5s ease-out;
}

@keyframes ballCatch {
    0% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Top yakalama kutusu stilleri */
.ball-catch-box {
    position: relative;
    width: 120px;
    height: 60px;
    background: linear-gradient(to bottom, #8B4513 0%, #A0522D 100%);
    border: 3px solid #654321;
    border-radius: 10px 10px 0 0;
    margin: 10px 0;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.3);
}

.catch-box-opening {
    position: absolute;
    top: -3px;
    left: 10px;
    right: 10px;
    height: 15px;
    background: #2C1810;
    border-radius: 50px;
    border: 2px solid #654321;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.8);
}

.caught-balls {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    align-items: flex-end;
    justify-content: center;
}

.caught-ball {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: ballCatch 0.5s ease-out;
}

.garapon-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coupon-panel {
    background: #f85f5f;
    border-radius: 20px;
    padding: 25px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 3px solid #8B0000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.maneki-icon {
    font-size: 40px;
}

.coupon-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.coupon-count {
    background: #f5dd56;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid #000;
}

.count-label {
    font-size: 24px;
    font-weight: bold;
}

.count-number {
    font-size: 36px;
    font-weight: bold;
    margin-left: 5px;
}

.purchase-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 200px;
}

.purchase-title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: white;
}

.purchase-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.788);
    padding: 15px;
    border-radius: 10px;
}

.quantity-select {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    color: #333;
    font-weight: bold;
    cursor: pointer;
}

.equals {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.cost-amount {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 5px;
}

.buy-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #32CD32, #228B22);
    color: white;
    border: 3px solid #000000;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(50,205,50,0.4);
    width: 100%;
    display: block;
    text-align: center;
    z-index: 1000;
    position: relative;
}

.buy-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50,205,50,0.6);
    border-color: #FFF;
    background: linear-gradient(45deg, #228B22, #32CD32);
}

.buy-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.insufficient-funds {
    background: #FFD700;
    color: #8B0000;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #8B0000;
    margin-top: 10px;
}

.game-status {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    font-weight: bold;
    margin-top: 20px;
    border: 2px solid #8B4513;
    color: #333;
}

/* Modern Footer */
.footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    border-radius: 15px;
    padding: 12px 20px;
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 127, 0.3);
    box-shadow: 
        0 15px 40px rgba(220, 38, 127, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
}

/* Give Me Shrimpers WL Button with Made by oi */
.shrimpers-wl-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Made by oi text - Enhanced */
.made-by-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Arial', sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.made-by-link {
    color: #ff4444;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 800;
    font-family: 'Arial Black', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 5px rgba(255, 68, 68, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.8);
}

.made-by-link:hover {
    color: #ff6666;
    text-shadow: 
        0 0 10px rgba(255, 68, 68, 0.8),
        0 0 20px rgba(255, 68, 68, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.wl-btn {
    position: relative;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    background-size: 400% 400%;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    font-family: 'bold', sans-serif;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    animation: rgbShift 3s ease-in-out infinite;
}

@keyframes rgbShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.wl-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 255, 255, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation-duration: 1.5s;
}

.wl-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.wl-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.wl-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    transition: left 0.6s ease;
}

.wl-btn:hover .wl-glow {
    left: 100%;
}

.footer:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(220, 38, 127, 0.6);
    box-shadow: 
        0 20px 50px rgba(220, 38, 127, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.footer-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
}

.footer-link:hover {
    color: #fff;
    background: linear-gradient(45deg, #dc267f, #ff6b9d);
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-link:active {
    transform: scale(0.98);
}
