
        .anime-stats-basic {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid #dee2e6;
        }
        
        .anime-stats-basic .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }
        
        .anime-stats-basic .stat {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .anime-stats-basic .stat-value {
            font-size: 32px;
            font-weight: bold;
            color: #0073aa;
            display: block;
            margin-bottom: 5px;
        }
        
        .anime-stats-basic .stat-label {
            font-size: 14px;
            color: #666;
        }
        
        .anime-list-shortcode {
            display: grid;
            gap: 15px;
            margin: 20px 0;
        }
        
        .anime-item-shortcode {
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            align-items: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .anime-item-shortcode:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .anime-item-shortcode .anime-title {
            flex: 1;
        }
        
        .anime-item-shortcode .anime-title a {
            font-size: 16px;
            font-weight: bold;
            color: #0073aa;
            text-decoration: none;
        }
        
        .anime-item-shortcode .anime-title a:hover {
            text-decoration: underline;
        }
        
        .anime-item-shortcode .anime-meta {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }
        
        .no-anime {
            text-align: center;
            padding: 40px;
            color: #666;
            background: #f8f9fa;
            border-radius: 8px;
            border: 2px dashed #dee2e6;
            margin: 20px 0;
        }
        
        @media (max-width: 768px) {
            .anime-stats-basic .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .anime-item-shortcode {
                flex-direction: column;
                text-align: center;
            }
        }