/* Turnuva Paneli - Özel CSS */

/* Reset ve Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

/* Filter Button Styles */
.filter-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid transparent;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: #ffffff;
    color: #170c02;
    border-color: #ffffff;
}

/* Tournament Card Styles */
.tournament-card {
    background: linear-gradient(135deg, #1a2332 0%, #170c02 100%);
    border: 1px solid rgba(255, 223, 60, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 223, 60, 0.2);
    border-color: rgba(255, 223, 60, 0.6);
}

.tournament-card.completed {
    border-color: rgba(156, 163, 175, 0.3);
    opacity: 0.8;
}

.tournament-card.completed:hover {
    border-color: rgba(156, 163, 175, 0.6);
    box-shadow: 0 10px 25px rgba(156, 163, 175, 0.1);
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.status-badge.active {
    background: #ffdf3c;
    color: #ffffff;
}

.status-badge.upcoming {
    background: #f59e0b;
    color: #ffffff;
}

.status-badge.completed {
    background: #6b7280;
    color: #ffffff;
}

/* Provider Logo */
.provider-logo {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

/* Tournament Image */
.tournament-image {
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    min-height: 200px;
    background: linear-gradient(135deg, #1a2332 0%, #170c02 100%);
    display: block;
    opacity: 0;
    position: relative;
    z-index: 1;
    /* pointer-events: none kaldırıldı - hover efektleri için gerekli */
}

.tournament-image.loaded {
    opacity: 1;
}

.tournament-image.loading {
    opacity: 0.3;
    background: linear-gradient(135deg, #1a2332 0%, #170c02 100%);
    position: relative;
}

.tournament-image.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #2dcc70;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tournament-card:hover .tournament-image {
    transform: scale(1.05);
}

.tournament-card.completed .tournament-image {
    filter: grayscale(85%);
    opacity: 0.7;
}

/* Tournament Image Fallback */
.tournament-image-fallback {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.tournament-card:hover .tournament-image-fallback {
    transform: scale(1.05);
}

.tournament-card.completed .tournament-image-fallback {
    filter: grayscale(85%);
    opacity: 0.7;
}

.tournament-image-fallback i {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.tournament-image-fallback span {
    font-weight: 500;
    opacity: 0.9;
}

/* Tournament Content */
.tournament-content {
    padding: 20px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.tournament-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.tournament-provider {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.prize-pool {
    font-size: 24px;
    font-weight: 700;
    color: #ffdf3c;
    margin-bottom: 4px;
}

.prize-label {
    font-size: 14px;
    color: #ffdf3c;
    font-weight: 500;
    margin-bottom: 16px;
}

.tournament-dates {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.tournament-description {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 20px;
    text-align: center;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 21;
    pointer-events: auto;
    justify-content: center;
    gap: 6px;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #170c02;
}

.btn-primary {
    background: #ffdf3c;
    color: #000000;
    border: 1px solid #ffdf3c;
}

.btn-primary:hover {
    background: #e6b800;
    border-color: #e6b800;
}

/* Toast Notifications */
.toast {
    background: #1f2937;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #ffdf3c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast.info {
    border-left-color: #3b82f6;
}

/* Modal Styles */
.modal-overlay {
    backdrop-filter: blur(4px);
}

#tournament-modal {
    overflow: hidden;
    padding: 5px 0;
}

.modal-content {
    animation: modalSlideIn 0.3s ease;
}

/* Turnuva Modal Container */
.tournament-modal-container {
    max-width: 1200px;
    min-width: 600px;
    width: 90%;
    max-height: 95vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    scroll-margin-top: 3rem;
}

/* Sadece Görsel Üst Bölüm */
.tournament-modal-header {
    position: relative;
    height: 0;
    padding-bottom: 26.01%; /* 400/1538 * 100 = 26.01% (1538x400 aspect ratio - modal detay görselleri için) */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a2332; /* Debug için arka plan rengi */
    min-height: 200px; /* Minimum yükseklik ekle */
}

.tournament-modal-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.tournament-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tournament-modal-close:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

/* Mavi Alt Bölüm */
.tournament-modal-body {
    background: #1a2332;
    padding: 30px;
    color: white;
    flex: 1;
    overflow: hidden;
    min-height: 0; /* Flexbox için gerekli */
}

.tournament-modal-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.tournament-details-table {
    margin-bottom: 25px;
}

.tournament-detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.tournament-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tournament-detail-label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
}

.tournament-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.tournament-detail-value.status-active {
    background: #ffdf3c;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.tournament-detail-value.status-upcoming {
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.tournament-detail-value.status-completed {
    background: #6b7280;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.tournament-rules-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tournament-rules-link:hover {
    color: #f59e0b;
}

.tournament-rules-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 223, 60, 0.2);
    max-width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
}

.tournament-rules-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fbbf24;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tournament-rules-title i {
    font-size: 20px;
}

.tournament-rules-content {
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.8;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    overflow-x: auto;
    box-sizing: border-box;
}

.tournament-rules-content * {
    max-width: 100%;
    box-sizing: border-box;
}

.tournament-rules-content > * {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tournament-rules-content p {
    margin-bottom: 10px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tournament-rules-content ul,
.tournament-rules-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.tournament-rules-content li {
    margin-bottom: 8px;
}

.tournament-rules-content strong {
    color: #fbbf24;
    font-weight: 600;
}

.tournament-rules-content h1,
.tournament-rules-content h2,
.tournament-rules-content h3,
.tournament-rules-content h4,
.tournament-rules-content h5,
.tournament-rules-content h6 {
    color: #fbbf24;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.tournament-rules-content h1 { font-size: 24px; }
.tournament-rules-content h2 { font-size: 20px; }
.tournament-rules-content h3 { font-size: 18px; }
.tournament-rules-content h4 { font-size: 16px; }
.tournament-rules-content h5 { font-size: 14px; }
.tournament-rules-content h6 { font-size: 12px; }

.tournament-rules-content a {
    color: #fbbf24;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tournament-rules-content a:hover {
    color: #f59e0b;
}

.tournament-rules-content img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
    display: block;
}

.tournament-rules-content table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    table-layout: auto;
    min-width: 100%;
}

@media (max-width: 768px) {
    .tournament-rules-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tournament-rules-content table thead,
    .tournament-rules-content table tbody,
    .tournament-rules-content table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
}

.tournament-rules-content table th,
.tournament-rules-content table td {
    padding: 8px 12px;
    border: 1px solid rgba(255, 223, 60, 0.3);
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 50px;
}

.tournament-rules-content table th {
    background: rgba(255, 223, 60, 0.1);
    color: #fbbf24;
    font-weight: 600;
}

.tournament-rules-content blockquote {
    border-left: 4px solid #fbbf24;
    padding-left: 15px;
    margin: 15px 0;
    font-style: italic;
    color: #d1d5db;
}

.tournament-rules-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.tournament-rules-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 15px 0;
    max-width: 100%;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.tournament-rules-content pre code {
    background: none;
    padding: 0;
}

.tournament-play-button {
    width: 100%;
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tournament-play-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .tournament-modal-container {
        max-width: 90%;
        min-width: 600px;
    }
}

@media (max-width: 1200px) {
    .tournament-modal-container {
        max-width: 95%;
        min-width: 500px;
    }
}

@media (max-width: 768px) {
    .tournament-modal-container {
        margin: 20px;
        max-width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-height: 95vh;
    }
    
    .tournament-modal-header {
        padding-bottom: unset; /* Mobilde 700x800 görseli için doğru oran (800/700 * 100) */
    }
    
    .tournament-modal-body {
        padding: 20px;
    }
    
    .tournament-detail-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #tournament-modal {
        padding: 2px 0;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .tournament-modal-container {
        margin: 10px;
        max-width: calc(100vw - 20px);
        min-width: calc(100vw - 20px);
        max-height: 98vh;
    }
    
    .tournament-modal-header {
        padding-bottom: unset; /* Çok küçük ekranlarda 700x800 görseli için doğru oran (800/700 * 100) */
    }
    
    .tournament-modal-body {
        padding: 15px;
    }
}

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

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(255, 223, 60, 0.3);
    border-top: 3px solid #ffdf3c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tournament-card {
        margin-bottom: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .prize-pool {
        font-size: 20px;
    }
    
    .tournament-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    
    .tournament-content {
        padding: 16px;
    }
}

/* Iframe Specific Styles */
.iframe-mode {
    margin: 0;
    padding: 0;
}

.iframe-mode header {
    display: block;
}

.iframe-mode nav {
    display: block;
}

/* Iframe modunda viewport-based height'ları devre dışı bırak */
body.iframe-mode .tournament-modal-container {
    max-height: none !important;
}

body.iframe-mode [style*="max-height"] {
    max-height: none !important;
}

body.iframe-mode [style*="80vh"],
body.iframe-mode [style*="95vh"],
body.iframe-mode [style*="98vh"] {
    max-height: none !important;
}

/* Utility Classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #ffdf3c, #e6b800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease;
}

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

.slide-up {
    animation: slideUp 0.5s ease;
}

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

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

/* Focus States */
.filter-btn:focus,
.btn:focus {
    outline: 2px solid #ffdf3c;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .filter-btn,
    .action-buttons,
    #toast-container,
    #tournament-modal {
        display: none !important;
    }
    
    .tournament-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Tournament Games Section */
.tournament-games-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 223, 60, 0.2);
}

.tournament-games-title {
    color: #ffdf3c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tournament-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
}

.tournament-game-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tournament-game-item:hover {
    background: rgba(255, 223, 60, 0.2);
    border-color: #ffdf3c;
    transform: translateY(-2px);
}

.tournament-game-thumbnail {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tournament-game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournament-game-thumbnail .no-image {
    color: #666;
    font-size: 1.5rem;
}

.tournament-game-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile responsive for tournament games */
@media (max-width: 768px) {
    .tournament-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .tournament-game-thumbnail {
        height: 50px;
    }
    
    .tournament-game-name {
        font-size: 0.7rem;
    }
}

/* Tournament Categories Styles */
.tournament-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.category-tag {
    background: linear-gradient(135deg, #ffdf3c, #d4a017);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 4px rgba(255, 223, 60, 0.3);
}

.tournament-categories-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 223, 60, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 223, 60, 0.2);
}

.tournament-categories-title {
    color: #ffdf3c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tournament-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-badge {
    background: linear-gradient(135deg, #ffdf3c, #d4a017);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 4px rgba(255, 223, 60, 0.3);
    transition: all 0.2s ease;
}

.category-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 223, 60, 0.4);
}

/* Mobile responsive for categories */
@media (max-width: 768px) {
    .tournament-categories {
        gap: 0.25rem;
    }
    
    .category-tag {
        font-size: 0.625rem;
        padding: 0.125rem 0.375rem;
    }
    
    .tournament-categories-section {
        margin: 1rem 0;
        padding: 0.75rem;
    }
    
    .tournament-categories-title {
        font-size: 0.875rem;
    }
    
    .category-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
    }
}

/* Category Filter Buttons */
.category-filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-filter-btn:hover {
    background: rgba(255, 223, 60, 0.2);
    border-color: rgba(255, 223, 60, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 223, 60, 0.2);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, #ffdf3c, #d4a017);
    border-color: #ffdf3c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 223, 60, 0.3);
}

.category-filter-btn.active:hover {
    background: linear-gradient(135deg, #d4a017, #b8941f);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 223, 60, 0.4);
}

/* Mobile responsive for category filter buttons */
@media (max-width: 768px) {
    .category-filter-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}
