@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --netflix-black: #141414;
    --netflix-red: #E50914;
    --netflix-white: #ffffff;
    --netflix-gray: #8c8c8c;
    --netflix-dark-gray: #2f2f2f;
    --nike-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #daa520 100%);
    --subtle-gold: rgba(212, 175, 55, 0.1);
    --gold-border: rgba(212, 175, 55, 0.3);
    --gold-accent: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--netflix-black);
    color: var(--netflix-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Database Warning */
.db-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ff6b6b;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 9999;
    font-weight: bold;
}

.db-warning + * {
    margin-top: 50px;
}

/* Header */
.header {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--subtle-gold);
}

.header.scrolled {
    background: rgba(20, 20, 20, 0.98);
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 900;
    color: var(--netflix-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 1px solid var(--gold-border);
}

.logo-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--netflix-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--netflix-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--netflix-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-review, .btn-post, .btn-back {
    background: var(--netflix-red);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-back {
    background: var(--nike-gradient);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-review::before, .btn-post::before, .btn-back::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;
}

.btn-review:hover, .btn-post:hover {
    background: #f40612;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4);
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.btn-review:hover::before, .btn-post:hover::before, .btn-back:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--netflix-black) 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left h1 {
    font-size: 72px;
    font-weight: 900;
    color: var(--netflix-white);
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-left h1 .highlight {
    background: var(--nike-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--netflix-gray);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

/* Search Section */
.search-section {
    margin-bottom: 40px;
}

.search-container {
    position: relative;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--netflix-white);
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    border-color: var(--netflix-red);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: var(--netflix-gray);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--netflix-red);
    border: none;
    border-radius: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

.search-btn:hover {
    background: #f40612;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

/* Category Tags */
.category-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-border);
    border-radius: 25px;
    color: var(--netflix-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.tag:hover, .tag.active {
    background: var(--subtle-gold);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.tag:hover::before, .tag.active::before {
    left: 100%;
}

/* Featured Review Card */
.featured-review {
    width: 100%;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid var(--gold-border);
    backdrop-filter: blur(20px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.featured-review:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--gold-accent);
}

.featured-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--subtle-gold);
    opacity: 0.2;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.featured-review:hover::before {
    opacity: 0.4;
}

.featured-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.featured-badge {
    background: var(--netflix-red);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.featured-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--netflix-white);
    transition: all 0.3s ease;
}

.featured-review:hover .featured-title {
    color: var(--gold-accent);
}

.featured-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 28px;
    color: #ffd700;
}

.featured-description {
    font-size: 18px;
    color: var(--netflix-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.featured-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--netflix-white);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.featured-review:hover .stat-number {
    color: var(--gold-accent);
}

.stat-label {
    font-size: 14px;
    color: var(--netflix-gray);
    transition: color 0.3s ease;
}

/* Stats Section */
.stats-section {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 40px;
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px);
    border: 1px solid var(--gold-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stats-item {
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--subtle-gold);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stats-item:hover {
    transform: translateY(-8px);
    background: var(--subtle-gold);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stats-number {
    font-size: 42px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.stats-label {
    color: var(--netflix-gray);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.stats-item:hover .stats-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Content Section */
.content {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--netflix-white);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--netflix-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Review Grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gold-border);
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: var(--gold-accent);
}

.review-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.review-rating {
    background: rgba(0, 0, 0, 0.85);
    color: var(--gold-accent);
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(15px);
    border: 1px solid var(--gold-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.review-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.review-category {
    background: var(--gold-gradient);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.review-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--netflix-white);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.review-card:hover .review-title {
    color: var(--gold-accent);
}

.review-summary {
    color: var(--netflix-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--nike-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.reviewer-name {
    color: var(--netflix-white);
    font-weight: 600;
    font-size: 14px;
}

.review-stats {
    display: flex;
    gap: 20px;
    color: var(--netflix-gray);
    font-size: 14px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.like-btn {
    background: none;
    border: none;
    color: var(--netflix-gray);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 50%;
}

.like-btn:hover {
    color: var(--netflix-red);
    transform: scale(1.2);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--gold-border);
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--netflix-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--gold-accent);
}

.breadcrumb-separator {
    color: var(--netflix-gray);
    margin: 0 5px;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--netflix-red);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
    z-index: 9999;
    transform: translateX(400px);
    transition: all 0.5s ease;
}

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

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 56px;
    }
    
    .featured-review {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-left h1 {
        font-size: 42px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 20px;
        margin-top: -40px;
    }
    
    .content {
        padding: 60px 20px;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }
}

/* Category specific styles */
.main-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.main-tab {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold-border);
    border-radius: 25px;
    text-decoration: none;
    color: var(--netflix-white);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.main-tab.active {
    color: #1a1a1a;
    border-color: var(--gold-accent);
    background: var(--gold-gradient);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.main-tab:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-accent);
}

/* Category Grid */
.category-section {
    margin-bottom: 60px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--gold-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(10px);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: transparent;
    color: white;
}

.category-card.products:hover {
    background: linear-gradient(135deg, var(--netflix-red), #f40612);
}

.category-card.services:hover {
    background: var(--nike-gradient);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s ease;
    color: var(--gold-accent);
}

.category-card:hover .category-icon {
    color: white;
    transform: scale(1.2) rotate(10deg);
}

.category-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.category-count {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 600;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 100px 20px;
    color: var(--netflix-gray);
}

.empty-state i {
    font-size: 80px;
    margin-bottom: 30px;
    opacity: 0.5;
    color: var(--gold-accent);
}

.empty-state h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--netflix-white);
    font-weight: 800;
}

.empty-state p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 12px 20px;
    border: 2px solid var(--gold-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--netflix-white);
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.pagination a:hover {
    border-color: var(--gold-accent);
    background: var(--gold-gradient);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.pagination .current {
    background: var(--gold-gradient);
    color: #1a1a1a;
    border-color: var(--gold-accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}