/* ============================================================================
   BLOG CONSOLIDATED STYLES
   ============================================================================ */

/* Minimal Loading Animation */
.blog-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.blog-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 5px dotted #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

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

/* Page content starts hidden - only for main blog page */
body.blog-page {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

body.blog-page.loaded {
    opacity: 1;
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global override for visited link styling - ensures all visited links look exactly like unvisited links */
a:visited {
    color: inherit;
    text-decoration: inherit;
}

/* Exception: Buttons and tags should use their explicitly defined colors, not inherit */
.btn:visited,
.btn-primary:visited,
.btn-login:visited {
    color: var(--bg-dark);
}

.btn-login:visited,
.btn-login:visited span {
    color: var(--primary-color);
}

/* Tags always use accent color */
.tag:visited,
.sidebar-tag:visited {
    color: var(--primary-color);
}

/* Final section links always use gray text */
.quick-link:visited,
.menu-link:visited {
    color: var(--text-gray);
}

/* Footer links always use gray text */
.footer-email:visited,
.footer-link:visited {
    color: var(--text-gray);
}

/* Artist carousel links always use black text */
.artist-name:visited {
    color: #000000;
}

:root {
    --primary-color: #C0FF00;
    --bg-dark: #000000;
    --bg-dark-card: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --border-gray: #1a1a1a;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Link styling */
a {
    color: var(--text-light, #ffffff);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Remove all visited decorations sitewide - REMOVED CONFLICTING RULE */

/* Ensure social sharing buttons never show visited styling */
.social-btn:visited,
.social-btn:visited svg,
.social-btn:visited path {
    color: inherit !important;
    fill: inherit !important;
    text-decoration: none !important;
}

/* Read time styling */
.item-read-time,
.card-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.item-read-time svg,
.card-read-time svg {
    width: 12px;
    height: 12px;
    color: var(--text-gray);
}

/* Link hover effects */
a:hover {
    color: var(--primary-color);
}

a.tag:hover,
a.tag:hover svg {
    color: #000000;
    background: var(--primary-color);
}

a.tag:hover,
a.tag:hover svg {
    color: #000000;
    background: var(--primary-color);
}

/* Blog page specific link hovers */
.blog-page a:hover {
    color: var(--primary-color);
}

/* Article title hovers (excluding carousel and large video) */
.card-title:hover,
.mag-title:hover,
.sidebar-title:hover,
.popular-title:hover {
    color: var(--primary-color);
}

/* Post content links */
.post-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--text-light);
    text-decoration: none;
}

/* Fullscreen login page body override */
html, body.login-page {
    height: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.login-page {
    position: relative !important;
    overflow-x: hidden !important;
}

/* Back to Home Navigation */
.back-to-home-nav {
    position: fixed !important;
    top: 30px !important;
    left: 30px !important;
    z-index: 10000 !important;
    animation: fadeIn 0.6s ease-out;
}

.back-link-nav {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--text-gray) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
}

.back-link-nav:hover {
    color: var(--primary-color) !important;
    gap: 12px !important;
}

.back-link-nav svg {
    transition: transform 0.3s ease !important;
}

.back-link-nav:hover svg {
    transform: translateX(-4px) !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 40px;
    background-color: transparent !important;
    background: none !important;
    backdrop-filter: none;
    z-index: 1002;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: navbarFadeIn 0.4s ease-out;
}

@keyframes navbarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 28px;
    width: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 30px;
    height: 24px;
}

.hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.hamburger.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    padding: 8px;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1003;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.15s ease;
    border: none;
    text-align: left;
    width: 100%;
    position: relative;
}

.nav-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-light);
    opacity: 0.9;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
    color: var(--primary-color);
    opacity: 1;
}

.nav-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.nav-dropdown-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
}

.nav-dropdown-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.4;
}

.nav-dropdown-item:hover .nav-dropdown-title {
    color: var(--primary-color);
}

.nav-dropdown-item:hover .nav-dropdown-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

.nav-link-dropdown {
    cursor: pointer;
    position: relative;
}

/* Hide mobile-only elements on desktop */
.btn-mobile-cta,
.nav-link-contact {
    display: none !important;
}

/* Show them only on mobile */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    .btn-mobile-cta {
        display: flex !important;
    }
    
    .nav-link-contact {
        display: block !important;
    }
}

/* Desktop: Member Login should be styled as a nav link, not button */
@media (min-width: 769px) {
    .nav-link {
        color: var(--text-light);
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease !important;
    }
    
    .nav-link:hover {
        color: var(--primary-color) !important;
    }
}

.nav-link-login {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    flex: 1;
    padding: 140px 0 80px;
    margin-top: -100px;
    padding-top: 240px;
    display: flex;
    align-items: center;
    overflow-x: visible;
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.7) 70%, var(--bg-dark) 100%);
    pointer-events: none;
    z-index: 999;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.hero-text {
    flex: 1;
    min-width: 0;
    overflow: visible;
    position: relative;
    z-index: 5;
}

/* Large desktop only: positioning adjustments */
@media (min-width: 1025px) {
    .hero-text {
        margin-top: -60px;
        max-width: 62%;
        margin-right: -420px;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    white-space: normal;
}

.accent-dot {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 405px;
    height: 80px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
    transition: opacity 0.6s, transform 0.6s, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(192, 255, 0, 0.3);
    animation-play-state: paused;
}

.btn-login {
    background-color: #0D0D0D;
    color: var(--primary-color);
    border: none;
    width: auto;
    height: auto;
    padding: 12px 24px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: left 0.4s ease;
    z-index: 1;
}

.btn-login:hover::before {
    left: 0;
}

.btn-login span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-login:hover span {
    color: var(--bg-dark);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 40px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -8px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.stars {
    display: flex;
    align-items: baseline;
    gap: 0px;
}

.star {
    color: var(--primary-color);
    font-size: 20px;
}

.star-half-wrapper {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.star-empty {
    filter: brightness(0.3);
    opacity: 0.5;
}

.star-half {
    position: absolute;
    left: 0;
    top: 0;
    clip-path: inset(0 50% 0 0);
}

.rating-text {
    font-size: 18px;
    color: var(--text-gray);
    text-align: left;
}

.rating-text strong {
    color: white !important;
    font-weight: 700;
}

.hero .rating-text strong {
    color: white !important;
}

.rating-badge .rating-text strong {
    color: white !important;
}

p.rating-text strong {
    color: white !important;
}

.hero-text {
    position: relative;
    z-index: 1001;
}

.rating-text {
    position: relative;
    z-index: 1002;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 50px;
}

.phone-mockup {
    max-width: 550px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Press Examples Section */
.press-examples {
    padding: 0 0 60px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-left: 0;
    z-index: 10;
    background: linear-gradient(to bottom, transparent 0%, transparent 50px, var(--bg-dark) 200px);
    margin-top: -100px;
}

.press-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.press-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-300px * 10));
    }
}

.press-card {
    flex-shrink: 0;
    width: 280px;
    height: 525px;
    background-color: var(--bg-dark-card);
    border-radius: 30px;
    overflow: hidden;
    border: 5px solid #313131;
}

@media (hover: hover) and (pointer: fine) {
    .press-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: 0 10px 30px rgba(192, 255, 0, 0.2);
        transition: all 0.3s ease;
    }
}

.press-article-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.press-header {
    padding: 15px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    background-color: var(--bg-dark);
}

.press-header.highlighted {
    color: var(--primary-color);
}

.press-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.press-content {
    padding: 20px;
}

.press-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-light);
}

.social-shares {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background-color: #0a66c2;
    color: white;
}

.share-btn.pinterest {
    background-color: #e60023;
    color: white;
}

.share-btn.email {
    background-color: #666;
    color: white;
}

/* Featured In Section */
.featured-in {
    padding: 0 20px 80px 20px;
    text-align: center;
}

.featured-label {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.publication-logos,
.publication-logos-row2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.publication-logos-row2 {
    margin-bottom: 0;
}

@media (min-width: 1401px) {
    .publication-logos {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1400px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 40px;
    }
    
    .logo-item img {
        width: 14vw;
        max-width: 350px;
    }
}

@media (max-width: 1200px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 30px;
    }
    
    .logo-item img {
        width: 10vw;
        max-width: 200px;
        height: 40px;
    }
}

@media (max-width: 1000px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 15px;
    }
    
    .logo-item img {
        width: 7vw;
        max-width: 150px;
        height: 32px;
    }
}

@media (max-width: 900px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 12px;
    }
    
    .logo-item img {
        width: 6vw;
        max-width: 130px;
        height: 30px;
    }
}

@media (max-width: 800px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 10px;
    }
    
    .logo-item img {
        width: 5vw;
        max-width: 120px;
        height: 28px;
    }
}

@media (max-width: 700px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 8px;
    }
    
    .logo-item img {
        width: 4vw;
        max-width: 100px;
        height: 25px;
    }
}

@media (max-width: 600px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 6px;
    }
    
    .logo-item img {
        width: 3vw;
        max-width: 80px;
        height: 22px;
    }
}

.logo-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    width: 15vw;
    height: auto;
    max-width: 400px;
    max-height: 60px;
    min-width: 180px;
    display: block;
    transition: all 0.3s ease;
    filter: grayscale(0) brightness(1);
}

.logo-item:hover {
    opacity: 1;
}

.logo-item:hover img {
    filter: grayscale(0) brightness(2);
}

/* How It Works Section */
.how-it-works {
    padding: 0 0 80px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-dark-card);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-connector {
    position: absolute;
    top: 58px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    z-index: -1;
}

.step:last-child .step-connector {
    display: none;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 0 0 80px 0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 60px auto;
    max-width: 900px;
    width: 100%;
    gap: 40px;
}

.testimonial-header-left {
    flex: 1;
    max-width: 560px;
}

.testimonial-description {
    font-size: 18px;
    color: #a0a0a0;
    margin: 20px 0 30px 0;
    line-height: 1.6;
}

.leave-review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.leave-review-link:hover {
    color: var(--primary-color);
}

.review-icon {
    width: 16px;
    height: 16px;
}

.testimonial-header .section-title {
    margin-bottom: 0;
    text-align: left;
    font-size: 30px;
}

.rating-large {
    text-align: right;
    background-color: var(--bg-dark-card);
    padding: 20px;
    border-radius: 12px;
    min-width: 200px;
    margin-top: -30px;
}

.stars-large {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    margin-bottom: 0px;
}

.stars-large .star {
    opacity: 0;
    animation: starFadeIn 0.6s ease-out forwards;
}

.stars-large .star:nth-child(1) { animation-delay: 0.1s; }
.stars-large .star:nth-child(2) { animation-delay: 0.2s; }
.stars-large .star:nth-child(3) { animation-delay: 0.3s; }
.stars-large .star:nth-child(4) { animation-delay: 0.4s; }
.stars-large .star:nth-child(5) { animation-delay: 0.5s; }

@keyframes starFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.star-half-wrapper-large {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.star-empty-large {
    filter: brightness(0.3);
    opacity: 0.5;
}

.star-half-large {
    position: absolute;
    left: 0;
    top: 0;
    clip-path: inset(0 10% 0 0);
}

.rating-number {
    font-size: 36px;
    font-weight: 700;
    margin-left: 10px;
    color: var(--text-light);
}

.rating-subtext {
    font-size: 15px;
    color: var(--text-gray);
}

.testimonial-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.testimonial-subtitle svg {
    width: 20px;
    height: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: var(--bg-dark-card);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header-card {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.verified-badge {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    vertical-align: middle;
}

.testimonial-stars {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.testimonial-stars .star {
    font-size: 15px;
}

.star-half-wrapper-testimonial {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.star-empty-testimonial {
    filter: brightness(0.3);
    opacity: 0.5;
}

.star-half-testimonial {
    position: absolute;
    left: 0;
    top: 0;
    clip-path: inset(0 50% 0 0);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 0 0 80px 0;
}

.faq-label {
    text-align: center;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq .section-title {
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    padding: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 25px 0;
    opacity: 1;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 0 0 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-gray);
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    opacity: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    margin: 0 auto;
}

.footer-email {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    white-space: normal;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Coming Soon Section */
.coming-soon-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.coming-soon-title {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeIn 0.6s ease-out;
}

.coming-soon-subtitle {
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 48px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.coming-soon-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-gray);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--text-gray);
    transition: width 0.3s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary svg,
.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    border-color: var(--text-gray);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* ============================================================================
   BLOG LAYOUT STYLES
   ============================================================================ */

/* Header Background */
.header-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: var(--bg-dark);
    z-index: 999;
    border-bottom: 1px solid var(--border-gray);
}

/* Featured Carousel */
.featured-carousel {
    height: 530px;
    background: var(--bg-dark);
    margin-top: 88px;
    animation: fadeIn 0.6s ease-out;
    padding-bottom: 80px;
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-item {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.carousel-item:hover {
    transition: transform 0.3s ease;
}

.carousel-item:hover .item-image img {
    transform: scale(1.1);
        transition: transform 0.3s ease;
}

.carousel-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.carousel-link:hover {
        text-decoration: none;
    color: inherit;
    }

.item-image {
        width: 100%;
    height: 100%;
    position: relative;
    }

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.item-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}

.item-badge {
    display: inline-block;
    background: rgba(192, 255, 0, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border-radius: 8px;
}

.item-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.item-meta {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Three Column Section */
.three-column-section {
    background: var(--bg-dark);
    padding: 30px 0;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.three-column-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.three-column-section .section-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
}

.three-column-section .section-heading::before {
    content: 'TRENDING';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
    letter-spacing: 2px;
    white-space: nowrap;
    pointer-events: none;
}

.three-column-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
        width: 100%;
    height: 1px;
    background: var(--border-gray);
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.card-post {
    background: transparent;
    transition: transform 0.3s ease;
}

.card-post:hover {
    /* Hover effect handled by image zoom */
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.card-link:hover .card-image img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.card-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 10px;
}

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

.card-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
}

.card-badge {
    display: inline-block;
    background: rgba(192, 255, 0, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    border-radius: 100px;
}

.card-content {
    padding: 20px 0;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: var(--text-light);
}

.card-meta {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}

/* Four Column Section */
.four-column-section {
    background: var(--bg-dark);
    padding: 80px 0;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.four-column-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.four-column-section .section-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
}

.four-column-section .section-heading::before {
    content: 'MARKETING';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
    letter-spacing: 2px;
    white-space: nowrap;
    pointer-events: none;
}

.four-column-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
        width: 100%;
    height: 1px;
    background: var(--border-gray);
}

.four-column-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.four-column-section .card-image {
    height: 270px;
    border-radius: 10px;
}

/* Music Videos Section */
.music-videos-section {
    background: var(--bg-dark);
    padding: 0px 0 60px 0;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.music-videos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
        display: flex;
    justify-content: space-between;
        align-items: center;
    margin-bottom: 40px;
}

.music-videos-section .section-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 1px;
    position: relative;
}

.music-videos-section .section-heading::before {
    content: 'VIDEOS';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
    letter-spacing: 2px;
    white-space: nowrap;
    pointer-events: none;
}

.all-videos-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.all-videos-link:hover {
    color: var(--primary-color);
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.featured-video {
    grid-row: span 2;
}

.featured-video .video-thumbnail {
    position: relative;
    width: 100%;
    height: 497px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.video-item .video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 10px;
}

.video-thumbnail .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
}

.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 20px;
    z-index: 2;
}

.video-overlay .video-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.video-link:hover {
    text-decoration: none;
    color: inherit;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transform: scale(1.6);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.7);
}

.featured-video .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transform: scale(1.6);
    transition: transform 0.3s ease;
}

.featured-video .video-thumbnail:hover img {
    transform: scale(1.7);
}

.video-item .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transform: scale(1.6);
    transition: transform 0.3s ease;
}

.video-item .video-thumbnail:hover img {
    transform: scale(1.7);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.music-videos-section .video-thumbnail:hover img {
    transform: scale(1.7);
}

.music-videos-section .featured-video .video-thumbnail:hover img {
    transform: scale(1.7);
}

.music-videos-section .video-item .video-thumbnail:hover img {
    transform: scale(1.7);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item .play-button {
    width: 40px;
    height: 40px;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
}

.video-heart {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-heart:hover {
    color: #ff4757;
}

.video-content {
    padding: 0;
}

.video-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-item .video-title {
    font-size: 16px;
}

.featured-video .video-title {
    font-size: 24px;
    line-height: 1.3;
}

.video-date {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}

/* Artist Carousel Section */
.artist-carousel-section {
    background: var(--primary-color);
    padding: 20px 0;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.artist-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.artist-carousel-track {
    display: flex;
    animation: scrollArtists 12s linear infinite;
    gap: 40px;
}

.artist-name {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
    font-style: italic;
    transition: color 0.3s ease;
}

.artist-name:hover,
.blog-page .artist-name:hover,
.artist-carousel-section .artist-name:hover {
    color: #000000 !important;
    opacity: 0.3;
    text-decoration: none;
}

@keyframes scrollArtists {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly one full set (7 items out of 21 total = 33.33%) */
        /* This ensures seamless infinite loop - when it resets to 0%, */
        /* the position is visually identical because items are duplicated */
        transform: translateX(-33.333%);
    }
}

.artist-carousel:hover .artist-carousel-track {
    animation-play-state: paused;
}

/* Final Section */
.final-section {
    background: var(--bg-dark);
    padding: 80px 0 60px 0;
    border-top: 1px solid var(--border-gray);
}

.final-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-column {
    gap: 0;
}

.final-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
        margin-bottom: 20px;
    }
    
.final-address h4 {
    color: var(--text-light);
        font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.final-address p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.popular-posts {
    margin-top: 10px;
}

.popular-post {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.popular-post:hover {
    text-decoration: none;
    color: inherit;
}

.popular-post:hover .popular-thumbnail img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.popular-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.popular-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-content {
    flex: 1;
}

.popular-title {
        font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.popular-date {
    font-size: 12px;
    color: var(--text-gray);
    margin: 4px 0 0 0;
}

.quick-links {
    margin-top: 10px;
}

.quick-link {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    text-decoration: none;
        margin-bottom: 8px;
    transition: color 0.3s ease;
}

.quick-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.final-section a:hover,
.final-section a:hover .popular-title {
    color: var(--primary-color);
}

/* Final section links visited hover - accent color */
.final-section a:visited:hover,
.final-section a:visited:hover .popular-title {
    color: var(--primary-color) !important;
}

.tags-container {
    margin-top: 0px;
}

.tags-section .final-heading {
    padding-top: 20px;
}

@media (max-width: 768px) {
    .tags-section .final-heading {
        padding-top: 20px;
    }
}

.tag {
    display: inline-block;
    background: rgba(192, 255, 0, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 6px 8px 0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color) !important;
    color: #000000 !important;
    text-decoration: none;
}

.custom-menu {
    margin-top: 10px;
}

.menu-link {
    display: block;
        font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    text-decoration: none;
        margin-bottom: 8px;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* ============================================================================
   BLOG POST STYLES
   ============================================================================ */

/* Visually Hidden - Hidden visually but accessible to search engines */
.visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Login button hover when visited - text should be black */
.btn-login:visited:hover span {
    color: var(--bg-dark) !important;
}

/* Breadcrumb Navigation - Hidden visually but accessible to search engines */
.breadcrumb {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.breadcrumb-link,
.breadcrumb-separator,
.breadcrumb-current {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Blog Post Main */
.blog-post-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    background: var(--bg-dark);
    min-height: 100vh;
    animation: fadeIn 0.6s ease-out;
}

.blog-post {
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}

.post-header {
    margin-bottom: 30px;
    padding: 0 0 0px 0;
}

.post-category {
    display: inline-block;
    background: rgba(192, 255, 0, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
        margin-bottom: 16px;
    border-radius: 100px;
}

.post-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
        font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-author-label {
    color: var(--text-gray, #999999);
}

.post-author-name {
    font-weight: 600;
    color: var(--text-light);
}

.post-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
        font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.post-read-time svg {
    width: 12px;
    height: 12px;
    color: var(--text-gray);
}

/* Author Bio Section */
.author-bio {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio-content {
    flex: 1;
}

.author-bio-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.verified-badge {
    width: 18px;
    height: 18px;
    margin-left: 6px;
    vertical-align: middle;
}

.verified-badge-top {
    width: 16px;
    height: 16px;
    margin-left: 0px;
    vertical-align: middle;
}

/* Category Page Styles */
.category-header {
    padding: 150px 0 0px 0;
    background: var(--bg-dark);
    /* border-bottom: 1px solid var(--border-gray); */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

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

.breadcrumb a:hover {
    color: var(--text-light);
}

.breadcrumb-separator {
    color: var(--text-gray);
}

.current-category {
    color: var(--text-light);
    font-weight: 500;
}

.category-header .section-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
}

.category-header .section-heading::before {
    content: attr(data-bg-text);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
    letter-spacing: 2px;
    white-space: nowrap;
    pointer-events: none;
}

.category-header .section-heading::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-gray);
}

.category-description {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0 0 24px 0;
    line-height: 1.6;
    max-width: 600px;
}


.category-posts {
    padding: 0 0 80px 0;
    margin-top: -53px;
}

/* Category page now uses related-posts-grid and card styles */

.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts h2 {
    font-size: 32px;
    color: var(--text-light);
    margin: 0 0 16px 0;
}

.no-posts p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 0 24px 0;
}

.no-posts a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.no-posts a:hover {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-header .section-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .category-description {
        font-size: 16px;
    }
}

.author-bio-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.post-featured-image .placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 16px;
}

.post-featured-image .placeholder-image::before {
    content: '';
    font-size: 48px;
    opacity: 0.5;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
        margin-bottom: 40px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.post-content p {
    margin-bottom: 20px;
    color: #d0d0d0;
}

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

.post-content img:first-child {
    margin-top: 0;
}

.post-content img:last-child {
    margin-bottom: 0;
}

.post-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.post-content h2 {
        font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    margin: 35px 0 16px 0;
    line-height: 1.4;
}

.post-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin: 30px 0 14px 0;
    line-height: 1.4;
}

.post-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin: 25px 0 12px 0;
    line-height: 1.4;
}

.post-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin: 20px 0 10px 0;
    line-height: 1.4;
}

.post-content h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin: 18px 0 8px 0;
    line-height: 1.4;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-gray);
}

.post-content code {
    background: var(--bg-dark-card);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    color: var(--primary-color);
}

.post-content pre {
    background: var(--bg-dark-card);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: var(--text-light);
}

.post-footer {
    border-top: 1px solid var(--border-gray);
    padding: 30px 0;
    margin-top: 40px;
}

.post-share {
    text-align: center;
}

.post-share h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Share Row */
.social-share-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #C0FF00, transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    background: #C0FF00;
    color: #000000;
    border-color: #C0FF00;
    transform: none;
    box-shadow: none;
}

/* Related Posts - Using Three Column Section Styles */
.related-posts {
    background: var(--bg-dark);
    padding: 30px 0;
    margin-top: 60px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.related-posts .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.related-posts h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
}

.related-posts h2::before {
    content: 'RELATED';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
    letter-spacing: 2px;
    pointer-events: none;
}

.related-posts h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: var(--border-gray);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Related posts now use the same card styles as three-column-section */

/* ============================================================================
   SIDEBAR LAYOUT STYLES
   ============================================================================ */

.post-sidebar-main {
    background: var(--bg-dark);
    min-height: 100vh;
    padding-top: 100px;
    animation: fadeIn 0.6s ease-out;
}

.post-sidebar-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.post-content-column {
    min-width: 0;
}

.post-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.related-posts {
    margin-top: 60px;
    padding: 40px 0;
}

.related-posts .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-posts h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.popular-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.popular-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post:hover .popular-thumbnail img {
    transform: scale(1.1);
}

.popular-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.related-post {
    background: var(--bg-dark-card);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-4px);
}

.related-post-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
        font-size: 16px;
}

.related-post-image .placeholder-image::before {
    content: '';
    font-size: 48px;
    opacity: 0.5;
}

.related-post-content {
    padding: 20px;
}

.related-post-content h3 {
        font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-post-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
    color: var(--primary-color, #C0FF00);
}

.related-post-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section-header {
    margin-bottom: 20px;
}


.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.sidebar-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.sidebar-category {
    display: block;
    background: #000000;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

.sidebar-category:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-post {
    display: flex;
    gap: 12px;
    align-items: center;
    transition: transform 0.3s ease;
}

.sidebar-post:hover {
    /* Hover effect handled by image zoom */
}

.sidebar-post:hover .sidebar-post-image img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.sidebar-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-post-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 16px;
}

.sidebar-post-image .placeholder-image::before {
    content: '';
    font-size: 24px;
    opacity: 0.5;
}

.sidebar-post-content {
    flex: 1;
    min-width: 0;
}

.sidebar-post-category {
    display: inline-block;
    background: rgba(192, 255, 0, 0.1);
    color: var(--primary-color);
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    border-radius: 10px;
}

.sidebar-post-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-title a:hover {
    color: var(--primary-color, #C0FF00);
}

.sidebar-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.sidebar-post-date svg {
    width: 12px;
    height: 12px;
    color: var(--text-gray);
    flex-shrink: 0;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    background: rgba(192, 255, 0, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: var(--primary-color) !important;
    color: #000000 !important;
    text-decoration: none;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 255, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(192, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(192, 255, 0, 0);
    }
}

@keyframes shimmer-ltr {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes shimmer-rtl {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes scrollArtists {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly one full set (7 items out of 21 total = 33.33%) */
        /* This ensures seamless infinite loop - when it resets to 0%, */
        /* the position is visually identical because items are duplicated */
        transform: translateX(-33.333%);
    }
}

/* Skeleton Loading */
.skeleton {
    background-color: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0, #e0e0e0, #f0f0f0);
    background-size: 200% 100%;
    border-radius: 0.21vw;
}

.skeleton.shimmer-ltr {
    animation: shimmer-ltr 1.5s infinite;
}

.skeleton.shimmer-rtl {
    animation: shimmer-rtl 1.5s infinite;
}

/* Placeholder Image Base */
.placeholder-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 255, 0, 0.1), transparent);
    animation: shimmer 2s infinite;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* Large Tablet and Below */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
        order: -1;
    margin-top: 0;
        max-width: 100%;
        margin-right: 0;
    }

    .hero-image {
        justify-content: center;
    }

    .phone-mockup {
        max-width: 400px;
        margin-top: -50px;
        margin-right: 70px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .step-connector {
        display: none;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .rating-large {
        text-align: left;
    }

    .post-sidebar-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .post-content-column {
        order: 1;
    }

    .post-sidebar {
        position: static;
        order: 2;
    }

    .sidebar-categories {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Tablet and Mobile */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
    position: fixed;
        top: 68px;
    left: 0;
    right: 0;
        bottom: 0;
        height: calc(100vh - 68px);
        flex-direction: column;
        background-color: #000000;
        padding: 40px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 32px;
        width: 100%;
        text-align: center;
        padding: 0;
        color: #ffffff;
        text-decoration: none;
    }

    /* Anchor Member Login and Get Featured to bottom */
    .btn-login {
        margin-top: auto;
        width: 100%;
        font-size: 18px;
        padding: 20px 30px;
        justify-content: center;
    }

    .btn-mobile-cta {
    width: 100%;
        font-size: 18px;
        padding: 20px 30px;
        justify-content: center;
    }

    /* Hero Section */
    .hero-text {
        text-align: center;
        margin-top: 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-rating {
        justify-content: center;
    }

    .rating-badge {
        align-items: center;
    }

    .rating-row {
        flex-direction: column;
        gap: 15px;
    }

    .stars {
        order: -2;
    }

    .avatars {
        order: -1;
    }

    .rating-text {
        text-align: center;
        order: 1;
    }

    /* Coming Soon Section */
    .coming-soon-section {
        padding: 80px 0;
        min-height: calc(100vh - 68px - 80px);
    }

    .coming-soon-cta {
        flex-direction: column;
        align-items: center;
    }

    .coming-soon-cta .btn {
        width: 100%;
        max-width: 400px;
    }

    /* Testimonials Section */
    .testimonial-header {
        align-items: center;
        text-align: center;
    }

    .testimonial-header-left {
        max-width: 100%;
    }

    .testimonial-header .section-title {
        text-align: center;
    }

    .testimonial-description {
        text-align: center;
    }

    .leave-review-link {
        justify-content: center;
    }

    .rating-large {
        text-align: center;
        margin-top: 0;
    }

    .stars-large {
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 36px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .press-card {
        flex: 0 0 280px;
        width: 280px;
        height: 525px;
    }
    
    /* Mobile: Slightly slower animation */
    .press-carousel {
        animation: scroll 30s linear infinite;
    }

    .btn {
    width: 100%;
        max-width: 405px;
        height: 60px;
        font-size: 20px;
    }

    /* Blog Layout Mobile */
    .featured-carousel {
        height: 450px;
        margin-bottom: 60px;
    }
    
    .carousel-item {
        width: 100%;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-title {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .slide-meta {
        font-size: 14px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }

    .three-column-section {
        margin-top: -30px;
    }
    
    .three-column-section .container {
        padding: 0 20px;
    }
    
    .three-column-section .section-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .three-column-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-content {
        padding: 16px 0;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-meta {
        font-size: 11px;
    }

    .four-column-section {
        margin-top: -40px;
    }
    
    .four-column-section .container {
        padding: 0 20px;
    }
    
    .four-column-section .section-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .four-column-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-content {
        padding: 16px 0;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-meta {
        font-size: 11px;
    }

    .music-videos-section {
        margin-top: -10px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-video {
        grid-row: span 1;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .featured-video .video-thumbnail {
        height: 250px;
    }
    
    .video-item .video-thumbnail {
        height: 200px;
    }
    
    .music-videos-section .section-heading {
        font-size: 24px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    gap: 20px;
    }

    .artist-carousel-section {
        padding: 15px 0;
    }
    
    .artist-name {
        font-size: 20px;
    }

    .final-section {
        padding: 60px 0;
    }
    
    .final-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .final-heading {
    font-size: 16px;
        margin-bottom: 16px;
    }

    /* Blog Post Mobile */
    .blog-post-main {
        padding: 100px 0 40px 0;
    }
    
    .post-header {
        padding: 0 0 0px 0;
    }
    
    .post-featured-image {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
        height: 400px;
        overflow: hidden;
    }
    
    .post-featured-image img {
        border-radius: 0;
        height: 400px;
        object-fit: cover;
    }
    
    .post-featured-image .placeholder-image {
        border-radius: 0;
        height: 400px;
    }
    
    .post-title {
    font-size: 36px;
    }
    
    .post-meta {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .post-content {
        padding: 0 20px;
        font-size: 16px;
    }
    
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .author-bio-avatar {
        margin: 0 auto;
    }
    
    .author-bio-content {
        text-align: center;
    }
    
    .author-bio-name {
        justify-content: center;
    }
    
    .post-content h1 {
        font-size: 28px;
    }
    
    .post-content h2 {
        font-size: 24px;
    }
    
    .post-content h2::before {
        display: none;
    }
    
    .post-content h3 {
        font-size: 20px;
    }
    
    .post-content h4 {
        font-size: 18px;
    }
    
    .post-footer {
        padding: 20px;
    }
    
    .social-share-row {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-btn {
        flex: 1;
        min-width: 0;
        max-width: calc(25% - 6px);
    }
    
    .related-posts {
        padding: 30px 0;
    }
    
    .related-posts h2 {
        font-size: 24px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .breadcrumb {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    /* Consistent mobile padding */
    .navbar {
        padding: 20px;
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }

    .hero {
        padding: 200px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn {
    width: 100%;
        max-width: 405px;
        height: 70px;
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .step-title {
        font-size: 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .how-it-works,
    .testimonials,
    .faq,
    .final-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Publication Logos - One per row, uniform height */
    .publication-logos,
    .publication-logos-row2 {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .publication-logos-row2 {
        margin-bottom: 0;
    }

    .logo-item {
        width: 100%;
    display: flex;
    justify-content: center;
        align-items: center;
        min-height: 50px;
    }

    .logo-item img {
        width: 200px;
        height: auto;
        max-height: 40px;
        object-fit: contain;
        max-width: 100%;
    }
    
    .publication-logos,
    .publication-logos-row2 {
        overflow-x: hidden;
        flex-wrap: wrap;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    /* Blog Mobile */
    .featured-carousel {
        height: 500px;
        margin-bottom: 0px;
    }
    
    .carousel-item {
        width: 100%;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-badge {
        padding: 6px 12px;
        font-size: 10px;
        margin-bottom: 15px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }

    .post-title {
        font-size: 28px;
    }
    
    .post-content {
        font-size: 18px;
    }
    
    .post-content h2 {
        font-size: 24px;
    }
    
    .post-content h3 {
        font-size: 20px;
    }

    .post-sidebar-container {
        padding: 0 15px;
    gap: 30px;
}

    
    .sidebar-post {
        gap: 10px;
    }
    
    .sidebar-post-image {
    width: 60px;
        height: 45px;
    }
    
    .sidebar-post-title {
        font-size: 13px;
    }
}

/* Desktop only: max-width constraint */
@media (min-width: 769px) {
    .hero-content,
    .press-card,
    .step,
    .testimonial-card {
        max-width: 87vw;
    }
}

.hero-content,
.press-card,
.step,
.testimonial-card {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================================================
   VISITED LINK STYLES - HOVER STATES ONLY
   All visited links inherit their normal state colors via global rule at top
   Only hover states and special component states are explicitly defined here
   ============================================================================ */

/* Sidebar categories hover when visited */
.sidebar-category:visited:hover {
    background: var(--primary-color) !important;
    color: var(--bg-dark) !important;
}

/* Tags hover state (including visited) */
.tag:visited:hover,
.sidebar-tag:visited:hover {
    color: #000000 !important;
    background-color: #C0FF00 !important;
}

/* Ensure visited hover overrides any other tag styles */
a.tag:visited:hover,
a.sidebar-tag:visited:hover {
    color: #000000 !important;
    background-color: #C0FF00 !important;
}