* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background: linear-gradient(45deg, #3b4cca, #523b80); min-height: 100vh; color: #333; overflow-x: hidden; transition: opacity 0.5s ease; } body.loaded { opacity: 1; } html { visibility: hidden; opacity: 0; transition: opacity 0.3s ease-in-out; } html.loaded { visibility: visible; opacity: 1; } /* Loading screen */ .page-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; justify-content: center; align-items: center; z-index: 9999; opacity: 1; transition: opacity 0.5s ease-out; } .page-loader.hidden { opacity: 0; pointer-events: none; } .loader-spinner { width: 50px; height: 50px; border: 3px solid rgba(255, 255, 255, 0.3); border-top: 3px solid white; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Preload critical animations */ .preload-animations { position: absolute; top: -9999px; left: -9999px; opacity: 0; pointer-events: none; } /* Theme Switcher Styles */ .theme-switcher { position: fixed; top: 20px; right: 20px; z-index: 1000; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 15px; padding: 8px; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); } .theme-switcher-toggle { background: none; border: none; font-size: 20px; cursor: pointer; padding: 8px; border-radius: 10px; transition: all 0.3s ease; color: inherit; } .theme-switcher-toggle:hover { background: rgba(255, 255, 255, 0.1); transform: scale(1.1); } .theme-options { position: absolute; top: 100%; right: 0; margin-top: 10px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); border-radius: 15px; padding: 10px; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); opacity: 0; transform: translateY(-10px); pointer-events: none; transition: all 0.3s ease; min-width: 150px; } .theme-options.show { opacity: 1; transform: translateY(0); pointer-events: all; } .theme-option { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 10px; cursor: pointer; transition: all 0.3s ease; margin: 2px 0; font-size: 14px; font-weight: 500; } .theme-option:hover { background: rgba(255, 255, 255, 0.1); transform: translateX(3px); } .theme-option.active { background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.3); } .theme-color { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.3); transition: all 0.3s ease; } .theme-option.active .theme-color { border-color: rgba(255, 255, 255, 0.8); box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); } .theme-purple .theme-color { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .theme-green .theme-color { background: linear-gradient(45deg, #4caf50, #2e7d32); } .theme-orange .theme-color { background: linear-gradient(45deg, #ffa500, #ff4500); } /* Mobile responsive */ @media (max-width: 768px) { .theme-switcher { top: 15px; right: 15px; padding: 6px; } .theme-switcher-toggle { font-size: 18px; padding: 6px; } .theme-options { right: -20px; min-width: 130px; } .theme-option { font-size: 13px; padding: 6px 10px; } } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } .header { text-align: center; margin-bottom: 40px; animation: fadeInDown 1s ease-out; } .header h1 { font-size: 3rem; font-weight: 700; color: white; text-shadow: 0 4px 8px rgba(0,0,0,0.3); margin-bottom: 10px; } .header p { font-size: 1.2rem; color: rgba(255,255,255,0.9); font-weight: 300; } /* Favorites Section */ .favorites-section { background: rgba(255,255,255,0.95); border-radius: 20px; padding: 40px; margin-bottom: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); backdrop-filter: blur(10px); animation: fadeInUp 1s ease-out 0.2s both; } .section-title { font-size: 2rem; font-weight: 600; margin-bottom: 30px; color: #333; text-align: center; } .search-container { position: relative; margin-bottom: 30px; } .search-input { width: 100%; padding: 15px 50px 15px 20px; border: 2px solid #e0e0e0; border-radius: 50px; font-size: 1rem; transition: all 0.3s ease; background: white; } .search-input:focus { outline: none; border-color: #667eea; box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); } .search-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: #999; } .anime-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid #e0e0e0; border-radius: 15px; max-height: 200px; overflow-y: auto; z-index: 1000; display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); opacity: 0; transform: translateY(-10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .anime-dropdown.show { opacity: 1; transform: translateY(0); } .anime-option { padding: 12px 20px; cursor: pointer; transition: background-color 0.2s ease; opacity: 0; color: white; background:rgba(25, 25, 46, 0.95); transform: translateX(-10px); animation: slideInOption 0.3s ease-out forwards; } .anime-option:nth-child(1) { animation-delay: 0.05s; } .anime-option:nth-child(2) { animation-delay: 0.1s; } .anime-option:nth-child(3) { animation-delay: 0.15s; } .anime-option:nth-child(4) { animation-delay: 0.2s; } .anime-option:nth-child(5) { animation-delay: 0.25s; } .anime-option:nth-child(6) { animation-delay: 0.3s; } .anime-option:nth-child(7) { animation-delay: 0.35s; } .anime-option:nth-child(8) { animation-delay: 0.4s; } .anime-option:nth-child(9) { animation-delay: 0.45s; } .anime-option:nth-child(10) { animation-delay: 0.5s; } .anime-option:hover { background-color: #f8f9ff; } .anime-option:last-child { border-bottom: none; } @keyframes slideInOption { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } } .anime-option:hover { background-color: #f8f9ff; } .anime-option:last-child { border-bottom: none; } .favorites-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; min-height: 60px; } .favorite-tag { background: linear-gradient(45deg, #3b4cca, #523b80); color: white; padding: 8px 16px; border-radius: 25px; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; animation: slideIn 0.3s ease-out; } .favorite-tag .remove-btn { background: rgba(255,255,255,0.2); border: none; color: white; width: 20px; height: 20px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: background-color 0.2s ease; } .favorite-tag .remove-btn:hover { background: rgba(255,255,255,0.3); } .action-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; } .btn { padding: 12px 30px; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; } .btn-primary { background: linear-gradient(45deg, #3b4cca, #523b80); color: white; box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4); } .btn-secondary { background: rgba(25, 25, 46, 0.95); color: #667eea; border: 2px solid #667eea; } .btn-secondary:hover { background: #667eea; color: white; } /* Recommendations Section */ .recommendations-section { display: none; animation: fadeInUp 1s ease-out; } .recommendations-grid { display: flex; flex-direction: column; gap: 25px; margin-top: 30px; max-width: 900px; margin-left: auto; margin-right: auto; } .anime-card-wrapper { display: flex; align-items: center; gap: 20px; animation: slideInLeft 0.6s ease-out; position: relative; /* ::before konumlandırması için */ padding-left: 8px; /* şerit alanı bırakılır */ } .anime-card-wrapper::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(45deg, #617eea, #764ba2); /* mavi tonları */ border-radius: 4px; } .anime-rank { background: linear-gradient(45deg, #617eea, #764ba2); color: white; width: 0; height: 0px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); flex-shrink: 0; position: relative; } .anime-rank::before { content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; border-radius: 50%; z-index: -1; animation: rotate 3s linear infinite; } @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .anime-bottom-section { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; } .genres-container-front { display: flex; flex-wrap: wrap; gap: 4px; flex: 1; } .genre-tag-front { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.9); padding: 2px 6px; border-radius: 8px; font-size: 13px; font-weight: 500; border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); transition: all 0.3s ease; } .genre-tag-front:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); } .already-watched-btn { flex-shrink: 0; min-width: 120px; } /* Mobile responsive */ @media (max-width: 768px) { .anime-bottom-section { flex-direction: column; align-items: stretch; gap: 8px; } .genres-container-front { justify-content: center; } .genre-tag-front { font-size: 9px; padding: 1px 4px; } } .anime-card { position: relative; border-radius: 20px; padding: 2px; /* Kenar şeridin kalınlığı */ background: linear-gradient(45deg, #3b4cca, #523b80); /* İç kısım için ayrı bir arka plan katmanı */ /* overflow hidden ile köşe yumuşaklığı korunur */ overflow: hidden; cursor: pointer; perspective: 1000px; height: 175px; flex: 1; min-width: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; } /* İçerik kısmı: beyaz arka plan ve aynı border-radius ile */ .anime-card > .content { background: rgba(255, 255, 255, 0.95); border-radius: 17px; /* padding kadar küçük değer */ height: 100%; width: 100%; } .anime-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); } .card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.7s; transform-style: preserve-3d; } .card-inner.flipped { transform: rotateY(180deg); } .card-inner.flipped .anime-score, .card-inner.flipped .already-watched-btn { display: none !important; } .card-front, .card-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 20px; overflow: hidden; } .card-front { background: white; display: flex; flex-direction: row; } .card-back { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; transform: rotateY(180deg); display: flex; align-items: center; justify-content: center; padding: 30px; } .anime-image-container { position: relative; width: 200px; /* Bu değeri 250px'den istediğiniz değere değiştirin */ height: 100%; overflow: hidden; background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .anime-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; } .anime-card:hover .anime-image { transform: scale(1.05); } .no-image-placeholder { width: 120px; height: 120px; background: rgba(102, 126, 234, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #667eea; } .anime-score { position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.8); color: white; padding: 8px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; backdrop-filter: blur(10px); z-index: 2; } .anime-info { padding: 30px; flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: left; } .already-watched-btn { position: absolute; bottom: 15px; right: 15px; background: linear-gradient(45deg, #617eea, #764ba2); border: none; color: white; padding: 8px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(144, 51, 178, 0.3); z-index: 20; display: flex; align-items: center; gap: 4px; } .already-watched-btn::before { font-size: 0.9rem; } .already-watched-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 4px 15px rgba(144, 51, 178, 0.4); } .already-watched-btn:active { transform: translateY(0) scale(1.02); } .blacklist-button { position: fixed; bottom: 20px; right: 20px; background: rgba(255, 71, 87, 0.9); color: white; border: none; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; z-index: 1000; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3); opacity: 0; transform: scale(0.8); } .blacklist-button.show { opacity: 1; transform: scale(1); } .blacklist-button:hover { background: rgba(255, 71, 87, 1); transform: scale(1.1); box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4); } .blacklist-counter { position: absolute; top: -5px; right: -5px; background: #ff4757; color: white; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; border: 2px solid white; } .blacklist-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; } .blacklist-modal.show { opacity: 1; pointer-events: all; } .blacklist-content { background: white; border-radius: 20px; padding: 30px; max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto; position: relative; transform: scale(0.8); transition: transform 0.3s ease; } .blacklist-modal.show .blacklist-content { transform: scale(1); } .blacklist-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #f0f0f0; } .blacklist-title { font-size: 24px; font-weight: bold; color: #333; } .blacklist-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #999; padding: 2px; border-radius: 40%; transition: all 0.3s ease; } .blacklist-close:hover { background: inherit; color: #333; } .blacklist-item { display: flex; justify-content: space-between; align-items: center; padding: 15px; margin: 10px 0; background: #f8f9fa; border-radius: 10px; border-left: 4px solid #ff4757; transition: all 0.3s ease; } .blacklist-item:hover { background: #e9ecef; transform: translateX(5px); } .blacklist-item-name { font-weight: 500; color: #333; flex-grow: 1; } .blacklist-item-actions { display: flex; gap: 10px; } .restore-btn { background: #28a745; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; font-size: 12px; transition: all 0.3s ease; } .restore-btn:hover { background: #218838; transform: scale(1.05); } .delete-permanent-btn { background: #dc3545; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; font-size: 12px; transition: all 0.3s ease; } .delete-permanent-btn:hover { background: #c82333; transform: scale(1.05); } .blacklist-empty { text-align: center; padding: 40px; color: #666; font-style: italic; } .blacklist-actions { display: flex; gap: 10px; margin-top: 20px; padding-top: 15px; border-top: 2px solid #f0f0f0; } .clear-blacklist-btn { background: #ff4757; color: white; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; font-weight: 500; transition: all 0.3s ease; flex: 1; } .clear-blacklist-btn:hover { background: #ff3742; transform: translateY(-2px); } @media (max-width: 768px) { .blacklist-button { bottom: 15px; right: 15px; width: 45px; height: 45px; font-size: 16px; } .blacklist-content { padding: 20px; width: 95%; } .blacklist-item { flex-direction: column; align-items: flex-start; gap: 10px; } .blacklist-item-actions { width: 100%; justify-content: flex-end; } } /* Remove Blacklist Button Styles */ .remove-blacklist-btn { background: linear-gradient(45deg, #3b4cca, #523b80);; color: white; border: none; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3); } .remove-blacklist-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 ease; } .remove-blacklist-btn:hover { background: linear-gradient(135deg, #ff5252 0%, #d63031 100%); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4); } .remove-blacklist-btn:hover::before { left: 100%; } .remove-blacklist-btn:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3); } /* Blacklist Item Container */ .blacklist-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; margin-bottom: 8px; transition: all 0.3s ease; backdrop-filter: blur(10px); } .blacklist-item:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); transform: translateX(4px); } .blacklist-name { font-size: 14px; font-weight: 500; color: white; flex: 1; margin-right: 12px; word-break: break-word; } /* Empty Blacklist State */ .empty-blacklist { text-align: center; padding: 40px 20px; color: rgba(255, 255, 255, 0.6); font-size: 14px; font-style: italic; } /* Alternative compact style for small screens */ @media (max-width: 768px) { .remove-blacklist-btn { padding: 4px 8px; font-size: 11px; border-radius: 6px; } .blacklist-item { padding: 10px 12px; } .blacklist-name { font-size: 13px; margin-right: 8px; } } /* Icon version (if you want to use an icon instead of text) */ .remove-blacklist-btn.icon-only { width: 28px; height: 28px; padding: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 14px; } .remove-blacklist-btn.icon-only::after { content: "×"; font-weight: bold; } /* Custom Confirm Modal */ .custom-confirm-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; z-index: 10000; opacity: 0; transition: opacity 0.3s ease; } .custom-confirm-modal.show { opacity: 1; } .custom-confirm-content { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; padding: 24px; max-width: 400px; width: 90%; color: white; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); transform: scale(0.9); transition: transform 0.3s ease; } .custom-confirm-modal.show .custom-confirm-content { transform: scale(1); } .confirm-header h3 { margin: 0 0 16px 0; font-size: 18px; font-weight: 600; color: inherit; } .confirm-message p { margin: 0 0 20px 0; font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.8); } .confirm-actions { display: flex; gap: 12px; justify-content: flex-end; } .confirm-btn { padding: 8px 16px; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; } .confirm-btn.cancel { background: rgba(255, 255, 255, 0.1); color: inherit; border: 1px solid rgba(255, 255, 255, 0.2); } .confirm-btn.cancel:hover { background: rgba(255, 255, 255, 0.2); } .confirm-btn.confirm { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); color: white; } .confirm-btn.confirm:hover { background: linear-gradient(135deg, #ff5252 0%, #d63031 100%); transform: translateY(-2px); } /* Danger theme variant */ .remove-blacklist-btn.danger { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3); } .remove-blacklist-btn.danger:hover { background: linear-gradient(135deg, #c0392b 0%, #a93226 100%); box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4); } .social-button { position: fixed; top: 20px; right: 100px; /* Theme switcher'dan sola kaydır */ z-index: 1000; } .social-btn { display: flex; align-items: center; gap: 8px; padding: 15px 20px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); text-decoration: none; color: inherit; font-weight: 500; font-size: 14px; transition: all 0.3s ease; cursor: pointer; } .social-btn:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); } .social-icon { font-size: 18px; } .social-text { font-family: 'Inter', sans-serif; color: white; } /* Delete Button Styles */ .delete-button { position: absolute; top: 8px; right: 8px; z-index: 10; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: rgba(255, 255, 255, 0.7); transition: all 0.3s ease; opacity: 0; transform: scale(0.8); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } /* Show delete button on card hover */ .anime-card-wrapper:hover .delete-button { opacity: 1; transform: scale(1); } /* Delete button hover effects */ .delete-button:hover { background: rgba(255, 107, 107, 0.9); color: white; border-color: rgba(255, 107, 107, 0.8); transform: scale(1.1); box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4); } .delete-button:active { transform: scale(0.95); box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3); } /* Pulse animation for attention */ .delete-button::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: rgba(255, 107, 107, 0.3); border-radius: 50%; opacity: 0; transform: scale(0.8); transition: all 0.3s ease; } .delete-button:hover::before { opacity: 1; transform: scale(1); animation: pulse 1.5s infinite; } @keyframes pulse { 0% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.2); opacity: 0.1; } 100% { transform: scale(1.4); opacity: 0; } } /* Alternative danger theme */ .delete-button.danger { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); color: white; border: none; opacity: 0.9; } .delete-button.danger:hover { background: linear-gradient(135deg, #c0392b 0%, #a93226 100%); transform: scale(1.15); box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5); } /* Always visible variant */ .delete-button.always-visible { opacity: 0.6; transform: scale(1); } .delete-button.always-visible:hover { opacity: 1; } /* Compact mobile version */ @media (max-width: 768px) { .delete-button { width: 28px; height: 28px; font-size: 14px; top: 6px; right: 6px; } /* Always show on mobile for better UX */ .delete-button { opacity: 0.7; transform: scale(1); } } /* Smooth entrance animation */ .anime-card-wrapper { position: relative; } .anime-card-wrapper .delete-button { animation: slideInFromTop 0.3s ease-out; } @keyframes slideInFromTop { from { opacity: 0; transform: translateY(-10px) scale(0.8); } to { opacity: 1; transform: translateY(0) scale(1); } } /* Tooltip effect */ .delete-button::after { content: attr(title); position: absolute; bottom: -35px; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.8); color: white; padding: 4px 8px; border-radius: 4px; font-size: 12px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 1000; } .delete-button:hover::after { opacity: 1; } /* Glass morphism variant */ .delete-button.glass { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); } .delete-button.glass:hover { background: rgba(255, 107, 107, 0.2); border-color: rgba(255, 107, 107, 0.4); backdrop-filter: blur(25px); } /* Neon glow effect */ .delete-button.neon { background: transparent; border: 2px solid #ff6b6b; color: #ff6b6b; text-shadow: 0 0 5px #ff6b6b; box-shadow: 0 0 10px rgba(255, 107, 107, 0.3); } .delete-button.neon:hover { background: rgba(255, 107, 107, 0.1); text-shadow: 0 0 10px #ff6b6b; box-shadow: 0 0 20px rgba(255, 107, 107, 0.6); } @keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } .anime-name { font-size: 1.4rem; font-weight: 600; color: #333; line-height: 1.4; margin-bottom: 8px; /* Bu değeri 15px'den 8px'e düşürün */ } .flip-hint { font-size: 0.9rem; color: #999; font-style: italic; opacity: 0; transition: opacity 0.3s ease; margin-top: 25px; /* Bu değeri artırın, örneğin 15px veya 20px */ } .anime-card:hover .flip-hint { opacity: 1; } .mal-button-container { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; width: 100%; } .mal-button { background: rgba(255,255,255,0.2); border: 2px solid white; color: white; padding: 15px 30px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: flex; align-items: center; gap: 10px; backdrop-filter: blur(10px); } .mal-button:hover { background: white; color: #667eea; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .mal-logo { width: 24px; height: 24px; border-radius: 4px; } .mal-message { font-size: 0.9rem; opacity: 0.8; text-align: center; } .back-button { position: fixed; top: 30px; left: 30px; background: rgba(255,255,255,0.2); border: 2px solid white; color: white; padding: 10px 20px; border-radius: 50px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; backdrop-filter: blur(10px); display: none; z-index: 1000; } .back-button:hover { background: white; color: #667eea; } .loading { text-align: center; color: white; font-size: 1.2rem; margin: 40px 0; } .spinner { border: 4px solid rgba(255,255,255,0.3); border-top: 4px solid white; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 20px auto; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } } @keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } } .empty-state { text-align: center; color: #999; font-style: italic; padding: 20px; } .image-loading { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #667eea; font-size: 0.9rem; } @media (max-width: 768px) { .container { padding: 10px; } .header h1 { font-size: 2rem; } .favorites-section { padding: 20px; } .anime-card-wrapper { flex-direction: column; gap: 15px; } .already-watched-btn { bottom: 10px; right: 10px; padding: 6px 10px; font-size: 0.7rem; z-index: 25; } .anime-rank { width: 50px; height: 50px; font-size: 1.2rem; } .anime-card { height: 250px; /* Bu değeri 350px'den 300px'e değiştirin */ width: 100%; } .card-front { flex-direction: column; } .anime-image-container { width: 100%; height: 200px; } .anime-info { padding: 20px; text-align: center; } .action-buttons { flex-direction: column; align-items: center; } .btn { width: 100%; max-width: 300px; } .mal-button { font-size: 0.9rem; padding: 12px 25px; } } .card-inner.flipped .anime-score, .card-inner.flipped .already-watched-btn { display: none !important; } .anime-score.hidden, .already-watched-btn.hidden { display: none !important; } .filter-buttons { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; justify-content: center; } .filter-btn { background: rgba(25, 25, 46, 0.4); border: 2px solid transparent; color: white; padding: 10px 20px; border-radius: 25px; cursor: pointer; transition: all 0.3s ease; font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 8px; } .filter-btn.active { background: rgba(51,51,51,0.9); color: #66b2ff; border-color: rgba(140,140,140,0.9); } .filter-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,255,255,0.2); } .filter-icon { font-size: 1rem; } .apply-filters-btn { background: linear-gradient(45deg, #3b4cca, #523b80); border: none; color: white; padding: 12px 30px; border-radius: 25px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; display: block; margin: 0 auto; } .apply-filters-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4); } @media (max-width: 768px) { .filter-buttons { flex-direction: column; align-items: center; } .filter-btn { width: 200px; justify-content: center; } } .about-section { margin-top: 60px; padding: 40px; background: rgba(255,255,255,0.05); backdrop-filter: blur(5px); border-top: 1px solid rgba(255,255,255,0.1); /* Yeni eklenenler */ border-radius: 20px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); } .about-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; padding: 0 20px; } .about-item { text-align: left; } .about-item h3 { font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 15px; letter-spacing: 0.5px; } .about-item p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; font-weight: 300; } @media (max-width: 768px) { .about-section { margin-top: 40px; padding: 30px 0; } .about-content { grid-template-columns: 1fr; gap: 30px; padding: 0 15px; } .about-item { text-align: center; } .about-item h3 { font-size: 1.1rem; } .about-item p { font-size: 0.9rem; } } /* 1. Body background'unu değiştirin */ body { background: linear-gradient(45deg, #3b4cca, #523b80); /* Diğer özellikler aynı kalacak */ } /* 2. Page loader background'unu değiştirin */ .page-loader { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%); /* Diğer özellikler aynı kalacak */ } /* 3. Favorites section'ın background'unu değiştirin */ .favorites-section { background: rgba(25, 25, 46, 0.95); /* Diğer özellikler aynı kalacak */ } /* 4. Search input'un background'unu değiştirin */ .search-input { background: rgba(25, 25, 46, 0.8); border: 2px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.9); /* Diğer özellikler aynı kalacak */ } /* 5. Anime dropdown'un background'unu değiştirin */ .anime-dropdown { background: rgba(25, 25, 46, 0.95); border: 1px solid rgba(255, 255, 255, 0.1); /* Diğer özellikler aynı kalacak */ } /* 6. Anime option hover effect'ini değiştirin */ .anime-option:hover { background-color: rgba(255, 255, 255, 0.1); } /* 7. Card front background'unu değiştirin */ .card-front { background: rgba(25, 25, 46, 0.9); /* Diğer özellikler aynı kalacak */ } /* 8. Anime info text color'unu değiştirin */ .anime-info { color: rgba(255, 255, 255, 0.9); /* Diğer özellikler aynı kalacak */ } /* 9. Anime name color'unu değiştirin */ .anime-name { color: rgba(255, 255, 255, 0.95); /* Diğer özellikler aynı kalacak */ } /* 10. Section title color'unu değiştirin */ .section-title { color: rgba(255, 255, 255, 0.9); /* Diğer özellikler aynı kalacak */ } /* 11. Blacklist content background'unu değiştirin */ .blacklist-content { background: rgba(25, 25, 46, 0.95); /* Diğer özellikler aynı kalacak */ } /* 12. Blacklist title color'unu değiştirin */ .blacklist-title { color: rgba(255, 255, 255, 0.9); /* Diğer özellikler aynı kalacak */ } /* 13. Blacklist item background'unu değiştirin */ .blacklist-item { background: rgba(255, 255, 255, 0.05); /* Diğer özellikler aynı kalacak */ } /* 14. Blacklist item hover effect'ini değiştirin */ .blacklist-item:hover { background: rgba(255, 255, 255, 0.1); /* Diğer özellikler aynı kalacak */ } /* 15. Blacklist item name color'unu değiştirin */ .blacklist-item-name { color: rgba(255, 255, 255, 0.9); /* Diğer özellikler aynı kalacak */ } /* 17. About section background'unu değiştirin */ .about-section { background: rgba(25, 25, 46, 0.2); } /* 18. Search input placeholder color'unu ekleyin */ .search-input::placeholder { color: rgba(255, 255, 255, 0.5); } /* 19. Anime image container background'unu değiştirin */ .anime-image-container { background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%); /* Diğer özellikler aynı kalacak */ } /* 20. Theme color variants'ını güncelleyin */ .theme-dark .theme-color { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%); } /* 21. Empty state color'unu değiştirin */ .empty-state { color: rgba(255, 255, 255, 0.5); /* Diğer özellikler aynı kalacak */ } /* 22. Flip hint color'unu değiştirin */ .flip-hint { color: rgba(255, 255, 255, 0.6); /* Diğer özellikler aynı kalacak */ } /* Custom Confirm Modal */ .custom-confirm-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; z-index: 10000; opacity: 0; transition: opacity 0.3s ease; } .custom-confirm-modal.show { opacity: 1; } .custom-confirm-content { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; padding: 24px; max-width: 400px; width: 90%; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); transform: scale(0.9); transition: transform 0.3s ease; } .custom-confirm-modal.show .custom-confirm-content { transform: scale(1); } .confirm-header h3 { margin: 0 0 16px 0; font-size: 18px; font-weight: 600; color: inherit; } .confirm-message p { margin: 0 0 20px 0; font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.8); } .confirm-actions { display: flex; gap: 12px; justify-content: flex-end; } .confirm-btn { padding: 8px 16px; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; } .confirm-btn.cancel { background: rgba(255, 255, 255, 0.1); color: inherit; border: 1px solid rgba(255, 255, 255, 0.2); } .confirm-btn.cancel:hover { background: rgba(255, 255, 255, 0.2); } .confirm-btn.confirm { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); color: white; } .confirm-btn.confirm:hover { background: linear-gradient(135deg, #ff5252 0%, #d63031 100%); transform: translateY(-2px); } /* =========================================== MOBİL RESPONSIVE CSS KODU ========================================== */ /* 1. BASE MOBILE SETTINGS - Temel Mobil Ayarları */ /* ===== SADECE ANİME KARTLARI İÇİN MOBİL DÜZELTMESİ ===== */ /* ===== SOCİAL BUTTON VE TEMA BUTONLARINI GİZLE ===== */ @media screen and (max-width: 768px) { /* Social media butonları gizle */ .social-buttons, .social-media-buttons, .social-links, .social-container, .social-btn, .share-buttons, .social-share, .social-icons { display: none !important; } /* Tema değiştirme butonları gizle */ .theme-toggle, .theme-switcher, .theme-button, .theme-switcher-toggle .themeOptions .theme-options .theme-option theme-green .dark-mode-toggle, .light-mode-toggle, .mode-switcher, .theme-switcher { display: none !important; } /* Diğer istenmeyen butonları gizle */ .settings-button, .options-button, .menu-toggle-mobile { display: none !important; } } /* ===== ANIME KARTLARI MOBİL STÝLLERI ===== */ @media screen and (max-width: 768px) { /* Ana kart konteyner - Grid sistemi */ .recommendations-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 12px; margin-top: 20px; padding: 0 5px; } /* Anime Card Wrapper - Temiz başlangıç */ .anime-card-wrapper { background: "none"; display: block; border-radius: 12px; } /* Anime Card - Sabit boyutlar ve sabit renk */ .anime-card { width: 100%; height: 500px; /* Çok daha fazla artırıldı: 420px -> 500px */ position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.1); background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ transition: transform 0.3s ease; /* Kenar şeritleri için sabit renk */ border: 3px solid #3b4cca; } /* Flip kartlar için content wrapper */ .anime-card .content { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transition: transform 0.6s; } /* Kart ön yüzü - sabit renk */ .card-front { position: absolute; width: 100%; height: 100%; background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; } /* Kart arka yüzü - sabit renk */ .card-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; transform: rotateY(180deg); border-radius: 12px; padding: 15px; box-sizing: border-box; overflow-y: auto; background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: 0.8rem; line-height: 1.4; color: white; } /* Görsel konteyneri - 225x317 orijinal boyut oranına uygun */ .anime-image-container { width: 100%; height: 320px; /* Çok daha fazla artırıldı: 240px -> 320px */ position: relative; overflow: hidden; flex-shrink: 0; background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ display: flex; align-items: center; justify-content: center; } /* Anime görseli - 225x317 oranına uygun yerleştirme */ .anime-image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; object-position: center center; display: block; /* 225x317 orijinal boyut için optimize edildi */ /* Aspect ratio: 225/317 = 0.709 */ } /* Görsel yoksa placeholder */ .no-image-placeholder { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: rgba(255, 255, 255, 0.2); /* Sabit renk ile uyumlu şeffaf beyaz */ border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); /* Beyaz renk */ } /* Anime bilgi alanı - resim altındaki kısım */ .anime-info { flex: 1; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; min-height: 180px; /* Daha fazla artırıldı: 160px -> 180px */ text-align: center; background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ color: white; } /* Anime ismi */ .anime-name { font-size: 0.9rem; font-weight: 600; line-height: 1.3; margin-bottom: 8px; color: white; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; word-wrap: break-word; } /* Çevirme ipucu - daha fazla sola kaydırıldı */ .flip-hint { font-size: 0.6rem; color: rgba(255, 255, 255, 0.8); opacity: 0.8; margin-top: auto; margin-left: -10px; /* Daha fazla sola kaydırıldı: -6px -> -10px */ font-style: italic; text-align: left; } /* Puan gösterimi */ .anime-score { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.8); color: white; padding: 4px 8px; border-radius: 12px; font-size: 0.7rem; font-weight: 600; z-index: 10; } /* Zaten izlendi butonu - İyileştirilmiş */ .already-watched-btn { position: absolute; bottom: 24px; right: 12px; padding: 8px 16px; font-size: 0.75rem; font-weight: 600; border-radius: 20px; background: rgba(255, 255, 255, 0.9); color: #667eea; border: 2px solid rgba(255, 255, 255, 0.3); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); cursor: pointer; z-index: 10; min-width: 80px; text-align: center; transition: all 0.3s ease; backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; gap: 4px; } /* İzlendi butonu - check ikonu */ .already-watched-btn::before { content: '✓'; font-size: 0.8rem; font-weight: 900; } /* İzlendi butonu hover efekti */ .already-watched-btn:hover { background: rgba(255, 255, 255, 1); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); color: #5a67d8; } /* İzlendi butonu aktif durumu */ .already-watched-btn:active { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } /* İzlendi butonu - izlenmiş durumu */ .already-watched-btn.watched { background: rgba(72, 187, 120, 0.9); color: white; border-color: rgba(72, 187, 120, 0.5); } .already-watched-btn.watched:hover { background: rgba(72, 187, 120, 1); transform: translateY(-2px); } /* Silme butonu */ .delete-button { position: absolute; top: 8px; left: 8px; width: 38px; height: 38px; border-radius: 50%; background: rgba(244, 67, 54, 0.9); color: white; border: none; font-size: 12px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; } /* Alt bölüm (türler vs) */ .anime-bottom-section { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; } /* Tür etiketleri konteyneri */ .genres-container-front { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; } /* Tür etiketleri - Taşma düzeltmesi */ .genre-tag-front { font-size: 0.6rem; padding: 2px 6px; border-radius: 8px; background: rgba(255, 255, 255, 0.2); color: white; white-space: nowrap; /* Aşağıdaki satırlar kaldırıldı - genre taşması için */ /* overflow: hidden; */ /* text-overflow: ellipsis; */ /* max-width: 60px; */ } /* MAL butonu - büyütüldü ve tam ortalandı */ .mal-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; /* Büyütüldü: 8px -> 10px */ padding: 18px 24px; /* Büyütüldü: 14px 20px -> 18px 24px */ font-size: 0.95rem; /* Büyütüldü: 0.85rem -> 0.95rem */ font-weight: 700; /* Daha kalın yazı tipi */ border-radius: 28px; /* Büyütüldü: 24px -> 28px */ background: #ffffff; color: #3b4cca; text-decoration: none; margin: 0 auto; /* Tam ortalandı */ transition: all 0.3s ease; min-width: 180px; /* Büyütüldü: 160px -> 180px */ box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3); border: 2px solid rgba(255, 255, 255, 0.3); } .mal-button:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4); } /* MAL logosu */ .mal-logo { width: 20px; /* Büyütüldü: 18px -> 20px */ height: 20px; /* Büyütüldü: 18px -> 20px */ flex-shrink: 0; } /* MAL mesajı */ .mal-message { font-size: 0.7rem; text-align: center; margin-top: 8px; color: rgba(255, 255, 255, 0.8); line-height: 1.3; } /* Hover efektleri - sadece desktop */ @media (hover: hover) { .anime-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); } } /* Touch cihazlar için */ .anime-card:active { transform: scale(0.98); } /* Flip animasyonu */ .anime-card.flipped .content { transform: rotateY(180deg); } /* Anime rank gizle */ .anime-rank { width: 0px; height: 0px; display: none; } /* Card inner border radius */ .card-inner { border-radius: 12px; } } /* ===== YATAY MOD İYİLEŞTİRMELERİ ===== */ @media screen and (max-width: 768px) and (orientation: landscape) { .recommendations-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } .anime-card { height: 380px; /* Yatay modda artırıldı: 300px -> 380px */ border: 2px solid #3b4cca; /* Sabit renk */ background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ } .anime-image-container { height: 220px; /* Artırıldı: 180px -> 220px */ display: flex; align-items: center; justify-content: center; background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ } /* Yatay modda resim optimizasyonu */ .anime-image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; object-position: center center; } .anime-info { padding: 8px; min-height: 100px; /* Artırıldı: 80px -> 100px */ background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ color: white; } .anime-name { font-size: 0.8rem; -webkit-line-clamp: 1; margin-bottom: 4px; color: white; } .flip-hint { font-size: 0.6rem; margin-left: -12px; /* Yatay modda daha fazla sola kaydırıldı: -6px -> -12px */ color: rgba(255, 255, 255, 0.8); } /* Yatay mod için genre taşma düzeltmesi */ .genre-tag-front { font-size: 0.55rem; padding: 1px 4px; background: rgba(255, 255, 255, 0.2); color: white; white-space: nowrap; /* Taşma özellikleri kaldırıldı */ } /* Yatay modda MAL butonu */ .mal-button { padding: 14px 18px; font-size: 0.8rem; min-width: 140px; background: #ffffff; color: #3b4cca; } .mal-logo { width: 18px; height: 18px; } /* Yatay modda already watched butonu */ .already-watched-btn { padding: 6px 12px; font-size: 0.7rem; min-width: 70px; background: #ff6b35; border: 2px solid white; box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3); bottom: 12px; right: 8px; } .card-back { background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ justify-content: center; align-items: center; color: white; } /* Yatay modda no-image-placeholder */ .no-image-placeholder { background: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.8); } } /* ===== ÇOK KÜÇÜK EKRANLAR (iPhone SE, vs) ===== */ @media screen and (max-width: 375px) { .recommendations-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 2px; } .anime-card { height: 460px; /* Artırıldı: 380px -> 460px */ border: 2px solid #3b4cca; /* Sabit renk */ background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ } .anime-image-container { height: 280px; /* Artırıldı: 200px -> 280px */ display: flex; align-items: center; justify-content: center; background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ } /* Küçük ekranlarda resim optimizasyonu */ .anime-image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; object-position: center center; } .anime-info { padding: 10px; min-height: 140px; /* Artırıldı: 120px -> 140px */ background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ color: white; } .anime-name { font-size: 0.85rem; color: white; } .anime-score { top: 6px; right: 6px; padding: 3px 6px; font-size: 0.65rem; } /* Küçük ekranlarda already watched butonu */ .already-watched-btn { bottom: 10px; right: 6px; padding: 6px 12px; /* Artırıldı: 3px 6px -> 6px 12px */ font-size: 0.7rem; /* Artırıldı: 0.6rem -> 0.7rem */ font-weight: 600; min-width: 65px; /* Artırıldı: 50px -> 65px */ background: #ff6b35; border: 2px solid white; box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3); border-radius: 16px; } .delete-button { width: 40px; height: 40px; font-size: 10px; } .flip-hint { margin-left: -12px; /* Küçük ekranlarda daha fazla sola kaydırıldı: -6px -> -12px */ color: rgba(255, 255, 255, 0.8); } /* Küçük ekranlar için genre taşma düzeltmesi */ .genre-tag-front { background: rgba(255, 255, 255, 0.2); color: white; white-space: nowrap; /* Taşma özellikleri kaldırıldı */ } /* Küçük ekranlarda MAL butonu */ .mal-button { padding: 16px 20px; font-size: 0.9rem; min-width: 160px; background: #ffffff; color: #3b4cca; } .card-back { background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ justify-content: center; align-items: center; color: white; } /* Küçük ekranlarda no-image-placeholder */ .no-image-placeholder { background: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.8); } } /* ===== ULTRA KÜÇÜK EKRANLAR (320px ve altı) ===== */ @media screen and (max-width: 320px) { .recommendations-grid { grid-template-columns: 1fr; gap: 12px; } .anime-card { height: 540px; /* Çok daha fazla artırıldı: 460px -> 540px */ max-width: 100%; border: 2px solid #3b4cca; /* Sabit renk */ background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ } .anime-image-container { height: 360px; /* Çok daha fazla artırıldı: 280px -> 360px */ display: flex; align-items: center; justify-content: center; background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ } /* Ultra küçük ekranlarda resim optimizasyonu */ .anime-image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; object-position: center center; } .anime-info { min-height: 140px; /* Artırıldı: 120px -> 140px */ background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ color: white; } .anime-name { color: white; } .flip-hint { margin-left: -12px; /* Ultra küçük ekranlarda daha fazla sola kaydırıldı: -6px -> -12px */ color: rgba(255, 255, 255, 0.8); } /* Ultra küçük ekranlar için genre taşma düzeltmesi */ .genre-tag-front { background: rgba(255, 255, 255, 0.2); color: white; white-space: nowrap; /* Taşma özellikleri kaldırıldı */ } /* Ultra küçük ekranlarda already watched butonu */ .already-watched-btn { padding: 8px 16px; font-size: 0.75rem; min-width: 80px; background: #ff6b35; border: 2px solid white; box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4); border-radius: 20px; font-weight: 600; bottom: 18px; right: 8px; } /* Ultra küçük ekranlarda MAL butonu */ .mal-button { padding: 18px 24px; font-size: 0.95rem; min-width: 180px; background: #ffffff; color: #3b4cca; } .card-back { background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ justify-content: center; align-items: center; color: white; } /* Ultra küçük ekranlarda no-image-placeholder */ .no-image-placeholder { background: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.8); } } /* ===== DARK MODE DESTEK ===== */ @media screen and (max-width: 768px) { .dark-mode .anime-card { background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ color: var(--text-color-dark, #eee); border: 3px solid #3b4cca; /* Sabit renk */ } .dark-mode .anime-image-container { background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ } .dark-mode .anime-info { background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ color: white; } .dark-mode .card-back { background: #3b4cca; /* Sabit renk - gradient kaldırıldı */ color: white; } .dark-mode .no-image-placeholder { background: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.8); } .dark-mode .anime-name { color: white; } .dark-mode .flip-hint { color: rgba(255, 255, 255, 0.8); } /* Dark mode için genre taşma düzeltmesi */ .dark-mode .genre-tag-front { background: rgba(255, 255, 255, 0.2); color: white; white-space: nowrap; /* Taşma özellikleri kaldırıldı */ } .dark-mode .mal-message { color: rgba(255, 255, 255, 0.8); } /* Dark mode'da MAL butonu */ .dark-mode .mal-button { background: #ffffff; color: #3b4cca; box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3); } .dark-mode .mal-button:hover { background: rgba(255, 255, 255, 0.9); box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4); } /* Dark mode'da already watched butonu */ .dark-mode .already-watched-btn { background: #ff6b35; color: white; border: 2px solid white; box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4); } .dark-mode .already-watched-btn:hover { background: #ff5722; box-shadow: 0 4px 12px rgba(255, 87, 34, 0.5); } } /* ===== ACCESSIBILITY İYİLEŞTİRMELERİ ===== */ @media screen and (max-width: 768px) { /* Fokus göstergeleri */ .anime-card:focus { outline: 2px solid #667eea; outline-offset: 2px; border-radius: 12px; } .mal-button:focus { outline: 2px solid #667eea; outline-offset: 2px; } .already-watched-btn:focus { outline: 2px solid #667eea; outline-offset: 2px; } /* Animasyon azaltma */ @media (prefers-reduced-motion: reduce) { .anime-card .content { transition: none; } .anime-card:hover, .anime-card:active { transform: none; } .mal-button { transition: none; } .mal-button:hover { transform: none; } .already-watched-btn { transition: none; } .already-watched-btn:hover { transform: none; } } } /* ===== PERFORMANS İYİLEŞTİRMELERİ ===== */ @media screen and (max-width: 768px) { .anime-card { will-change: transform; contain: layout style paint; } .anime-image { will-change: transform; contain: layout style paint; } .anime-card .content { will-change: transform; } .mal-button { will-change: transform; } .already-watched-btn { will-change: transform; } .anime-card-wrapper::before { content: ""; background: none; /* mavi tonları */ } .product-hunt { display: none !important; } }