@charset "UTF-8";
/*
Theme Name: Radyo 1001
Theme URI: https://radyo1001.com
Author: Radyo 1001 Team
Author URI: https://radyo1001.com
Description: Modern ve premium radyo teması
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: radyo1001
*/

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-color: #1e293b;
    --light-text: #64748b;
    --border-color: #e2e8f0;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --dark-bg: #1e293b;
    --footer-bg: #1e293b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.content-area {
    width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
    border-image-slice: 1;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    text-decoration: none;
    display: block;
}

.custom-logo-link {
    display: block;
    line-height: 1;
}

.custom-logo-link img {
    display: block;
    height: auto;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo-text {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.site-logo-text:hover {
    transform: scale(1.05);
}

.site-logo-image {
    display: block;
    transition: transform 0.3s ease;
}

.site-logo-image:hover {
    transform: scale(1.05);
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-navigation li a {
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    display: block;
}

.main-navigation li a:hover,
.main-navigation li.current-menu-item a {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.bg-wave-dark-wrap {
    background: linear-gradient(to right, #0a0f16 0%, #3a1f3a 50%, #1f081f 100%);
    position: relative;
    overflow: hidden;
}

.bg-wave-dark {
    background: linear-gradient(to right, #0a0f16 0%, #3a1f3a 50%, #1f081f 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* Hero Gradient Animation */
.bg-wave-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(58, 31, 58, 0.15) 50%, transparent 100%);
    animation: gradientWave 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.bg-wave-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 1200px 600px at 20% 50%, rgba(58, 31, 58, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 1200px 600px at 80% 50%, rgba(31, 8, 31, 0.12) 0%, transparent 70%);
    animation: gradientPulse 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientWave {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

@keyframes gradientPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.header-alani {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-row-premium {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-left-premium {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
}

.hero-right-premium {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Chat Form */
.sohbet-form-wrapper-premium {
    position: relative;
    padding-bottom: 360px;
    padding-top: 40px;
    z-index: 3;
}

.sohbet-form-premium {
        position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sohbet-form-premium h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sohbet-form-premium .input-group {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Bootstrap Input Group Overrides */
.input-group.mb-2 {
    margin-bottom: 18px !important;
}

/* Button Container */
.sohbet-form-premium .col-md-12 {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Button Overrides */
.btn-hover,
.color-1 {
    /* Handled by .sohbet-form-premium .btn */
}

.w-100 {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
}

.sohbet-form-premium .form-control {
    width: 100%;
    max-width: 340px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 15;
}

.sohbet-form-premium .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sohbet-form-premium .form-control:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 8px 30px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.01);
}

.sohbet-form-premium .btn {
    width: 100%;
    max-width: 340px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 75%, #c084fc 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 15;
    display: block;
    margin: 0 auto;
    box-shadow: 
        0 4px 15px rgba(99, 102, 241, 0.4),
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.sohbet-form-premium .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.sohbet-form-premium .btn:hover::before {
    left: 100%;
}

.sohbet-form-premium .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sohbet-form-premium .btn:active::after {
    width: 300px;
    height: 300px;
}

.sohbet-form-premium .btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.5),
        0 12px 35px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.sohbet-form-premium .btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* SVG Background */
.sohbet-bg-svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    filter: brightness(1.1) saturate(1.2) contrast(1.05);
    animation: svgGlow 4s ease-in-out infinite alternate;
}

.sohbet-bg-image {
    width: 726px;
    height: 696px;
    max-width: 650px;
    opacity: 1;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) scale(1.02);
        opacity: 1;
    }
}

@keyframes svgGlow {
    0% {
        filter: brightness(1.1) saturate(1.2) contrast(1.05) drop-shadow(0 0 20px rgba(99, 102, 241, 0.4));
    }
    100% {
        filter: brightness(1.15) saturate(1.3) contrast(1.08) drop-shadow(0 0 40px rgba(139, 92, 246, 0.6));
    }
}

/* Hero Text */
.hero-text-premium {
    color: #ffffff;
}

.hero-text-premium h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text-premium p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Title, Description, Subtitle - Additional Classes */
.hero-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-description,
.hero-subtitle {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hide SVG Waves - Use CSS Gradients Instead */
.wave-dark {
    display: none !important;
}

/* Bootstrap Class Overrides for Hero */
.section-md {
    padding: 0 !important;
}

.text-center {
    text-align: inherit !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.row {
    margin: 0 !important;
}

.col-md-6 {
    width: 100% !important;
    padding: 0 !important;
}

.wow {
    animation: none !important;
}

.fadeInRight {
    animation: none !important;
}

/* Premium App/Play Button Aliases */
.premium-app-button,
.premium-play-button,
.premium-mirc-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 5px;
}

.premium-app-button:hover,
.premium-play-button:hover,
.premium-mirc-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-button-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-button-label {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-button-name {
    font-size: 16px;
    font-weight: 700;
}

.app-button-arrow {
    margin-left: auto;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.premium-app-button:hover .app-button-arrow,
.premium-play-button:hover .app-button-arrow,
.premium-mirc-button:hover .app-button-arrow {
    transform: translateX(5px);
}

/* Hero App Buttons */
.hero-app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-button i {
    font-size: 24px;
}

.app-button span {
    font-size: 14px;
}

/* ============================================
   PLAYER SECTION
   ============================================ */
.radio-player {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.player-info {
    flex: 1;
    color: #ffffff;
}

.player-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.player-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.player-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.player-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.5);
}

.player-btn.play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-control input[type="range"] {
    width: 100px;
    cursor: pointer;
}

/* ============================================
   MODERN PLAYER SECTION (3 Column Layout)
   ============================================ */
.player-container-wrapper {
    width: 100%;
    padding: 40px 0;
}

.player-wrapper-modern {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 30px;
    align-items: start;
}

.player-side-card {
    width: 100%;
}

.player-side-left,
.player-side-right {
    position: sticky;
    top: 100px;
}

.player-main-content {
    width: 100%;
}

.modern-player-container-v2 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.1);
}

/* DJ Section in Player */
.player-dj-section {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.dj-avatar-wrapper-v2 {
    position: relative;
    flex-shrink: 0;
}

.dj-avatar-modern-v2 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 48px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dj-avatar-pulse-v2 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.dj-avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0.3;
    filter: blur(15px);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.live-indicator-v2 {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 10;
    border: 2px solid #ffffff;
}

.live-dot-v2 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.dj-info-v2 {
    flex: 1;
}

.dj-name-v2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dj-bio-v2 {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
    margin: 0 0 20px 0;
}

/* Application Cards (DJ & Admin Application) */
.application-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.application-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.application-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    margin: 0 auto 25px auto;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.application-icon-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.application-card-modern:hover .application-icon-modern::before {
    width: 100%;
    height: 100%;
}

.application-card-modern:hover .application-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.application-title-modern {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--text-color);
}

.application-description-modern {
    font-size: 14px;
    line-height: 1.7;
    color: var(--light-text);
    margin: 0 0 25px 0;
}

.application-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 28px;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.application-btn-modern i {
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.application-btn-modern span {
    position: relative;
    z-index: 1;
}

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

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

.application-btn-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.application-btn-modern:active::after {
    width: 300px;
    height: 300px;
}

.application-btn-modern:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 12px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.application-btn-modern:active {
    transform: translateY(-2px) scale(0.98);
}

.application-btn-modern:hover i {
    transform: translateX(5px) scale(1.15);
}

/* DJ Başvurusu Butonu - Yeşil/Mavi Tonları */
.dj-application-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.dj-application-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.4),
        0 12px 35px rgba(5, 150, 105, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.dj-application-card .application-icon-modern {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.dj-application-card:hover .application-icon-modern {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* Yönetici Başvurusu Butonu - Turuncu/Kırmızı Tonları */
.admin-application-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

.admin-application-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #92400e 100%);
    box-shadow: 
        0 8px 25px rgba(245, 158, 11, 0.4),
        0 12px 35px rgba(217, 119, 6, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.admin-application-card .application-icon-modern {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.admin-application-card:hover .application-icon-modern {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.application-features-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.feature-item-modern i {
    color: #10b981;
    font-size: 18px;
}

/* Modern Audio Player Controls */
.modern-audio-wrapper {
    margin-top: 30px;
}

.modern-audio-container {
    width: 100%;
}

.modern-player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.play-pause-btn-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
}

.play-pause-btn-modern:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.play-pause-btn-modern:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.player-status-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.player-status-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.status-indicator {
    font-size: 10px;
    color: #10b981;
    animation: blink 1.5s ease-in-out infinite;
}

.stream-info-modern {
    font-size: 13px;
    color: var(--light-text);
}

.volume-control-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.volume-slider-modern {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #e2e8f0 0%, #e2e8f0 100%);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.volume-slider-modern::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.volume-slider-modern::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.6);
}

.volume-slider-modern::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.volume-slider-modern::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.6);
}

.mute-btn-modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mute-btn-modern:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.1);
}

.player-no-stream {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border: 2px solid #f59e0b;
}

.player-no-stream p {
    margin: 0;
    color: #92400e;
    font-weight: 600;
}

/* Responsive for Modern Player */
@media (max-width: 1400px) {
    .player-wrapper-modern {
        grid-template-columns: 280px 1fr 280px;
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .player-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .player-side-left,
    .player-side-right {
        position: static;
    }
}

/* Small Player (for other pages) */
.radio-player-small {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.radio-player-small .player-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.radio-player-small .player-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.radio-player-small .player-info p {
    font-size: 12px;
}

.radio-player-small .player-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.radio-player-small .player-btn.play-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
}

/* ============================================
   SITE MAIN
   ============================================ */
.site-main {
    padding: 0;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section {
    padding: 80px 0;
}

.section-title-modern {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title-modern h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-modern p {
    font-size: 16px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.section-title-modern p.big {
    font-size: 18px;
    line-height: 1.6;
}

.section-title-modern::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ============================================
   WEEKLY SCHEDULE (Haftanın Programları)
   ============================================ */
.weekly-schedule-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
}

.schedule-tabs-premium {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.schedule-tab-premium {
    position: relative;
    padding: 12px 24px;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.schedule-tab-premium:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.schedule-tab-premium.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
    .schedule-tab-premium {
        padding: 10px 18px;
        font-size: 13px;
    }
}

.schedule-content-premium {
    display: none;
}

.schedule-content-premium.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.schedule-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.schedule-card-premium {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.schedule-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.3);
}

.schedule-card-premium h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.schedule-card-premium p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.schedule-time-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.schedule-time-premium i {
    font-size: 14px;
}

.no-programs-premium,
.no-programs {
    text-align: center;
    padding: 60px 20px;
    color: var(--light-text);
    font-size: 16px;
}

/* Daily Requests Sidebar (Günlük İstekler) - Bottom Section */
.daily-requests-sidebar-modern {
    width: 100%;
    max-width: 100%;
}

.daily-requests-card-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.daily-requests-card-modern:hover {
    border-color: #e0e7ff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.daily-requests-header-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.header-icon-modern {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
}

.header-content-modern h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1e293b;
    letter-spacing: -0.3px;
}

.daily-requests-date-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--light-text);
    margin: 0;
}

.daily-requests-list-modern {
    max-height: 500px;
    overflow-y: auto;
}

.no-requests {
    text-align: center;
    padding: 40px 20px;
    color: var(--light-text);
    font-size: 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
}

.request-item-modern {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.request-item-modern:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.request-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.request-user-modern {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
}

.request-time-modern {
    font-size: 12px;
    color: var(--light-text);
}

.request-song-modern {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.request-message-modern {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.5;
}

/* ============================================
   DJ LIST (En Popüler DJ'leri Keşfedin)
   ============================================ */
.dj-list-premium {
    padding: 80px 0;
    background: #ffffff;
}

/* DJ Wrapper & Grid */
.djs-wrapper {
    width: 100%;
    margin-top: 50px;
}

.djs-left {
    width: 100%;
}

.djs-grid,
.dj-grid-premium {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin-top: 0;
    width: 100%;
}

.dj-card-premium,
.dj-card-modern-premium {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(99, 102, 241, 0.08);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.dj-card-premium::before,
.dj-card-modern-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 28px;
}

.dj-card-premium:hover,
.dj-card-modern-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.dj-card-premium:hover::before,
.dj-card-modern-premium:hover::before {
    opacity: 1;
}

.dj-image-wrapper-premium {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
}

.dj-image-wrapper-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dj-card-modern-premium:hover .dj-image-wrapper-premium::after {
    opacity: 1;
}

.dj-thumbnail-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1.05);
}

.dj-card-premium:hover .dj-thumbnail-premium {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1);
}

.dj-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dj-card-premium:hover .dj-overlay-premium {
    opacity: 1;
}

.dj-content-premium {
    padding: 25px;
}

.dj-title-premium {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dj-title-premium a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.dj-title-premium a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dj-excerpt-premium {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dj-meta-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.dj-vote-count-premium {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.dj-vote-count-premium i {
    color: #f59e0b;
    font-size: 16px;
}

.dj-vote-btn-premium {
    padding: 10px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dj-vote-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.dj-vote-btn-premium:disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

.dj-vote-btn-premium:disabled:hover {
    transform: none;
}

.dj-actions-v2 {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 12px;
}

.dj-action-btn-v2 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 75%, #c084fc 100%);
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-width: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 4px 15px rgba(99, 102, 241, 0.4),
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.dj-action-btn-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.dj-action-btn-v2:hover::before {
    left: 100%;
}

.dj-action-btn-v2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.dj-action-btn-v2:active::after {
    width: 300px;
    height: 300px;
}

.dj-action-btn-v2 span {
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.dj-action-btn-v2:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.5),
        0 12px 35px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 75%, #a855f7 100%);
}

.dj-action-btn-v2:active {
    transform: translateY(-2px) scale(0.98);
}

.dj-action-btn-v2 i {
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.dj-action-btn-v2:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* DJ Social Media Icons */
.dj-social-premium {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
}

.dj-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.dj-social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.dj-social-twitter {
    background: #1da1f2;
    color: #ffffff;
}

.dj-social-facebook {
    background: #1877f2;
    color: #ffffff;
}

.dj-social-skype {
    background: #00aff0;
    color: #ffffff;
}

.dj-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* DJ No Image Placeholder */
.dj-no-image-premium {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.dj-placeholder-content {
    text-align: center;
    color: #94a3b8;
}

.dj-placeholder-icon {
    font-size: 64px;
    margin-bottom: 10px;
}

.dj-placeholder-text {
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   DJ CARD MODERN PREMIUM (En Popüler DJ'leri Keşfedin)
   ============================================ */
.dj-card-image-premium {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.dj-card-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.dj-avatar-card-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.dj-card-modern-premium:hover .dj-avatar-card-premium {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.15) saturate(1.3);
}

.dj-card-no-image-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #cbd5e1;
    font-size: 80px;
    transition: all 0.4s ease;
}

.dj-card-modern-premium:hover .dj-card-no-image-premium {
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.dj-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(99, 102, 241, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dj-card-modern-premium:hover .dj-card-overlay {
    opacity: 1;
}

.dj-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.dj-card-content-premium {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.dj-card-name-premium {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 0;
    line-height: 1.3;
}

.dj-card-name-premium a {
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 2px;
}

.dj-card-name-premium a:hover {
    color: #6366f1;
    background-size: 100% 2px;
}

.dj-card-name-premium a:hover:after {
    background-size: 100% 2px;
    color: var(--primary-color);
}

.dj-card-fullname {
    font-size: 13px;
    color: #94a3b8;
    margin: -8px 0 0 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.dj-card-bio-premium {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.dj-vote-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    border-top: 2px solid rgba(99, 102, 241, 0.1);
    margin-top: auto;
    flex-wrap: wrap;
}

.dj-vote-count {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50px;
    border: 2px solid rgba(99, 102, 241, 0.15);
}

.vote-icon {
    font-size: 22px;
    animation: voteIconPulse 2s ease-in-out infinite;
}

@keyframes voteIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.vote-number {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.vote-text {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.dj-vote-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.dj-vote-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.dj-vote-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dj-vote-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 32px rgba(99, 102, 241, 0.6);
}

.dj-vote-btn:hover::before {
    width: 300px;
    height: 300px;
}

.dj-vote-btn:hover::after {
    opacity: 1;
}

.dj-vote-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.dj-vote-btn.voted {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    cursor: not-allowed;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.dj-vote-btn.voted:hover {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.dj-card-contact-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px solid rgba(99, 102, 241, 0.1);
    margin-top: auto;
    flex-wrap: wrap;
}

.dj-card-link-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    margin-top: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    width: 100%;
}

.dj-card-link-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.dj-card-link-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dj-card-link-premium:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.dj-card-link-premium:hover::before {
    width: 300px;
    height: 300px;
}

.dj-card-link-premium:hover::after {
    opacity: 1;
}

.dj-card-link-arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.dj-card-link-premium:hover .dj-card-link-arrow {
    transform: translateX(4px);
}

.dj-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    text-decoration: none;
    position: relative;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dj-contact-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.dj-contact-icon:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-5px) scale(1.12) rotate(-5deg);
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.5);
}

.dj-contact-icon:hover::before {
    opacity: 0.7;
}
}

.dj-vote-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.dj-vote-btn:disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

.vote-btn-icon {
    font-size: 16px;
}

.vote-btn-text {
    font-size: 13px;
}

/* Responsive for DJ Cards */
@media (max-width: 768px) {
    .djs-grid,
    .dj-grid-premium {
        grid-template-columns: 1fr !important;
    }
    
    .dj-card-image-premium {
        height: 240px;
    }
    
    .dj-vote-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dj-vote-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   TOP VOTED DJs (En Çok Oy Alan DJ'ler) - PREMIUM V2
   ============================================ */
.top-djs-section-premium-v2 {
    padding: 70px 0;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 50%, #fafbff 100%);
    position: relative;
    overflow: hidden;
}

.top-djs-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.decoration-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatCircle 20s ease-in-out infinite;
}

.decoration-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: floatCircle 25s ease-in-out infinite reverse;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Header Premium V2 */
.top-djs-header-premium-v2 {
    text-align: center;
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.top-djs-label-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    position: relative;
}

.top-djs-label-premium::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50px;
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
    animation: labelGlow 3s ease-in-out infinite;
}

@keyframes labelGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.label-icon {
    font-size: 16px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.label-text {
    letter-spacing: 2px;
}

.top-djs-title-premium-v2 {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 14px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.top-djs-desc-premium-v2 {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.top-djs-section-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.top-djs-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.top-dj-card-premium {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.top-dj-card-premium::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #ec4899 60%, #f59e0b 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.top-dj-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 24px;
}

.top-dj-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 32px 64px rgba(99, 102, 241, 0.25);
}

.top-dj-card-premium:hover::before {
    opacity: 1;
}

.top-dj-card-premium:hover::after {
    opacity: 1;
}

.top-dj-image-wrapper-premium {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
}

.top-dj-image-wrapper-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.top-dj-card-premium:hover .top-dj-image-wrapper-premium::after {
    opacity: 1;
}

.top-dj-image-link-premium {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.top-dj-thumbnail-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(1) contrast(1.05) saturate(1);
}

.top-dj-card-premium:hover .top-dj-thumbnail-premium {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

.top-dj-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(99, 102, 241, 0.1) 0%, 
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.top-dj-card-premium:hover .top-dj-image-overlay {
    opacity: 1;
}

.top-dj-image-link-premium::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #ffffff;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.top-dj-card-premium:hover .top-dj-image-link-premium::before {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.2);
}

.top-dj-no-image-premium {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    transition: all 0.4s ease;
}

.top-dj-card-premium:hover .top-dj-no-image-premium {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.top-dj-placeholder-content {
    text-align: center;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.top-dj-card-premium:hover .top-dj-placeholder-content {
    color: #6366f1;
}

.top-dj-placeholder-icon {
    font-size: 56px;
    margin-bottom: 10px;
}

.top-dj-placeholder-text {
    font-size: 14px;
    font-weight: 600;
}

.top-dj-rank-badge-premium {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ea580c 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid #ffffff;
    box-shadow: 0 8px 28px rgba(251, 191, 36, 0.6);
    position: relative;
}

.top-dj-rank-badge-premium::before {
    content: '★';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
    color: #fbbf24;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.top-dj-rank-badge-premium::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ea580c);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(12px);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.top-dj-card-premium:hover .top-dj-rank-badge-premium {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.8);
}

.top-dj-votes-badge-premium {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 255, 0.95) 100%);
    backdrop-filter: blur(16px);
    padding: 10px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.top-dj-votes-badge-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-dj-card-premium:hover .top-dj-votes-badge-premium {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
    border-color: rgba(99, 102, 241, 0.4);
}

.top-dj-card-premium:hover .top-dj-votes-badge-premium::before {
    opacity: 1;
}

.top-dj-votes-badge-premium .votes-icon {
    font-size: 18px;
    animation: thumbPulse 2s ease-in-out infinite;
}

@keyframes thumbPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.top-dj-votes-badge-premium .votes-count {
    font-weight: 900;
    font-size: 17px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
}

.top-dj-content-premium {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.top-dj-content-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 0 0 4px 4px;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.top-dj-card-premium:hover .top-dj-content-premium::before {
    transform: scaleX(1);
}

.top-dj-title-premium {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.top-dj-title-premium a {
    color: #1e293b;
    text-decoration: none;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 0% 3px;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 3px;
    position: relative;
}

.top-dj-title-premium a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 3px;
}

.top-dj-excerpt-premium {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.top-dj-actions-premium {
    margin-bottom: 0;
}

.top-dj-view-btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    width: 100%;
}

.top-dj-view-btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.top-dj-view-btn-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-dj-view-btn-premium:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.top-dj-view-btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.top-dj-view-btn-premium:hover::after {
    opacity: 1;
}

.top-dj-view-btn-premium i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.top-dj-view-btn-premium:hover i {
    transform: translateX(4px);
}

.top-dj-social-premium {
    display: flex;
    gap: 10px;
    padding-top: 14px;
    border-top: 1.5px solid rgba(99, 102, 241, 0.08);
}

.top-dj-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.top-dj-social-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.top-dj-social-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-dj-social-icon:hover {
    transform: translateY(-6px) scale(1.15) rotate(-8deg);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.top-dj-social-icon:hover::before {
    opacity: 0.8;
}

.top-dj-social-icon:hover::after {
    opacity: 1;
}

.top-dj-social-instagram::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.top-dj-social-twitter::before {
    background: #1da1f2;
}

.top-dj-social-facebook::before {
    background: #1877f2;
}

.top-dj-social-skype::before {
    background: #00aff0;
}

.top-dj-social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.top-dj-social-twitter {
    background: #1da1f2;
    color: #ffffff;
}

.top-dj-social-facebook {
    background: #1877f2;
    color: #ffffff;
}

.top-dj-social-skype {
    background: #00aff0;
    color: #ffffff;
}

.top-dj-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.no-top-djs-premium {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    font-size: 16px;
}

/* ============================================
   ARTICLES (Sohbet ve Müzik Dünyasından Haberler)
   ============================================ */
.articles-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.articles-grid-premium,
.articles-grid-modern-premium,
.articles-grid-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 50px !important;
    margin-top: 50px;
    width: 100% !important;
    max-width: 100% !important;
}

/* Responsive Grid for Articles */
@media (max-width: 1200px) {
    .articles-grid-modern-premium,
    .articles-grid-container {
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .articles-grid-modern-premium,
    .articles-grid-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

.article-card-premium,
.article-card-modern-premium {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.article-card-premium:hover,
.article-card-modern-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.2);
}

.article-image-wrapper-premium {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.article-image-link-premium {
    display: block;
    width: 100%;
    height: 100%;
}

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

.article-card-premium:hover .article-thumbnail-premium,
.article-card-modern-premium:hover .article-thumbnail-premium {
    transform: scale(1.1);
}

.article-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card-premium:hover .article-image-overlay,
.article-card-modern-premium:hover .article-image-overlay {
    opacity: 1;
}

.article-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.article-category-badge a {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-category-badge a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.article-category-badge .category-icon {
    margin-right: 4px;
}

.article-category-badge .category-name {
    font-weight: 600;
}

/* Article Content (Modern Premium) */
.article-content-premium,
.article-content-modern-premium {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-title-premium,
.article-title-modern-premium {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.article-title-premium a,
.article-title-modern-premium a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.article-title-premium a:hover,
.article-title-modern-premium a:hover {
    background-size: 100% 2px;
    color: var(--primary-color);
}

/* Article Meta (Modern Premium) */
.article-meta-premium,
.article-meta-modern-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--light-text);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-icon {
    font-size: 14px;
    opacity: 0.8;
}

.meta-text {
    font-weight: 500;
}

/* Article Excerpt (Modern Premium) */
.article-excerpt-premium,
.article-excerpt-modern-premium {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Article Read More (Modern Premium) */
.article-read-more-premium,
.article-read-more-modern-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.article-read-more-premium:hover,
.article-read-more-modern-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.article-read-more-premium i,
.article-read-more-modern-premium i {
    transition: transform 0.3s ease;
}

.article-read-more-premium:hover i,
.article-read-more-modern-premium:hover i {
    transform: translateX(5px);
}

/* Article No Image Placeholder */
.article-no-image-premium,
.article-image-wrapper-premium.article-no-image-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.article-placeholder-content {
    text-align: center;
    z-index: 1;
}

.article-placeholder-icon {
    font-size: 64px;
    margin-bottom: 12px;
    opacity: 0.5;
    filter: grayscale(1);
}

.article-placeholder-text {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-no-image-premium {
    width: 100%;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.article-placeholder-content {
    text-align: center;
    z-index: 1;
}

.article-placeholder-icon {
    font-size: 64px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.article-placeholder-text {
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
}

.article-no-image-premium .placeholder-icon {
    font-size: 56px;
    margin-bottom: 10px;
}

.article-no-image-premium .placeholder-text {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
}

.article-content-premium {
    padding: 25px;
}

.article-meta-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--light-text);
}

.article-meta-premium span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta-premium i {
    font-size: 14px;
}

.article-title-premium {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-title-premium a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title-premium a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-excerpt-premium {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-read-more-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.article-read-more-premium:hover {
    gap: 12px;
}

.article-read-more-premium i {
    font-size: 12px;
}

/* ============================================
   REQUESTS (Günün İstekleri)
   ============================================ */
.requests-premium {
    padding: 80px 0;
    background: #ffffff;
}

.requests-list-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.request-card-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.request-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.3);
}

.request-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.request-name-premium {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color);
}

.request-time-premium {
    font-size: 13px;
    color: var(--light-text);
}

.request-song-premium {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.request-message-premium {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.faq-item-premium {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

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

.faq-question-premium i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item-premium.active .faq-question-premium i {
    transform: rotate(180deg);
}

.faq-answer-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-premium.active .faq-answer-premium {
    max-height: 500px;
}

.faq-answer-premium p {
    padding: 0 25px 20px;
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
    border-image-slice: 1;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    padding: 30px;
    border-bottom: 2px solid var(--border-color);
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-form label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
}

.modal-form input,
.modal-form textarea,
.modal-form select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.modal-form textarea {
    resize: vertical;
    min-height: 120px;
}

.modal-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-post-container-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-post-layout-premium {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}

.single-post-main-content-premium {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.single-post-main-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.single-post-header-premium {
    margin-bottom: 30px;
}

.single-post-title-premium {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-post-meta-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--light-text);
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.meta-item-premium {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item-premium .meta-icon {
    font-size: 16px;
}

.meta-item-premium .meta-text {
    font-weight: 500;
}

.meta-item-premium a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-item-premium a:hover {
    color: var(--primary-color);
}

.post-category-badge-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.post-category-badge-premium a {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-category-badge-premium a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
}

.post-tags-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.post-tags-premium a {
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags-premium a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.tags-title-premium {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.tags-icon {
    font-size: 20px;
}

.tags-list-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item-premium {
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item-premium:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.single-post-footer-premium {
    margin-top: 40px;
    padding-top: 30px;
}

/* Post Navigation */
.post-navigation-premium {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.nav-links-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous-premium,
.nav-next-premium {
    width: 100%;
}

.nav-link-card-premium {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link-card-premium:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.nav-direction-premium {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title-premium {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
}

.page-links-premium {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.page-links-title {
    font-weight: 700;
    margin-right: 10px;
    color: var(--text-color);
}

.page-link-number {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 5px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link-number:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
}

.single-post-featured-image,
.single-post-featured-image-premium {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.single-post-featured-image img,
.single-post-featured-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.single-post-no-image,
.single-post-no-image-premium {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    margin-bottom: 30px;
    position: relative;
}

.featured-image-placeholder-content,
.single-post-no-image .placeholder-content,
.single-post-no-image-premium .placeholder-content {
    text-align: center;
    z-index: 1;
}

.featured-image-placeholder-icon,
.single-post-no-image .placeholder-icon,
.single-post-no-image-premium .placeholder-icon {
    font-size: 80px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.featured-image-placeholder-text,
.single-post-no-image .placeholder-text,
.single-post-no-image-premium .placeholder-text {
    font-size: 18px;
    font-weight: 600;
    color: #94a3b8;
}

.single-post-content-premium {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.single-post-content-premium p {
    margin-bottom: 20px;
}

.single-post-content-premium h2,
.single-post-content-premium h3,
.single-post-content-premium h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.single-post-content-premium a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-post-content-premium a:hover {
    color: var(--secondary-color);
}

.single-post-content-premium img {
    border-radius: 12px;
    margin: 30px 0;
}

/* Sidebar */
.single-post-sidebar-premium {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget-premium {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-widget-header-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-widget-icon-premium {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.sidebar-icon-bg {
    font-size: 24px;
}

.sidebar-widget-title-premium {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-widget-premium h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-post-item-premium {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-post-item-premium:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-item-premium:first-child {
    padding-top: 0;
}

.sidebar-posts-list-premium {
    display: flex;
    flex-direction: column;
}

.sidebar-post-image-premium {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.sidebar-post-image-link-premium {
    display: block;
    width: 100%;
    height: 100%;
}

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

.sidebar-post-item-premium:hover .sidebar-post-thumbnail-premium {
    transform: scale(1.1);
}

.sidebar-views-badge-premium {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 11px;
    color: #ffffff;
}

.views-icon-small {
    font-size: 12px;
}

.views-count-small {
    font-weight: 600;
    font-size: 11px;
}

.sidebar-post-content-premium {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-post-title-premium {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.sidebar-post-title-premium a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.sidebar-post-title-premium a:hover {
    background-size: 100% 2px;
    color: var(--primary-color);
}

.sidebar-post-meta-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--light-text);
}

.sidebar-post-date-premium {
    font-weight: 500;
}

.sidebar-post-views-premium {
    font-weight: 500;
}

.sidebar-popular-item-premium {
    position: relative;
}

.sidebar-popular-item-premium .sidebar-post-image-premium {
    position: relative;
}

.popular-post-number-premium {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    z-index: 15;
}

.sidebar-post-thumb-premium {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-thumb-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info-premium h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.sidebar-post-info-premium h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-info-premium h4 a:hover {
    color: var(--primary-color);
}

.sidebar-post-meta-premium {
    font-size: 12px;
    color: var(--light-text);
    display: flex;
    gap: 10px;
}

/* ============================================
   ARCHIVE PAGES
   ============================================ */
.archive-header-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.archive-header-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.archive-header-premium {
    width: 100%;
}

.archive-header-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.archive-header-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.archive-header-content {
    flex: 1;
    text-align: left;
}

.archive-title-premium {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.archive-description-premium {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.archive-description-premium p {
    margin: 0;
}

.archive-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.archive-header-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.archive-header-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.archive-header-fullwidth ~ .container {
    padding-top: 50px;
}

.archive-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Archive Card Premium */
.archive-card-premium {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.archive-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.2);
}

.archive-image-wrapper-premium {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.archive-image-link-premium {
    display: block;
    width: 100%;
    height: 100%;
}

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

.archive-card-premium:hover .archive-thumbnail-premium {
    transform: scale(1.1);
}

.archive-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.archive-card-premium:hover .archive-image-overlay {
    opacity: 1;
}

.archive-no-image-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #94a3b8;
    font-size: 48px;
}

.archive-placeholder-icon {
    opacity: 0.5;
}

.archive-content-premium {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.archive-post-title-premium {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.archive-post-title-premium a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.archive-post-title-premium a:hover {
    background-size: 100% 2px;
    color: var(--primary-color);
}

.archive-meta-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--light-text);
}

.archive-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.archive-meta-item .meta-icon {
    font-size: 14px;
}

.archive-meta-item a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-meta-item a:hover {
    color: var(--primary-color);
}

.archive-excerpt-premium {
    font-size: 14px;
    line-height: 1.7;
    color: var(--light-text);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-read-more-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.archive-read-more-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.read-more-arrow {
    transition: transform 0.3s ease;
}

.archive-read-more-premium:hover .read-more-arrow {
    transform: translateX(5px);
}

.pagination-premium {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.page-numbers-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-numbers-premium .page-numbers {
    padding: 10px 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-numbers-premium .page-numbers:hover,
.page-numbers-premium .page-numbers.current {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.no-archive-posts-premium {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.no-archive-posts-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-archive-posts-premium h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-color);
}

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

.archive-category-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.archive-category-badge a {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.archive-category-badge a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-header-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.page-header-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-premium {
    width: 100%;
}

.page-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header-icon-premium {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.page-title-premium {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description-premium {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.page-header-content-premium {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header-content-premium h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header-content-premium p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.page-content-premium {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content-premium-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-content-premium-inner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.page-content-premium-inner h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.page-content-premium-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.page-content-premium-inner ul,
.page-content-premium-inner ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content-premium-inner li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
}

/* About & Policy Content */
.about-content-premium,
.policy-content-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.about-section-premium,
.policy-section-premium {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.about-section-premium:last-child,
.policy-section-premium:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-icon-premium {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.policy-number {
    font-size: 24px;
    font-weight: 700;
}

.about-section-premium h2,
.policy-section-premium h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--text-color);
}

.about-section-premium p,
.policy-section-premium p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.policy-list-premium {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.policy-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.policy-list-premium li:last-child {
    border-bottom: none;
}

.policy-list-premium li i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Values Grid */
.values-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card-premium:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.value-icon-premium {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.value-card-premium h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-color);
}

.value-card-premium p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
}

/* Contact Info */
.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.contact-item-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact-item-premium i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-premium div {
    flex: 1;
}

.contact-item-premium strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 5px;
}

.contact-item-premium a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item-premium a:hover {
    color: var(--secondary-color);
}

/* ============================================
   SINGLE DJ PAGE
   ============================================ */
.dj-header-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 50px 20px;
    overflow: hidden;
}

.dj-header-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.dj-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dj-featured-image-premium {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.dj-featured-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-header-info-premium h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.dj-meta-info-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.dj-meta-item-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.dj-meta-item-premium i {
    font-size: 16px;
    color: var(--primary-color);
}

.dj-bio-premium {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.dj-content-premium-single {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.dj-section-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.dj-section-premium h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dj-programs-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.dj-program-card-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.dj-program-card-premium:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.dj-program-card-premium h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.dj-program-card-premium p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ============================================
   DJ SINGLE PAGE - PREMIUM
   ============================================ */
.dj-single-header-premium {
    min-height: 50vh;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.dj-single-header-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.dj-single-header-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.dj-single-avatar-wrapper {
    flex-shrink: 0;
}

.dj-single-avatar-premium {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.dj-single-avatar-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-single-avatar-premium.dj-single-no-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
}

.dj-avatar-glow-large {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.dj-single-header-content {
    flex: 1;
}

.dj-single-title-premium {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.dj-single-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.dj-single-vote-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dj-vote-count-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vote-icon-header {
    font-size: 20px;
}

.vote-number-header {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.vote-text-header {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.dj-vote-btn-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.dj-vote-btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.dj-vote-btn-header:hover::before {
    left: 100%;
}

.dj-vote-btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.6);
}

.dj-vote-btn-header:active {
    transform: translateY(-1px);
}

.dj-vote-btn-header.voted {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    cursor: not-allowed;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.dj-vote-btn-header:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.vote-btn-icon-header {
    font-size: 18px;
}

.vote-btn-text-header {
    font-size: 16px;
}

.single-dj-premium {
    margin-top: 50px;
}

.dj-profile-card-premium {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.dj-profile-info-premium {
    margin-bottom: 40px;
}

.dj-contact-section-premium {
    margin-bottom: 40px;
}

.dj-contact-details-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #1e293b;
}

.contact-item-premium:hover {
    border-color: #6366f1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact-item-premium.contact-email:hover {
    border-color: #ec4899;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
}

.contact-item-premium.contact-phone:hover {
    border-color: #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.contact-icon {
    font-size: 20px;
    color: #6366f1;
    width: 24px;
    text-align: center;
}

.contact-item-premium.contact-email .contact-icon {
    color: #ec4899;
}

.contact-item-premium.contact-phone .contact-icon {
    color: #10b981;
}

.contact-text {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

.dj-social-media-premium {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dj-social-link-premium {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dj-social-link-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.dj-social-link-premium:hover::before {
    width: 100%;
    height: 100%;
}

.dj-social-link-premium:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.dj-social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.dj-social-twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.dj-social-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.dj-social-skype {
    background: linear-gradient(135deg, #00aff0 0%, #0099cc 100%);
}

.dj-programs-section-premium {
    margin-bottom: 40px;
}

.dj-programs-title-premium {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.programs-icon {
    font-size: 32px;
}

.dj-programs-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.dj-program-card-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.dj-program-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s;
}

.dj-program-card-premium:hover::before {
    left: 100%;
}

.dj-program-card-premium:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.program-card-content-premium {
    flex: 1;
}

.program-card-title-premium {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    line-height: 1.4;
}

.program-card-meta-premium {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.program-day-premium,
.program-time-premium {
    font-size: 14px;
    color: #64748b;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 8px;
    font-weight: 500;
}

.program-card-arrow-premium {
    font-size: 24px;
    color: #6366f1;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.dj-program-card-premium:hover .program-card-arrow-premium {
    transform: translateX(5px);
}

.dj-content-section-premium {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.dj-content-title-premium {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-icon {
    font-size: 32px;
}

.dj-content-premium {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.dj-content-premium p {
    margin-bottom: 20px;
}

.dj-content-premium h1,
.dj-content-premium h2,
.dj-content-premium h3,
.dj-content-premium h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.dj-content-premium a {
    color: #6366f1;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.dj-content-premium a:hover {
    color: #8b5cf6;
    border-bottom-color: #8b5cf6;
}

.related-djs-premium {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e2e8f0;
}

.related-djs-title-premium {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-icon {
    font-size: 36px;
}

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

.related-dj-card-premium {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
}

.related-dj-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.related-dj-image-link {
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.related-dj-image-link.related-dj-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
}

.related-dj-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-dj-card-premium:hover .related-dj-avatar {
    transform: scale(1.1);
}

.related-dj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.related-dj-card-premium:hover .related-dj-overlay {
    opacity: 1;
}

.related-dj-content-premium {
    padding: 25px;
}

.related-dj-name-premium {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.related-dj-name-premium a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
}

.related-dj-name-premium a:hover {
    color: #6366f1;
}

.related-dj-excerpt-premium {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.related-dj-votes-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    width: fit-content;
}

.vote-icon-small {
    font-size: 16px;
}

.vote-count-small {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.vote-text-small {
    font-size: 12px;
    color: #64748b;
}

/* DJ Single Page Responsive */
@media (max-width: 768px) {
    .dj-single-header-premium {
        min-height: 40vh;
        padding: 50px 20px;
    }
    
    .dj-single-header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .dj-single-avatar-premium {
        width: 150px;
        height: 150px;
    }
    
    .dj-single-title-premium {
        font-size: 32px;
    }
    
    .dj-single-subtitle {
        font-size: 16px;
    }
    
    .dj-single-vote-section-header {
        justify-content: center;
    }
    
    .dj-profile-card-premium {
        padding: 30px 20px;
    }
    
    .dj-programs-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .related-djs-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COMMENTS
   ============================================ */
.comments-area-premium {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.comments-title-premium {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comment-list-premium {
    list-style: none;
    margin-bottom: 40px;
}

.comment-premium {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comment-premium .children {
    list-style: none;
    margin-left: 40px;
    margin-top: 20px;
}

.comment-header-premium {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.comment-avatar-premium {
    flex: 0 0 60px;
}

.comment-avatar-premium img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.comment-meta-premium {
    flex: 1;
}

.comment-author-premium {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.comment-date-premium {
    font-size: 13px;
    color: var(--light-text);
}

.comment-content-premium {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.comment-content-premium a:hover {
    color: var(--secondary-color);
}

.comment-reply-premium {
    margin-top: 15px;
}

.comment-reply-link-premium {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%) !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid transparent !important;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
}

.comment-reply-link-premium .reply-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.comment-reply-link-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.comment-reply-link-premium:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4) !important;
    border-color: transparent !important;
}

.comment-reply-link-premium:hover::before {
    left: 100%;
}

.comment-reply-link-premium:hover .reply-icon {
    transform: translateX(-3px) rotate(-15deg);
}

.comment-reply-link-premium:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

.comment-form-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.1);
    margin-top: 40px;
}

.comment-form-premium h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-premium .form-group {
    margin-bottom: 25px;
}

.comment-form-premium label:not(.comment-form-label-premium) {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-form-premium input[type="text"]:not(.comment-form-input-premium),
.comment-form-premium input[type="email"]:not(.comment-form-input-premium),
.comment-form-premium textarea:not(.comment-form-textarea-premium) {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comment-form-premium input:focus:not(.comment-form-input-premium),
.comment-form-premium textarea:focus:not(.comment-form-textarea-premium) {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.15);
    background: #ffffff;
    transform: translateY(-2px);
}

.comment-form-premium textarea:not(.comment-form-textarea-premium) {
    resize: vertical;
    min-height: 180px;
    line-height: 1.7;
}

.comment-form-premium button[type="submit"],
.comment-form-premium input[type="submit"],
.comment-submit-premium {
    padding: 16px 40px !important;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
}

.comment-form-premium button[type="submit"]::before,
.comment-form-premium input[type="submit"]::before,
.comment-submit-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.comment-form-premium button[type="submit"]:hover::before,
.comment-form-premium input[type="submit"]:hover::before,
.comment-submit-premium:hover::before {
    left: 100%;
}

.comment-form-premium button[type="submit"]:hover,
.comment-form-premium input[type="submit"]:hover,
.comment-submit-premium:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5) !important;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
}

.comment-form-premium button[type="submit"]:active,
.comment-form-premium input[type="submit"]:active,
.comment-submit-premium:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4) !important;
}

/* Comment Form Fields Premium */
.comment-form-field-premium {
    margin-bottom: 25px;
}

.comment-form-label-premium {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-form-label-premium .required {
    color: #ef4444;
    margin-left: 3px;
}

.comment-form-input-premium,
.comment-form-textarea-premium {
    width: 100% !important;
    padding: 16px 20px !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-family: inherit !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: var(--text-color) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.comment-form-input-premium:focus,
.comment-form-textarea-premium:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.15) !important;
    background: #ffffff !important;
    transform: translateY(-2px) !important;
}

.comment-form-textarea-premium {
    resize: vertical !important;
    min-height: 180px !important;
    line-height: 1.7 !important;
}

.comment-form-title-icon {
    font-size: 24px;
    margin-right: 8px;
}

/* Cancel Reply Link */
#cancel-comment-reply-link,
.comment-form-premium .cancel {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
    color: var(--light-text) !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--border-color) !important;
    margin-left: 10px !important;
}

#cancel-comment-reply-link:hover,
.comment-form-premium .cancel:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
}

/* ============================================
   POST NO IMAGE PLACEHOLDER (for index/archive)
   ============================================ */
.post-no-image-premium {
    width: 100%;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.post-no-image-premium .placeholder-icon {
    font-size: 56px;
    margin-bottom: 10px;
}

.post-no-image-premium .placeholder-text {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
}

/* ============================================
   INDEX PAGE (Blog List)
   ============================================ */
.index-page-blue {
    background: #ffffff;
    padding: 40px 0;
}

.content-area-fullwidth {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    width: 100%;
}

.post-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.post-list li {
    list-style: none;
}

.post-item {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.2);
}

.post-item .post-thumbnail,
.post-thumbnail {
    width: 350px;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.post-item a {
    text-decoration: none;
}

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

.post-item:hover img.post-thumbnail {
    transform: scale(1.05);
}

.post-item .post-no-image-premium {
    width: 350px;
    height: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.post-placeholder-content {
    text-align: center;
    color: #94a3b8;
}

.post-placeholder-icon {
    font-size: 64px;
    margin-bottom: 10px;
}

.post-placeholder-text {
    font-size: 16px;
    font-weight: 600;
}

.post-item .post-content,
.post-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-item .post-title,
.post-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.post-item .post-title a,
.post-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.post-item .post-title a:hover,
.post-title a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-item .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.post-item .post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-item .post-date,
.post-item .post-author,
.post-item .post-views,
.post-item .post-category {
    color: var(--light-text);
    font-size: 13px;
}

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

.post-item .post-category a:hover {
    color: var(--secondary-color);
}

.post-item .post-excerpt,
.post-excerpt {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.post-item .read-more,
.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.post-item .read-more:hover,
.read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.no-posts h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-posts p {
    color: var(--light-text);
    font-size: 16px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding: 30px 0;
}

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 10px 15px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.pagination .page-numbers.current {
    cursor: default;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    padding: 10px 20px;
}

.pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

.pagination .page-numbers.dots:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

/* Index Forms Section */
.index-forms-section-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.index-forms-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.index-form-card-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.index-form-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.2);
}

.form-card-header-premium {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.form-card-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.form-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.index-application-form-premium .form-group-premium {
    margin-bottom: 20px;
}

.index-application-form-premium .form-input-premium,
.index-application-form-premium .form-textarea-premium {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.index-application-form-premium .form-input-premium:focus,
.index-application-form-premium .form-textarea-premium:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.index-application-form-premium .form-textarea-premium {
    resize: vertical;
    min-height: 100px;
}

.index-application-form-premium .btn-submit-premium,
.btn-submit-premium {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 75%, #c084fc 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(99, 102, 241, 0.4),
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.index-application-form-premium .btn-submit-premium::before,
.btn-submit-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.index-application-form-premium .btn-submit-premium:hover::before,
.btn-submit-premium:hover::before {
    left: 100%;
}

.index-application-form-premium .btn-submit-premium::after,
.btn-submit-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.index-application-form-premium .btn-submit-premium:active::after,
.btn-submit-premium:active::after {
    width: 300px;
    height: 300px;
}

.index-application-form-premium .btn-submit-premium:hover,
.btn-submit-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.5),
        0 12px 35px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 75%, #a855f7 100%);
}

.index-application-form-premium .btn-submit-premium:active,
.btn-submit-premium:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-icon {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.btn-submit-premium:hover .submit-icon {
    transform: translateX(8px) scale(1.1);
}

.form-message-box {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: none;
    font-size: 14px;
    font-weight: 500;
}

.form-message-box.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
    display: block;
}

.form-message-box.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
    display: block;
}

/* ============================================
   FOOTER MODERN
   ============================================ */
.footer-modern {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 75%, #6366f1 100%);
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite;
}

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

.footer-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 30px);
    }
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    opacity: 1;
    z-index: 0;
}

.footer-modern .container {
    position: relative;
    z-index: 1;
}

.footer-modern-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-modern-main {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
    position: relative;
}

.footer-modern-main::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6366f1, #ec4899, transparent);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 36px;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #ec4899 60%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
}

.footer-logo-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6366f1, #ec4899, transparent);
    border-radius: 2px;
}

.footer-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 0 0;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.footer-modern-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-links-column h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-column ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: #ffffff;
    padding-left: 0;
}

.footer-links-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links-column ul li a i {
    font-size: 14px;
}

.footer-modern-bottom {
    border-top: 2px solid rgba(99, 102, 241, 0.15);
    padding-top: 30px;
    margin-top: 50px;
    position: relative;
}

.footer-modern-bottom::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6366f1, #ec4899, transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 500;
}

.footer-copyright span {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.2);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* İstek Gönder Butonu (Premium) */
.request-button-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 75%, #c084fc 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.4),
        0 12px 35px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.request-button-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.request-button-premium:hover::before {
    left: 100%;
}

.request-button-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.request-button-premium:active::after {
    width: 300px;
    height: 300px;
}

.request-button-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(99, 102, 241, 0.5),
        0 16px 45px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 75%, #a855f7 100%);
}

.request-button-premium:active {
    transform: translateY(-2px) scale(0.98);
}

.request-button-icon {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.request-button-premium:hover .request-button-icon {
    transform: rotate(15deg) scale(1.15);
}

.request-button-text {
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .request-button-premium {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .request-button-icon {
        font-size: 20px;
    }
}

/* Modal Styles (Premium) */
.request-modal-premium {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.request-modal-premium.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.request-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.request-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

.request-modal-header {
    padding: 30px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.request-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-icon {
    font-size: 32px;
}

.request-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.request-form-premium {
    padding: 30px;
}

.request-form-premium .form-group-premium {
    margin-bottom: 20px;
}

.form-label-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.label-icon {
    font-size: 16px;
}

.required {
    color: #ef4444;
}

.request-form-premium .form-input-premium,
.request-form-premium .form-textarea-premium {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.request-form-premium .form-input-premium:focus,
.request-form-premium .form-textarea-premium:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.request-form-premium .form-textarea-premium {
    resize: vertical;
    min-height: 100px;
}

.form-actions-premium {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-cancel-premium {
    flex: 1;
    padding: 14px 28px;
    background: #e5e7eb;
    color: var(--text-color);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel-premium:hover {
    background: #d1d5db;
}

.request-form-premium .btn-submit-premium {
    flex: 2;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 75%, #c084fc 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(99, 102, 241, 0.4),
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.request-form-premium .btn-submit-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.request-form-premium .btn-submit-premium:hover::before {
    left: 100%;
}

.request-form-premium .btn-submit-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.request-form-premium .btn-submit-premium:active::after {
    width: 300px;
    height: 300px;
}

.request-form-premium .btn-submit-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.5),
        0 12px 35px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 75%, #a855f7 100%);
}

.request-form-premium .btn-submit-premium:active {
    transform: translateY(-2px) scale(0.98);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .header-alani {
        max-width: 100%;
    }
    
    .hero-row-premium {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-row-premium {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-left-premium,
    .hero-right-premium {
        flex: 1 1 100%;
    }
    
    .sohbet-form-wrapper-premium {
        padding-bottom: 240px;
    }
    
    .sohbet-bg-image {
        max-width: 500px;
    }
    
    .single-post-layout-premium {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .single-post-main-content-premium {
        padding: 25px;
    }
    
    .single-post-title-premium {
        font-size: 28px;
    }
    
    .single-post-featured-image,
    .single-post-featured-image-premium {
        height: 300px;
    }
    
    .nav-links-premium {
        grid-template-columns: 1fr;
    }
    
    .sidebar-widget-premium {
        padding: 20px;
    }
    
    .dj-header-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .dj-featured-image-premium {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .dj-header-info-premium h1 {
        font-size: 28px;
    }
    
    .dj-meta-info-premium {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .main-navigation {
        width: 100%;
        justify-content: flex-start;
    }
    
    .main-navigation ul {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .main-navigation li a {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .hero-text-premium h1,
    .hero-title {
        font-size: 32px !important;
    }
    
    .hero-text-premium p,
    .hero-description,
    .hero-subtitle {
        font-size: 16px !important;
    }
    
    .col-md-6 {
        width: 100% !important;
        flex: 1 1 100% !important;
    }
    
    /* Index Page Responsive */
    .post-item {
        flex-direction: column;
    }
    
    .post-item .post-thumbnail,
    .post-item .post-no-image-premium {
        width: 100%;
        height: 250px;
    }
    
    .post-item .post-content {
        padding: 20px;
    }
    
    .post-item .post-title {
        font-size: 20px;
    }
    
    .post-item .post-meta {
        font-size: 12px;
        gap: 10px;
    }
    
    .pagination {
        padding: 20px 0;
    }
    
    .pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .pagination .page-numbers.prev,
    .pagination .page-numbers.next {
        padding: 8px 15px;
    }
    
    .index-forms-grid-premium {
        grid-template-columns: 1fr;
    }
    
    /* Footer Responsive */
    .footer-modern-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-separator {
        display: none;
    }
    
    /* Modal Responsive */
    .request-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .form-actions-premium {
        flex-direction: column;
    }
    
    .btn-cancel-premium,
    .request-form-premium .btn-submit-premium {
        flex: 1;
        width: 100%;
    }
    
    .player-container {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title-modern h2 {
        font-size: 28px;
    }
    
    .schedule-tabs-premium {
        flex-direction: column;
    }
    
    .schedule-grid-premium,
    .dj-grid-premium,
    .articles-grid-premium,
    .archive-grid-premium,
    .top-djs-grid-premium {
        grid-template-columns: 1fr;
    }
    
    /* Archive & Page Header Responsive */
    .archive-header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .archive-header-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .archive-title-premium {
        font-size: 32px;
    }
    
    .archive-description-premium {
        font-size: 14px;
    }
    
    .page-header-wrapper {
        gap: 15px;
    }
    
    .page-header-icon-premium {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .page-title-premium {
        font-size: 32px;
    }
    
    .page-description-premium {
        font-size: 14px;
    }
    
    /* Archive Cards Responsive */
    .archive-card-premium {
        margin-bottom: 0;
    }
    
    .archive-content-premium {
        padding: 20px;
    }
    
    .archive-post-title-premium {
        font-size: 18px;
    }
    
    /* About & Policy Responsive */
    .about-content-premium,
    .policy-content-premium {
        padding: 30px 20px;
    }
    
    .about-section-premium,
    .policy-section-premium {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .section-icon-premium {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .about-section-premium h2,
    .policy-section-premium h2 {
        font-size: 24px;
    }
    
    .values-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .contact-item-premium {
        flex-direction: column;
        text-align: center;
    }
    
    /* DJ Card Contact Responsive */
    .dj-card-contact-premium {
        justify-content: center;
    }
    
    .single-post-main-premium {
        padding: 25px;
    }
    
    .single-post-title-premium {
        font-size: 28px;
    }
    
    .comment-premium .children {
        margin-left: 20px;
    }
    
    .archive-header-content h1,
    .page-header-content-premium h1 {
        font-size: 32px;
    }
    
    .page-content-premium-inner {
        padding: 30px 20px;
    }
    
    .sohbet-bg-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        opacity: 1;
    }
    
    .sohbet-form-premium .form-control,
    .sohbet-form-premium .btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text-premium h1 {
        font-size: 24px;
    }
    
    .section-title-modern h2 {
        font-size: 24px;
    }
    
    .app-button {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
    }
}

/* ========================================
   Weekly Schedule Wrapper & Layout - MODERN GRID
======================================== */
.weekly-schedule-wrapper-premium {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.schedule-content-area-premium {
    width: 100%;
    position: relative;
}

.schedule-tabs-premium-wrapper {
    margin-bottom: 40px;
}

/* Responsive for Weekly Schedule */
@media (max-width: 992px) {
    .weekly-schedule-wrapper-premium {
        gap: 30px;
    }
}

/* ========================================
   Schedule List & Items (Program Kartları) - MINIMALIST & ELEGANT
======================================== */
.schedule-list-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    max-width: 100%;
}

.schedule-item-premium {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top gradient bar */
.schedule-item-premium::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #6366f1 0%, 
        #8b5cf6 50%, 
        #ec4899 100%
    );
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-item-premium:hover {
    border-color: #e0e7ff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    transform: translateY(-4px);
}

.schedule-item-premium:hover::before {
    opacity: 1;
}

.schedule-time-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.schedule-item-premium:hover .schedule-time-premium {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.schedule-time-premium .time-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.schedule-item-premium:hover .schedule-time-premium .time-icon {
    transform: scale(1.1);
}

.schedule-time-premium .time-text {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s ease;
}

.schedule-item-premium:hover .schedule-time-premium .time-text {
    color: #ffffff;
}

.schedule-info-premium {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.schedule-program-title-premium {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.schedule-program-title-premium a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.schedule-program-title-premium a:hover {
    color: #6366f1;
}

.schedule-dj-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.dj-link-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dj-link-premium:hover {
    color: #6366f1;
}

.dj-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e7ff;
    transition: all 0.3s ease;
}

.dj-link-premium:hover .dj-avatar-small {
    border-color: #6366f1;
    transform: scale(1.05);
}

.dj-icon {
    font-size: 18px;
}

.schedule-arrow-premium {
    display: none;
}

.schedule-content-wrapper-premium {
    min-height: 300px;
}

/* "Program Bulunamadı" Mesajı - Minimal */
.no-programs,
.no-programs-premium,
.no-schedule-premium {
    text-align: center;
    padding: 80px 40px;
    background: #fafbff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}

.no-schedule-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-programs p,
.no-programs-premium p,
.no-schedule-premium p {
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

/* Responsive for Schedule List - Grid Layout */
@media (max-width: 1024px) {
    .schedule-list-premium {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .schedule-list-premium {
        grid-template-columns: 1fr;
    }
    
    .schedule-time-premium .time-icon {
        font-size: 24px;
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .schedule-arrow-premium {
        display: none;
    }
}

/* ========================================
   FAQ Section (Sıkça Sorulan Sorular)
======================================== */
.faq-accordion-container-premium {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item-modern-premium {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-modern-premium:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.faq-item-modern-premium.active {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
}

.faq-question-premium {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-premium:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faq-number-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.faq-item-modern-premium:hover .faq-number-badge {
    transform: scale(1.1);
}

.faq-question-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item-modern-premium.active .faq-question-content h3 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-modern-premium:hover .faq-icon-wrapper {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
}

.faq-chevron {
    color: var(--light-text);
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-item-modern-premium:hover .faq-chevron {
    color: #ffffff;
}

.faq-item-modern-premium.active .faq-chevron {
    color: #ffffff;
    transform: rotate(180deg);
}

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

.faq-item-modern-premium.active .faq-answer-premium {
    max-height: 1000px;
}

.faq-answer-content-premium {
    padding: 0 30px 25px 90px;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 15px;
}

.faq-answer-content-premium p {
    margin: 0 0 15px 0;
}

.faq-answer-content-premium p:last-child {
    margin-bottom: 0;
}

.no-faqs-premium {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px dashed var(--border-color);
}

.no-faqs-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.7;
}

.no-faqs-premium p {
    font-size: 16px;
    color: var(--light-text);
    margin: 0;
}

/* Responsive for FAQ */
@media (max-width: 768px) {
    .faq-question-premium {
        padding: 20px;
    }
    
    .faq-question-content {
        gap: 15px;
    }
    
    .faq-number-badge {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .faq-question-content h3 {
        font-size: 16px;
    }
    
    .faq-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .faq-answer-content-premium {
        padding: 0 20px 20px 70px;
        font-size: 14px;
    }
}

/* ============================================
   EN YENI MUZIKLER SECTION
   ============================================ */
.latest-music-section-premium {
    padding: 80px 0;
}

.latest-music-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.latest-music-placeholder-premium {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px dashed #e2e8f0;
}

.latest-music-placeholder-premium .placeholder-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.6;
}

.latest-music-placeholder-premium p {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* ============================================
   POPULER RADYOLAR SECTION
   ============================================ */
.popular-radios-section-premium {
    padding: 80px 0;
}

.popular-radios-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.popular-radios-placeholder-premium {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px dashed #e2e8f0;
}

.popular-radios-placeholder-premium .placeholder-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.6;
}

.popular-radios-placeholder-premium p {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Responsive for Latest Music & Popular Radios */
@media (max-width: 768px) {
    .latest-music-grid-premium,
    .popular-radios-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .latest-music-placeholder-premium,
    .popular-radios-placeholder-premium {
        padding: 60px 20px;
    }
    
    .latest-music-placeholder-premium .placeholder-icon,
    .popular-radios-placeholder-premium .placeholder-icon {
        font-size: 48px;
    }
    
    /* Top DJs Section Responsive */
    .top-djs-section-premium-v2 {
        padding: 60px 0;
    }
    
    .decoration-circle-1,
    .decoration-circle-2 {
        display: none;
    }
    
    .top-djs-label-premium {
        padding: 8px 18px;
        font-size: 10px;
    }
    
    .label-icon {
        font-size: 14px;
    }
    
    .top-djs-title-premium-v2 {
        font-size: 32px;
    }
    
    .top-djs-desc-premium-v2 {
        font-size: 15px;
    }
    
    .top-djs-grid-premium {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .top-dj-rank-badge-premium {
        width: 48px;
        height: 48px;
        font-size: 20px;
        top: 16px;
        left: 16px;
    }
    
    .top-dj-votes-badge-premium {
        padding: 8px 14px;
        top: 16px;
        right: 16px;
    }
    
    .top-dj-image-wrapper-premium {
        height: 240px;
    }
    
    .top-dj-content-premium {
        padding: 22px;
    }
    
    .top-dj-title-premium {
        font-size: 19px;
    }
    
    .top-dj-view-btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .top-dj-social-premium {
        justify-content: center;
    }
}
