/* =============== GLOBAL STYLES =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffed00;
    --primary-dark: #ffd700;
    --background-dark: #0a0a0a;
    --surface-dark: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent-red: #ff6b6b;
    --accent-green: #4caf50;
    --accent-orange: #ff9800;
    --border-color: rgba(255, 237, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.highlight-time {
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-time::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.6;
    border-radius: 1px;
}

/* =============== ANIMATIONS =============== */
@keyframes floatParticle1 {
    0%, 100% { 
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    25% {
        transform: translate(30px, -20px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-10px, -40px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(-30px, -60px) scale(1.2);
        opacity: 0.4;
    }
}

@keyframes floatParticle2 {
    0%, 100% { 
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    30% {
        transform: translate(-25px, 15px) scale(1);
        opacity: 0.5;
    }
    60% {
        transform: translate(20px, -30px) scale(0.6);
        opacity: 0.7;
    }
    80% {
        transform: translate(40px, 10px) scale(1.1);
        opacity: 0.3;
    }
}

@keyframes floatBackground {
    0%, 100% {
        background-position: 0 0, 50px 60px, 130px 270px, 250px 30px, 350px 200px;
        opacity: 0.1;
    }
    25% {
        background-position: 20px -10px, 70px 50px, 110px 290px, 270px 10px, 330px 220px;
        opacity: 0.3;
    }
    50% {
        background-position: -10px 20px, 30px 80px, 150px 250px, 230px 50px, 370px 180px;
        opacity: 0.2;
    }
    75% {
        background-position: 15px 5px, 60px 40px, 120px 280px, 260px 20px, 340px 210px;
        opacity: 0.4;
    }
}

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

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =============== BACKGROUND =============== */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #0a0a0a 50%, #000000 100%);
    z-index: -2;
    overflow: hidden;
    background-image: 
        radial-gradient(2px 2px at 80% 30%, var(--primary-color), transparent),
        radial-gradient(2px 2px at 20% 70%, var(--primary-color), transparent),
        radial-gradient(1px 1px at 60% 80%, var(--primary-color), transparent),
        radial-gradient(1px 1px at 30% 20%, var(--primary-color), transparent),
        radial-gradient(2px 2px at 90% 90%, var(--primary-color), transparent);
    background-size: 400px 400px, 300px 300px, 200px 200px, 350px 350px, 450px 450px;
    background-position: 0 0, 50px 60px, 130px 270px, 250px 30px, 350px 200px;
    animation: floatBackground 20s ease-in-out infinite;
}

.background::before,
.background::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 30px var(--primary-color);
}

.background::before {
    top: 20%;
    left: 10%;
    animation: floatParticle1 8s ease-in-out infinite;
}

.background::after {
    top: 60%;
    right: 15%;
    animation: floatParticle2 12s ease-in-out infinite 2s;
}

/* =============== HEADER & NAVIGATION =============== */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 237, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.logo-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    background: var(--glass-bg);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 237, 0, 0.4);
}

.admin-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.admin-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 237, 0, 0.3);
}

/* =============== HERO SECTION =============== */
.hero {
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 237, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    margin-bottom: 0.5rem;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* =============== MAIN CONTENT =============== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.content-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.content-filters {
    display: flex;
    gap: 1rem;
    background: var(--glass-bg);
    padding: 0.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: #000;
}

.filter-btn.disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--glass-border);
}

.filter-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    transform: none;
}

.coming-soon {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: italic;
    margin-left: 0.25rem;
}

/* =============== RELEASES =============== */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.release-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 237, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.release-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 237, 0, 0.1),
        0 0 50px rgba(255, 237, 0, 0.2);
}

.release-card:hover::before {
    opacity: 1;
}

.release-thumbnail {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #333, #666);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.release-card:hover .release-thumbnail img {
    transform: scale(1.05);
}

.release-info {
    padding: 2rem;
}

.release-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.release-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.release-preview {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 237, 0, 0.3);
}

.status-badge.scheduled {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

/* =============== TABLES =============== */
.release-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 237, 0, 0.2);
    border-radius: 15px;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: tableSlideIn 0.5s ease-out;
}

.release-table thead {
    background: linear-gradient(135deg, 
        rgba(255, 237, 0, 0.15) 0%, 
        rgba(255, 215, 0, 0.1) 100%);
    border-bottom: 2px solid rgba(255, 237, 0, 0.3);
}

.release-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 237, 0, 0.2);
    position: relative;
}

.release-table th:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 237, 0, 0.2);
}

.release-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.release-table tbody tr:hover {
    background: rgba(255, 237, 0, 0.05);
    transform: scale(1.01);
}

.release-table tbody tr:last-child {
    border-bottom: none;
}

.release-table td {
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.release-table td:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.05);
}

.release-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.release-table a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.release-table a:hover {
    background: rgba(255, 237, 0, 0.1);
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 237, 0, 0.2);
}

.release-table a[href*="spotify"] {
    background: rgba(30, 215, 96, 0.1);
    color: #1ed760;
    border: 1px solid rgba(30, 215, 96, 0.3);
}

.release-table a[href*="spotify"]:hover {
    background: rgba(30, 215, 96, 0.2);
    color: #1ed760;
    box-shadow: 0 4px 12px rgba(30, 215, 96, 0.3);
}

.release-table a[href*="apple"] {
    background: rgba(250, 250, 250, 0.1);
    color: #fa2d48;
    border: 1px solid rgba(250, 45, 72, 0.3);
}

.release-table a[href*="apple"]:hover {
    background: rgba(250, 45, 72, 0.2);
    color: #fa2d48;
    box-shadow: 0 4px 12px rgba(250, 45, 72, 0.3);
}

.table-container {
    position: relative;
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: rgba(255, 237, 0, 0.3);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 237, 0, 0.5);
}

.release-table.zebra tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.release-table.compact th,
.release-table.compact td {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
}

/* =============== FOOTER =============== */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 0;
}

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

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-logo i {
    background: var(--primary-color);
    color: #000;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.newsletter {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.newsletter-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =============== MODALS & PANELS =============== */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-modal.active {
    display: flex;
    opacity: 1;
}

.legal-modal-content {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 80%;
    height: 80%;
    max-width: 1200px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 237, 0, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.legal-modal-header {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 237, 0, 0.1));
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.legal-modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.legal-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.legal-modal-close:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.legal-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    line-height: 1.7;
}

.legal-modal-body h1 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.legal-modal-body h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
}

.legal-modal-body h3 {
    color: var(--primary-dark);
    margin: 1.5rem 0 0.5rem 0;
}

.legal-modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-modal-body ul {
    color: var(--text-secondary);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-modal-body li {
    margin-bottom: 0.5rem;
}

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

.legal-modal-body a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-modal-body .contact-info {
    background: rgba(255, 237, 0, 0.1);
    border: 1px solid rgba(255, 237, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-modal-body .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-modal-body .important {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.legal-modal-body::-webkit-scrollbar {
    width: 8px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 237, 0, 0.3);
    border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 237, 0, 0.5);
}

.slide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.slide-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background: var(--surface-dark);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.slide-panel.active {
    right: 0;
}

.slide-panel-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-panel-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.panel-close {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.slide-panel-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* =============== UTILITY COMPONENTS =============== */
.loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.coming-soon-notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    max-width: 300px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.coming-soon-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.coming-soon-notification i {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.coming-soon-notification span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.coming-soon-notification small {
    display: block;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* =============== MEDIA QUERIES =============== */
@media (max-width: 1200px) {
    .releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
}

@media (max-width: 1024px) {
    .slide-panel {
        width: 80%;
    }
    
    .legal-modal-content {
        width: 90%;
        height: 85%;
        max-height: 85vh;
    }
    
    .legal-modal {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link span,
    .admin-btn span {
        display: none;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .content-filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-container {
        padding: 3rem 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slide-panel {
        width: 100%;
    }
    
    .legal-modal {
        padding: 0;
        align-items: stretch;
    }
    
    .legal-modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .legal-modal-header {
        padding: 1.5rem;
        flex-shrink: 0;
    }
    
    .legal-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .legal-modal-body {
        padding: 1.5rem;
        flex: 1;
        overflow-y: auto;
    }
    
    .legal-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .coming-soon-notification {
        top: 80px;
        right: 1rem;
        left: 1rem;
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .release-info {
        padding: 1.5rem;
    }
    
    .legal-modal-header {
        padding: 1rem;
    }
    
    .legal-modal-body {
        padding: 1rem;
    }
    
    .legal-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .legal-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .release-table,
    .release-table thead,
    .release-table tbody,
    .release-table th,
    .release-table td,
    .release-table tr {
        display: block;
    }
    
    .release-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .release-table tr {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 237, 0, 0.2);
        border-radius: 12px;
        margin-bottom: 1rem;
        padding: 0.5rem;
    }
    
    .release-table td {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        padding: 0.75rem 1rem 0.75rem 40%;
        text-align: left;
    }
    
    .release-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 35%;
        padding-right: 0.5rem;
        white-space: nowrap;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.8rem;
    }
    
    .release-table td:last-child {
        border-bottom: none;
    }
    
    .release-table td::after {
        display: none;
    }
}