* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2196F3;
    --secondary: #FF9800;
    --accent: #FFC107;
    --dark: #f5f7fa;
    --dark-card: #ffffff;
    --dark-lighter: #fafbfc;
    --light: #1a1a2e;
    --text-light: #5f6368;
    --gradient: linear-gradient(135deg, #2196F3 0%, #FF9800 100%);
    --gradient-2: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 30px rgba(33, 150, 243, 0.2);
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 193, 7, 0.06) 0%, transparent 50%);
    z-index: 0;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { 
        opacity: 1;
        filter: brightness(1);
    }
    50% { 
        opacity: 0.8;
        filter: brightness(1.05);
    }
}

/* Floating Music Notes Background */
.floating-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 2rem;
    opacity: 0.25;
    animation: floatNote 20s infinite;
    filter: drop-shadow(0 0 10px rgba(66, 165, 245, 0.6));
}

@keyframes floatNote {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.25;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

.note:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 1.8rem; color: var(--primary); }
.note:nth-child(2) { left: 25%; animation-delay: 3s; font-size: 2.8rem; color: var(--secondary); }
.note:nth-child(3) { left: 40%; animation-delay: 6s; font-size: 2rem; color: var(--accent); }
.note:nth-child(4) { left: 60%; animation-delay: 2s; font-size: 2.5rem; color: var(--primary); }
.note:nth-child(5) { left: 75%; animation-delay: 5s; font-size: 1.9rem; color: var(--secondary); }
.note:nth-child(6) { left: 90%; animation-delay: 8s; font-size: 2.3rem; color: var(--accent); }

/* Animated Vinyl Record Background Accent */
.vinyl-decoration {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at center, #e8f4fd 0%, #e8f4fd 15%, transparent 15%, transparent 17%, #e8f4fd 17%),
        conic-gradient(from 0deg, 
            rgba(33, 150, 243, 0.12) 0deg, 
            rgba(255, 152, 0, 0.12) 120deg, 
            rgba(255, 193, 7, 0.1) 240deg, 
            rgba(33, 150, 243, 0.12) 360deg);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    animation: spinVinyl 30s linear infinite;
    box-shadow: 
        0 0 40px rgba(33, 150, 243, 0.15),
        inset 0 0 30px rgba(33, 150, 243, 0.1);
}

.vinyl-decoration.left {
    top: 20%;
    left: -300px;
}

.vinyl-decoration.right {
    bottom: 10%;
    right: -300px;
}

@keyframes spinVinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Glowing Orb Accents */
.glow-orb {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
    animation: floatOrb 20s ease-in-out infinite;
}

.glow-orb.blue {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.glow-orb.green {
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: 7s;
}

.glow-orb.orange {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    25% {
        transform: translate(80px, -80px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50px, 50px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(60px, 30px) scale(1.05);
        opacity: 0.45;
    }
}

/* Neon Border Effect on Scroll */
.neon-line {
    position: fixed;
    height: 4px;
    width: 100%;
    top: 80px;
    left: 0;
    background: var(--gradient);
    box-shadow: 
        0 0 20px rgba(33, 150, 243, 0.5), 
        0 0 40px rgba(255, 152, 0, 0.3),
        0 0 60px rgba(33, 150, 243, 0.2);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
    animation: neonPulse 2s ease-in-out infinite;
}

.neon-line.visible {
    opacity: 1;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(33, 150, 243, 0.5), 
            0 0 40px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(33, 150, 243, 0.7), 
            0 0 60px rgba(255, 152, 0, 0.5),
            0 0 80px rgba(33, 150, 243, 0.3);
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(33, 150, 243, 0.15);
    box-shadow: 
        0 5px 30px rgba(33, 150, 243, 0.08),
        0 0 20px rgba(33, 150, 243, 0.05);
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.logo::before {
    content: '🎵';
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(66, 165, 245, 0.5));
    animation: bounce 2s ease-in-out infinite;
}

/* Animated Logo Text with Pulse Effect */
.logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    z-index: -1;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    position: relative;
    z-index: 2;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(33, 150, 243, 0.15);
    border-radius: 20px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%) translateY(10px);
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.15);
    margin-top: 1rem;
    z-index: 1000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #5f6368;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown a:hover {
    background: rgba(33, 150, 243, 0.08);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 2rem;
}

.dropdown a::before {
    display: none;
}

/* Slider Section */
.slider-section {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.swiper {
    width: 100%;
    padding: 0 0 4rem;
    border-radius: 25px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    height: 500px;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.swiper-slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
    padding: 3rem 2.5rem 2rem;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.slide-description {
    color: #5f6368;
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.slide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: var(--gradient);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.slide-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(66, 165, 245, 0.4);
}

.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: rgba(33, 150, 243, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

/* Content Section - Combined Slider + Recent Posts */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(66, 165, 245, 0.6));
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #5f6368;
    font-weight: 500;
    margin-top:15px;
}

/* Recent Posts Section */
.recent-posts-section {
    margin-top: 5rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.post-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.08);
}

.post-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s;
}

.post-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(33, 150, 243, 0.15),
        0 0 40px rgba(33, 150, 243, 0.2);
    border-color: var(--primary);
    background: #ffffff;
}

.post-card:hover::before {
    opacity: 0.3;
}

.post-image {
    width: 100%;
    height: 250px;
    background: var(--dark-lighter);
    overflow: hidden;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #5f6368;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
    line-height: 1.4;
}

.post-description {
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

/* Blog Detail Page */
.blog-detail-container {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(33, 150, 243, 0.15);
    box-shadow: 0 10px 40px rgba(33, 150, 243, 0.1);
}

.blog-detail-header {
    margin-bottom: 3rem;
}

.blog-detail-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a2e;
}

.blog-detail-meta {
    display: flex;
    gap: 2rem;
    color: #5f6368;
    font-size: 1rem;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    color: #5f6368;
    line-height: 2;
    font-size: 1.1rem;
}

.blog-detail-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a2e;
}

.blog-detail-content p {
    margin-bottom: 1.8rem;
}

.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(33, 150, 243, 0.15);
}

.related-posts h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    background: #fafbfc;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.15);
    transition: all 0.3s;
    cursor: pointer;
}

.related-post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
}

.related-post-image {
    width: 100%;
    height: 180px;
    background: var(--dark);
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-post-date {
    font-size: 0.85rem;
    color: #5f6368;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(255, 193, 7, 0.06) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(33, 150, 243, 0.15);
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.08);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

/* Spotlight effect */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-top: 2rem;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2196F3 0%, #FF9800 50%, #FFC107 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
    position: relative;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #5f6368;
    animation: fadeInUp 1s ease;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1.2s ease;
}

.hero-icon {
    font-size: 3.5rem;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s;
}

.hero-icon:hover {
    opacity: 1;
    transform: scale(1.3) rotate(15deg);
}

.hero-icon:nth-child(1) { animation-delay: 0s; }
.hero-icon:nth-child(2) { animation-delay: 0.5s; }
.hero-icon:nth-child(3) { animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Category Tabs */
.category-tabs {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tab-btn {
    padding: 1rem 2.5rem;
    border: 2px solid rgba(33, 150, 243, 0.2);
    background: #ffffff;
    color: #1a1a2e;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.05);
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.4s;
    z-index: 0;
}

.tab-btn span {
    position: relative;
    z-index: 1;
}

.tab-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
}

.tab-btn:hover::before {
    left: 0;
}

.tab-btn.active {
    background: var(--gradient);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(33, 150, 243, 0.25);
    transform: translateY(-3px);
    color: white;
}

.tab-btn.active::before {
    left: 0;
}

/* CD Grid */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.cd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.cd-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: fadeIn 0.6s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.08);
}

.cd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

/* Animated border on hover */
.cd-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.cd-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(33, 150, 243, 0.15),
        0 0 40px rgba(33, 150, 243, 0.2);
    border-color: var(--primary);
    background: #ffffff;
}

.cd-card:hover::before {
    opacity: 0.03;
}

.cd-card:hover::after {
    opacity: 0.3;
}

@keyframes borderPulse {
    0%, 100% {
        filter: blur(10px);
    }
    50% {
        filter: blur(15px);
    }
}

.cd-image {
    width: 100%;
    height: 260px;
    background: #fafbfc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.cd-visual {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.2);
    overflow: visible;
}

.cd-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

@keyframes spinCD {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cd-card:hover .cd-visual {
    animation: spinCD 8s linear infinite;
}

.cd-hole-outer {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--dark);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    z-index: 10;
    pointer-events: none;
}

.cd-hole-inner {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--dark-card);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 11;
    pointer-events: none;
}

.cd-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.badge-upcoming { 
    background: rgba(66, 165, 245, 0.9); 
    box-shadow: 0 5px 25px rgba(66, 165, 245, 0.4);
}
.badge-unreleased { 
    background: rgba(255, 167, 38, 0.9);
    box-shadow: 0 5px 25px rgba(255, 167, 38, 0.4);
}
.badge-released { 
    background: rgba(102, 187, 106, 0.9);
    box-shadow: 0 5px 25px rgba(102, 187, 106, 0.4);
}

.cd-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.cd-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
    text-align: center;
}

.cd-artist {
    color: #5f6368;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cd-meta {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(33, 150, 243, 0.15);
    display: none !important;
}

.meta-item {
    text-align: center;
}

.meta-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.meta-label {
    font-size: 0.85rem;
    color: #5f6368;
}

.meta-value {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* Detail Page */
.detail-container {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(33, 150, 243, 0.15);
    box-shadow: 0 10px 40px rgba(33, 150, 243, 0.1);
    max-width: 1000px;
    margin: 120px auto 4rem;
    animation: fadeInUp 0.6s ease;
    position: relative;
    z-index: 2;
}

.detail-header {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.detail-image {
    flex: 0 0 450px;
    height: 450px;
    border-radius: 30px;
    background: #fafbfc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(33, 150, 243, 0.12);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.detail-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.06) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.detail-cd {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    animation: spinCD 10s linear infinite;
    box-shadow: 0 0 40px rgba(33, 150, 243, 0.25);
    z-index: 1;
    overflow: visible;
}

.detail-cd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.detail-hole-outer {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--dark);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    z-index: 10;
    pointer-events: none;
}

.detail-hole-inner {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border-radius: 50%;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 11;
    pointer-events: none;
}

.detail-info {
    flex: 1;
}

.detail-info h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 800;
}

.detail-info h2 {
    font-size: 1.8rem;
    color: #5f6368;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.detail-meta-item {
    background: #fafbfc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(33, 150, 243, 0.15);
}

.detail-meta-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.detail-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 40px rgba(66, 165, 245, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(66, 165, 245, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    box-shadow: 0 10px 40px rgba(66, 165, 245, 0.3);
}

.back-btn {
    margin-bottom: 2rem;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: var(--dark-card);
    color: var(--light);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.back-btn:hover {
    background: var(--gradient);
    border-color: var(--primary);
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(66, 165, 245, 0.3);
}

/* Track List */
.track-section {
    margin-top: 4rem;
    background: var(--dark-lighter);
    padding: 2.5rem;
    border-radius: 20px;
}

.track-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light);
}

/* Album Description */
.album-description {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(33, 150, 243, 0.1);
    overflow: hidden;
}

.description-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(33, 150, 243, 0.2);
}

.description-title svg {
    color: #2196F3;
    flex-shrink: 0;
}

.description-content {
    color: #1a1a2e;
    line-height: 1.8;
    font-size: 1rem;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.description-content p {
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    font-weight: 700;
    word-wrap: break-word;
}

.description-content ul,
.description-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.description-content li {
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

/* Handle images in description */
.description-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Handle iframes/videos */
.description-content iframe,
.description-content video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* Handle tables */
.description-content table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.description-content table td,
.description-content table th {
    padding: 0.75rem;
    border: 1px solid rgba(33, 150, 243, 0.2);
    word-wrap: break-word;
}

/* Handle code blocks */
.description-content pre {
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
}

.description-content code {
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Handle blockquotes */
.description-content blockquote {
    border-left: 4px solid #2196F3;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #5f6368;
    font-style: italic;
}

/* Handle links */
.description-content a {
    color: #2196F3;
    text-decoration: none;
    word-wrap: break-word;
    transition: color 0.3s;
}

.description-content a:hover {
    color: #1976D2;
    text-decoration: underline;
}

/* Tracks List */
.tracks-list {
    margin-top: 2rem;
}

.tracks-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.tracks-title svg {
    color: #667eea;
    flex-shrink: 0;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: var(--dark-card);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.track-item:hover {
    background: var(--dark-lighter);
    border-color: var(--primary);
    transform: translateX(10px);
}

.track-number {
    width: 50px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.track-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-title {
    font-weight: 500;
    color: var(--light);
}

.track-duration {
    color: #5f6368;
}

/* Blog Page */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-content {
    background: #ffffff;
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(33, 150, 243, 0.15);
    box-shadow: 0 10px 40px rgba(33, 150, 243, 0.1);
    line-height: 2;
}

.blog-content h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.blog-content p {
    margin-bottom: 1.8rem;
    color: #5f6368;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #ffffff;
    color: #1a1a2e;
    padding: 5rem 2rem 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(33, 150, 243, 0.15);
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
}

.footer-section p,
.footer-section a {
    color: #5f6368;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(33, 150, 243, 0.15);
    color: #5f6368;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fafbfc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(33, 150, 243, 0.2);
    font-weight: 700;
    color: #5f6368;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.25);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .nav-links { display: none; }
    .detail-header { flex-direction: column; }
    .detail-image { flex: 1; height: 350px; }
    .cd-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .detail-meta { grid-template-columns: 1fr; }
    
    /* Album description responsive */
    .album-description {
        padding: 1.5rem;
    }
    
    .description-title {
        font-size: 1.1rem;
    }
    
    .description-content {
        font-size: 0.95rem;
    }
    
    .description-content img {
        margin: 1rem auto;
    }
    
    .description-content table {
        font-size: 0.85rem;
    }
    
    .track-section {
        padding: 1.5rem;
    }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, var(--primary), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 1.5s ease-out forwards;
    z-index: 100;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem auto;
    padding: 1.5rem 0;
    max-width: fit-content;
}

.pagination nav,
.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.pagination .flex,
.pagination-nav .flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination a,
.pagination span,
.pagination-link,
.pagination-current,
.pagination-dots,
.pagination-prev,
.pagination-next,
.pagination-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

/* Regular pagination links */
.pagination a,
.pagination-link {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    border: 2px solid rgba(33, 150, 243, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination a:hover,
.pagination-link:hover {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.pagination a:active,
.pagination-link:active {
    transform: translateY(0);
}

/* Current page (active) */
.pagination span[aria-current="page"],
.pagination-current {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
    cursor: default;
    font-weight: 700;
}

/* Disabled state (dots ...) */
.pagination span[aria-disabled="true"],
.pagination-dots {
    background: transparent;
    color: #999;
    border: none;
    cursor: default;
    box-shadow: none;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Previous/Next buttons */
.pagination a[rel="prev"],
.pagination a[rel="next"],
.pagination-prev,
.pagination-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    min-width: auto;
}

.pagination a[rel="prev"]:hover,
.pagination a[rel="next"]:hover,
.pagination-prev:hover,
.pagination-next:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Disabled Previous/Next */
.pagination span[aria-disabled="true"][aria-label*="Previous"],
.pagination span[aria-disabled="true"][aria-label*="Next"],
.pagination-disabled {
    background: rgba(200, 200, 200, 0.3);
    color: #999;
    border: 2px solid rgba(200, 200, 200, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

/* Glow effect on hover */
.pagination a::before,
.pagination-link::before,
.pagination-prev::before,
.pagination-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.pagination a:hover::before,
.pagination-link:hover::before,
.pagination-prev:hover::before,
.pagination-next:hover::before {
    left: 100%;
}

.pagination-text {
    position: relative;
    z-index: 1;
}

.pagination a svg,
.pagination-link svg,
.pagination-prev svg,
.pagination-next svg,
.pagination-disabled svg {
    position: relative;
    z-index: 1;
}

/* Result count text styling */
.pagination-info {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 640px) {
    .pagination {
        gap: 0.25rem;
        padding: 1rem 0;
    }
    
    .pagination a,
    .pagination span,
    .pagination-link,
    .pagination-current,
    .pagination-prev,
    .pagination-next,
    .pagination-disabled {
        min-width: 38px;
        height: 38px;
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .pagination a[rel="prev"],
    .pagination a[rel="next"],
    .pagination-prev,
    .pagination-next {
        padding: 0.4rem 1rem;
    }
    
    /* Hide text on mobile, show only icons */
    .pagination-text {
        display: none;
    }
    
    /* Hide some page numbers on mobile */
    .pagination .hidden {
        display: none;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination,
.pagination-wrapper {
    animation: fadeInUp 0.5s ease-out;
}
