/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tilda Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Utility classes */
.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

a {
    color: #2eabd1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5ec2e8;
}

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

/* Header */
.main-header {
    background: rgba(10, 10, 10, 0.95);
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-description {
    color: #888;
    font-size: 0.9rem;
}

.header-auth {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#user-menu.d-none {
    display: none !important;
}

#user-menu.d-flex {
    display: flex !important;
}

/* Admin Sidebar */
.sidebar {
    width: 200px;
    background: #1a1a1a;
    padding: 20px 15px;
    border-right: 1px solid #2a2a2a;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar h2 {
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
    font-size: 1.2rem;
}

.sidebar h2 i {
    margin-right: 8px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.sidebar-menu a:hover {
    background: #2a2a2a;
    color: #2eabd1;
}

.sidebar-menu a.active {
    background: #2eabd1;
    color: #0a0a0a;
    font-weight: 600;
}

.sidebar-menu a i {
    width: 24px;
    margin-right: 10px;
    text-align: center;
}

/* Admin Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #0a0a0a;
    color: #e0e0e0;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .sidebar {
        width: 60px;
        padding: 15px 5px;
    }
    
    .sidebar h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .sidebar h2 i {
        margin: 0;
    }
    
    .sidebar-menu a {
        justify-content: center;
        padding: 12px 5px;
    }
    
    .sidebar-menu a span,
    .sidebar-menu a i + span {
        display: none;
    }
    
    .admin-layout .main-content {
        margin-left: 60px;
    }
}

.auth-btn {
    background: #2eabd1;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-btn:hover {
    background: #5ec2e8;
}

.auth-btn i {
    font-size: 1rem;
}

/* Auth Modal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.auth-modal-header h2 {
    color: #ffffff;
    margin: 0;
}

.auth-close {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.auth-modal-body .form-group {
    margin-bottom: 15px;
}

.auth-modal-body .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.auth-modal-body .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #0a0a0a;
    color: #ffffff;
}

.auth-modal-body button {
    width: 100%;
    padding: 12px;
    background: #2eabd1;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-modal-body button:hover {
    background: #5ec2e8;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #888;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: #2eabd1;
}

/* Captcha */
.auth-modal-body #captcha-container {
    margin-bottom: 15px;
}

.auth-modal-body #captcha-container label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
    font-weight: 500;
}

.auth-modal-body #captcha-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #0a0a0a;
    color: #ffffff;
}

/* Auth Error */
.auth-modal-body #auth-error {
    background: rgba(255, 50, 50, 0.1);
    border-left: 4px solid #ff3232;
    color: #ff3232;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.auth-modal-body .captcha-container {
    margin-bottom: 15px;
    padding: 10px;
    background: #222;
    border-radius: 5px;
    text-align: center;
}

.auth-modal-body .captcha-container p {
    color: #2eabd1;
    font-weight: 500;
    margin-bottom: 10px;
}

.auth-modal-body .captcha-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #111;
    color: #ffffff;
    text-align: center;
    font-size: 1.1rem;
}

/* User button in header */
.user-btn {
    background: linear-gradient(135deg, #2eabd1 0%, #4caf50 100%);
    color: #ffffff;
    padding: 10px 25px;
    position: relative;
}

.user-btn:hover {
    background: linear-gradient(135deg, #5ec2e8 0%, #66bb6a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 171, 209, 0.4);
}

.user-btn .admin-menu-btn {
    margin-left: 10px;
    font-size: 0.85rem;
    vertical-align: middle;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.user-btn:hover .admin-menu-btn {
    opacity: 1;
    transform: rotate(90deg);
}

/* Translucency Section */
.translucency-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
    border-left: 4px solid #2eabd1;
    padding-left: 15px;
}

.translucency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.translucency-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.translucency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container .video-container-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    padding: 15px;
    font-size: 1.2rem;
    color: #ffffff;
    background: #222;
    text-align: center;
}

/* News Section */
.news-section {
    padding: 40px 0;
    flex: 1;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.news-item.has-image {
    display: flex;
    flex-direction: column;
}

.news-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image {
    transform: scale(1.02);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.news-date {
    color: #2eabd1;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.news-text {
    color: #d0d0d0;
    line-height: 1.8;
}

.news-text p {
    margin-bottom: 15px;
}

.news-text p:last-child {
    margin-bottom: 0;
}

.news-text strong {
    color: #ffffff;
    font-weight: 700;
}

.news-text em {
    font-style: italic;
}

.news-text del {
    color: #888;
}

.news-text a {
    text-decoration: underline;
}

.news-text ul, .news-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.news-text ul li, .news-text ol li {
    margin-bottom: 5px;
}

.news-text h1, .news-text h2, .news-text h3, .news-text h4, .news-text h5, .news-text h6 {
    color: #ffffff;
    margin: 15px 0;
}

.news-text h1 { font-size: 1.8rem; }
.news-text h2 { font-size: 1.5rem; }
.news-text h3 { font-size: 1.2rem; }

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 0;
}

.news-pagination .pagination-info {
    color: #888;
    font-size: 0.95rem;
}

.news-pagination .pagination-buttons {
    display: flex;
    gap: 5px;
}

.news-pagination .pagination-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.news-pagination .pagination-btn:hover:not(.active) {
    background: #2eabd1;
    color: #ffffff;
    border-color: #2eabd1;
}

.news-pagination .pagination-btn.active {
    background: #2eabd1;
    color: #ffffff;
    border-color: #2eabd1;
}

.news-pagination .pagination-btn.prev,
.news-pagination .pagination-btn.next {
    min-width: auto;
    padding: 0 15px;
}

.news-pagination .pagination-btn i {
    margin: 0 5px;
}

/* Footer */
.main-footer {
    background: #0f0f0f;
    padding: 30px 0;
    border-top: 1px solid #2a2a2a;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #888;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2eabd1;
    color: #ffffff;
    transform: translateY(-3px);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .translucency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .news-image {
        height: 200px;
    }

    .news-title {
        font-size: 1.2rem;
    }

    .header-auth {
        position: relative;
        top: 0;
        right: 0;
        order: 3;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ============================================
   Продвинутый Markdown-редактор
   ============================================ */

.markdown-editor-container {
    display: flex;
    gap: 20px;
    min-height: 600px;
}

.markdown-editor-editor {
    flex: 1;
    min-width: 0;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    color: #e0e0e0;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
}

.markdown-editor-editor[contenteditable] {
    min-height: 400px;
}

.markdown-editor-preview {
    flex: 1;
    min-width: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    overflow-y: auto;
    max-height: 600px;
}

.markdown-editor-preview h1 { font-size: 2rem; margin-bottom: 20px; color: #ffffff; }
.markdown-editor-preview h2 { font-size: 1.5rem; margin-bottom: 15px; color: #ffffff; }
.markdown-editor-preview h3 { font-size: 1.2rem; margin-bottom: 10px; color: #ffffff; }
.markdown-editor-preview p { margin-bottom: 15px; color: #d0d0d0; }
.markdown-editor-preview strong { color: #ffffff; font-weight: 700; }
.markdown-editor-preview em { font-style: italic; color: #2eabd1; }
.markdown-editor-preview blockquote { border-left: 4px solid #2eabd1; padding-left: 15px; margin-left: 0; color: #888; }
.markdown-editor-preview code { background: #2a2a2a; padding: 2px 6px; border-radius: 3px; font-family: monospace; }
.markdown-editor-preview pre { background: #2a2a2a; padding: 15px; border-radius: 5px; overflow-x: auto; }
.markdown-editor-preview pre code { background: transparent; padding: 0; }
.markdown-editor-preview a { color: #2eabd1; text-decoration: none; }
.markdown-editor-preview a:hover { text-decoration: underline; }
.markdown-editor-preview ul, .markdown-editor-preview ol { margin: 10px 0; padding-left: 30px; }
.markdown-editor-preview li { margin-bottom: 5px; }
.markdown-editor-preview img { max-width: 100%; height: auto; border-radius: 5px; }
.markdown-editor-preview table { width: 100%; border-collapse: collapse; margin: 15px 0; }
.markdown-editor-preview table th, .markdown-editor-preview table td { border: 1px solid #333; padding: 8px; text-align: left; }
.markdown-editor-preview table th { background: #2a2a2a; }
.markdown-editor-preview hr { border: none; border-top: 1px solid #333; margin: 20px 0; }

.markdown-toolbar {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.md-btn {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2a2a2a;
    color: #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.md-btn:hover {
    background: #2eabd1;
    color: #ffffff;
    border-color: #2eabd1;
    transform: scale(1.05);
}

.md-btn.active {
    background: #2eabd1;
    color: #ffffff;
    border-color: #2eabd1;
}

.preview-toggle {
    margin-bottom: 10px;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #333;
    background: #2a2a2a;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preview-toggle:hover {
    background: #3a3a3a;
    color: #ffffff;
}

.preview-toggle.active {
    background: #2eabd1;
    color: #ffffff;
}

.image-upload {
    border: 2px dashed #444;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin-top: 15px;
}

.image-upload:hover {
    border-color: #2eabd1;
    background: rgba(46, 171, 209, 0.1);
}

.image-upload i {
    font-size: 3rem;
    color: #888;
    margin-bottom: 10px;
}

.image-settings {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.image-type-btn {
    padding: 8px 16px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #2a2a2a;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.image-type-btn:hover {
    border-color: #2eabd1;
}

.image-type-btn.active {
    background: #2eabd1;
    color: #ffffff;
    border-color: #2eabd1;
}

/* News Slider */
.news-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.news-slide {
    display: none;
}

.news-slide.active {
    display: block;
}

.news-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.news-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(46, 171, 209, 0.8);
}

.news-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.news-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-gallery-item:hover {
    transform: scale(1.02);
}

.news-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Banner image */
.news-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .markdown-editor-container {
        flex-direction: column;
    }
    
    .markdown-editor-editor,
    .markdown-editor-preview {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .markdown-editor-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .markdown-editor-editor,
    .markdown-editor-preview {
        width: 100%;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #333;
    border-top: 4px solid #2eabd1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Empty State */
.empty-state {
    text-align: center;
    padding: 50px;
    color: #888;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #333;
}

/* Ad Block */
.ad-block {
    background: #1a1a1a;
    border: 2px dashed #333;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
}

.ad-block .ad-label {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Captcha */
.auth-modal-body #captcha-container {
    margin-bottom: 15px;
}

.auth-modal-body #captcha-container label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
    font-weight: 500;
}

.auth-modal-body #captcha-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #0a0a0a;
    color: #ffffff;
}

/* Auth Error */
.auth-modal-body #auth-error {
    background: rgba(255, 50, 50, 0.1);
    border-left: 4px solid #ff3232;
    color: #ff3232;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.auth-modal-body .captcha-container {
    margin-bottom: 15px;
    padding: 10px;
    background: #222;
    border-radius: 5px;
    text-align: center;
}

.auth-modal-body .captcha-container p {
    color: #2eabd1;
    font-weight: 500;
    margin-bottom: 10px;
}

.auth-modal-body .captcha-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #111;
    color: #ffffff;
    text-align: center;
    font-size: 1.1rem;
}

/* User button in header */
.user-btn {
    background: #4caf50;
    color: #ffffff;
}

.user-btn:hover {
    background: #66bb6a;
}

/* User menu display */
#user-menu.d-none {
    display: none !important;
}

#user-menu.d-flex {
    display: flex !important;
}

/* ============================================
   Main Layout
   ============================================ */

.app-container {
    min-height: 100vh;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.main-wrapper {
    margin-left: 0;
}

/* Hero Section */
.hero {
    padding: 10px 0;
}

.hero-container {
    display: flex;
    gap: 10px;
}

.hero-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Cards */
.hero-card-support,
.releases-card,
.news-card-compact {
    height: 200px;
    border-radius: 12px;
    border: 2px solid var(--bg-tertiary);
    background-color: #12171e;
    transition: var(--transition);
    position: relative;
}

.hero-card-support:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.releases-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.news-card-compact:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Support Card */
.hero-card-support {
    display: flex;
    overflow: hidden;
    padding: 10px;
    gap: 10px;
    height: 200px;
}

.news-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 0;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    justify-content: space-between;
}

.news-content-wrapper {
    overflow: hidden;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.news-right-image {
    flex: 1;
    min-height: 0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-tertiary);
    font-size: 48px;
    color: var(--text-secondary);
}

.news-right-image i {
    font-size: 64px;
    color: var(--accent-yellow);
}

/* Support Text */
.support-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-button);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-yellow {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow) 100%);
    color: #000;
}

.btn-yellow:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary {
    background: var(--accent-blue);
    color: #ffffff;
}

.btn-primary:hover {
    background: #4d96d9;
}

.btn-calendar {
    padding: 6px 20px;
    font-size: 13px;
    background-color: var(--bg-primary);
    color: var(--accent-purple);
    border: 1px solid var(--accent-purple);
    border-radius: 12px;
    cursor: pointer;
}

.btn-calendar:hover {
    background-color: rgba(139, 92, 246, 0.1);
}

/* Releases Card */
.releases-card {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 8px;
}

.releases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.releases-header h3 {
    font-size: 16px;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.releases-header h3 i {
    color: var(--accent-purple);
}

.release-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
}

.release-list::-webkit-scrollbar {
    width: 4px;
}

.release-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.release-list::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

.release-list li {
    padding: 2px 0;
    font-size: 13px;
}

.release-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.release-list li .show-title {
    font-weight: 600;
    flex: 1;
}

.release-list li .show-time {
    color: var(--text-secondary);
    font-size: 12px;
}

/* News Card Compact */
.news-card-compact {
    display: flex;
    overflow: hidden;
    padding: 10px;
    gap: 10px;
    height: 200px;
}

.news-card-header {
    flex-shrink: 0;
}

.news-card-header h3 {
    font-size: 16px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--bg-tertiary);
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-card-header h3 i {
    color: var(--accent-blue);
}

.news-content h4 {
    font-size: 14px;
    margin-bottom: 0;
}

.news-content p {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 0;
}

.news-content .btn-primary.news-read-more {
    width: auto;
    padding: 0;
    font-size: 13px;
    background-color: transparent;
    border: none;
    color: var(--accent-blue);
    cursor: pointer;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-content .btn-primary.news-read-more:hover {
    background-color: transparent;
    border: none;
    color: var(--text-primary);
    transform: none;
    box-shadow: none;
}

/* Transmissions Section */
.transmissions {
    padding: 20px 0;
}

.transmissions-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.transmissions-title i {
    color: var(--accent-blue);
}

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

/* Latest News Section */
.latest-news {
    padding: 20px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--accent-blue);
}

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

.news-all-link {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        flex-wrap: wrap;
    }
    
    .hero-block {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-brand {
        width: 100%;
        text-align: center;
        order: 1;
    }
    
    .site-slogan {
        margin-left: 0;
    }
    
    .header-actions {
        width: 100%;
        flex-direction: column;
        order: 2;
        align-items: center;
    }
    
    .header-search {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .site-slogan {
        display: none;
    }
    
    .header-actions {
        margin-top: 0;
    }
    
    .search-input {
        display: none;
    }
    
    .header-search {
        padding: 8px;
        min-width: auto;
    }
    
    .auth-btn span {
        display: none;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .news-all-link {
        text-align: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

