/* Premium Jiujiu Theme */

body {
    background-color: #0b0b0d; /* Deep Matte Dark */
    color: #c0c0c0;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.3px;
}

/* Navbar - Sleek & Modern */
.navbar {
    background: rgba(20, 20, 23, 0.95) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15); /* Very subtle gold */
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px); /* Glass effect if supported */
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 300; /* Elegant thin weight */
    color: #d4af37 !important; /* Champagne Gold */
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: none; /* Clean look */
}

.top-bar {
    background: #050505 !important;
    border-bottom: 1px solid #1a1a1a;
}

/* Sidebar - Minimalist */
.list-group-item {
    background: transparent !important;
    border: none !important;
    color: #888;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-bottom: 4px;
}

.list-group-item:hover, 
.list-group-item.active {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #d4af37;
    padding-left: 20px;
    font-weight: 500;
}

.list-group-item i {
    width: 24px;
    text-align: center;
    color: #555;
    transition: color 0.3s;
}
.list-group-item:hover i {
    color: #d4af37;
}

/* Cards - High End */
.card {
    background-color: #151518;
    border: none;
    border-radius: 12px; /* Softer corners */
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.thumb-container {
    position: relative;
    overflow: hidden;
}

.card-img-top, .thumb-img {
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.card:hover .card-img-top, 
.card:hover .thumb-img {
    transform: scale(1.05); /* Subtle zoom */
    opacity: 1;
}

.card-body {
    padding: 14px;
}

.card-title {
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.5;
    transition: color 0.3s;
}

.card:hover .card-title {
    color: #d4af37;
}

.card-text, .video-meta {
    color: #666;
    font-size: 0.8rem;
}

/* Pagination */
.pagination .page-link {
    background-color: #151518;
    border-color: #222;
    color: #888;
    border-radius: 4px;
    margin: 0 2px;
}
.pagination .page-item.active .page-link {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #000;
    font-weight: bold;
}
.pagination .page-link:hover {
    background-color: #222;
    color: #d4af37;
}

/* Buttons */
.btn-outline-warning {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.5);
    font-weight: 400;
    letter-spacing: 1px;
}
.btn-outline-warning:hover {
    background-color: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background: #0b0b0d;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
