@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   ОСНОВА
========================= */

html,
body {
    height: 100%;
}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HEADER
========================= */

header {
    padding: 20px 0;
    background-color: #080C14;
    border-bottom: 1px solid #141F33;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: #151823;

    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #00f2ff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    margin-left: 40px;
    flex: 1;
}

.nav-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a.active {
    color: #ffffff;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: #00ff66;
}

/* =========================
   СЕКЦИИ
========================= */

.page-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   ПРОФИЛЬ
========================= */

.profile-card {
    background: #080C14;
    border: 1px solid #141F33;
    border-radius: 20px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.profile-avatar img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #00f2ff;
    object-fit: cover;
}

.profile-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.profile-info p {
    color: #94a3b8;
    font-size: 16px;
}

/* =========================
   LIVE BLOCK
========================= */

.live-section {
    margin-top: 30px;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.live-header h2 {
    font-size: 28px;
}

.status-offline {
    color: #94a3b8;
}

.status-online {
    color: #22c55e;
    font-weight: 700;
}

.tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #1e293b;
}

.tab-btn:hover {
    transform: translateY(-2px);
}

.tab-btn.active.twitch {
    background: linear-gradient(90deg, #6441a5, #9146ff);
}

.tab-btn.active.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #a80000 100%);
}

.stream-card {
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.twitch-theme {
    background: linear-gradient(90deg, #080C14 0%, #2e1e4a 100%);
}

.youtube-theme {
    background: linear-gradient(90deg, #080C14 0%, #4a1e1e 100%);
}

#twitch-stream iframe {
    border-radius: 16px;
    width: 100%;
    margin-bottom: 20px;
    background: #000;
}

/* =========================
   КНОПКИ
========================= */

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#twitch-stream .btn-primary {
    background: linear-gradient(90deg, #6441a5, #9146ff);
}

#youtube-stream .btn-primary {
    background: linear-gradient(135deg, #ff0000 0%, #a80000 100%);
}

.btn-primary:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* =========================
   VIDEO
========================= */

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 30px auto;
}

.video-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #080C14;
    border: 1px solid #141F33;
    padding: 15px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.video-card:hover {
    background-color: #101826;
    transform: translateY(-2px);
}

.video-thumb {
    width: 250px;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    text-decoration: none;
    color: white;

    opacity: 0;
    transition: 0.3s ease;
}

.video-thumb:hover .play-overlay {
    opacity: 1;
}

.video-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.video-date {
    color: #888;
    font-size: 14px;
}

/* =========================
   FOOTER
========================= */

.footer {
    flex-shrink: 0;
    padding: 20px 0;
    background-color: #080C14;
    border-top: 1px solid #141F33;
    text-align: center;
    color: #475569;
    font-size: 14px;
    margin-top: 40px;
}

/* =========================
   АДАПТИВ
========================= */

@media (max-width: 900px) {

    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .live-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .video-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-thumb {
        width: 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 600px) {

    .logo {
        font-size: 20px;
    }

    .profile-info h1 {
        font-size: 28px;
    }

    .live-header h2 {
        font-size: 22px;
    }

    .stream-card {
        padding: 20px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}


/* =========================
   SCHEDULE SECTION
========================= */

.schedule-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.schedule-header {
    margin-bottom: 50px;
}

.schedule-header h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.schedule-header p {
    font-size: 22px;
    color: #b8c0d4;
    line-height: 1.6;
}

/* MAIN CARD */

.schedule-main-card {
    background: linear-gradient(135deg, #07152f, #0b1f45);
    border: 1px solid rgba(0,255,255,0.12);
    border-radius: 28px;
    padding: 60px;
    margin-bottom: 50px;
    text-align: center;
}

.schedule-main-card .tag {
    color: #00f0ff;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.schedule-main-card h2 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
}

.schedule-main-card .time {
    font-size: 32px;
    font-weight: 700;
    color: #00f0ff;
    margin-bottom: 15px;
}

.schedule-main-card .desc {
    font-size: 20px;
    line-height: 1.7;
    color: #c8d2e4;
}

/* GRID */

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */

.schedule-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #061227;
    border: 1px solid rgba(0,255,255,0.1);
    border-radius: 24px;
    padding: 35px;
    transition: 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,255,255,0.4);
    box-shadow: 0 0 25px rgba(0,255,255,0.08);
}

/* LEFT */

.schedule-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.schedule-day-short {
    font-size: 42px;
    font-weight: 800;
    color: #00f0ff;
    line-height: 1;
}

.schedule-live {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.7;
    margin-top: 8px;
    letter-spacing: 2px;
}

.schedule-day-name {
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
}

/* RIGHT */

.schedule-time {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

/* MOBILE */

@media (max-width: 900px) {

    .schedule-section {
        padding: 100px 20px 60px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-main-card {
        padding: 40px 25px;
    }

    .schedule-main-card h2 {
        font-size: 40px;
    }

    .schedule-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .schedule-day-name {
        font-size: 24px;
    }

    .schedule-time {
        font-size: 22px;
    }
}
/* =========================
   DONATE
========================= */

.donate-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.donate-header {
    margin-bottom: 40px;
}

.donate-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.donate-header p {
    color: #aaa;
    font-size: 18px;
}

.donate-main-card {
    background: linear-gradient(135deg, #001a44, #07152e);
    border: 1px solid #003a7a;
    border-radius: 28px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 0 40px rgba(0,255,255,0.05);
}

.donate-tag {
    color: #00eaff;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.donate-main-card h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.donate-description {
    color: #b9c3d4;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 700px;
}

.donate-progress-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-amount {
    font-size: 32px;
    font-weight: 700;
    color: #00eaff;
}

.goal-amount {
    font-size: 24px;
    color: #aaa;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #1c2233;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff2d2d, #ff5a5a);
    transition: 0.3s;
}

.progress-percent {
    margin-top: 6px;
    font-size: 12px;
    color: #aaa;
}
.donate-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.donate-btn {
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.donate-btn.primary {
    background: #00eaff;
    color: #000;
}

.donate-btn.primary:hover {
    transform: translateY(-3px);
}

.donate-btn.secondary {
    border: 1px solid #00eaff;
    color: #00eaff;
}

.donate-btn.secondary:hover {
    background: rgba(0,234,255,0.1);
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.donate-card {
    background: #06111f;
    border: 1px solid #0b2d55;
    border-radius: 22px;
    padding: 30px;
    transition: 0.3s;
}

.donate-card:hover {
    transform: translateY(-5px);
    border-color: #00eaff;
}

.donate-card-icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.donate-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.donate-card p {
    color: #b8c0cf;
    line-height: 1.7;
}

/* MOBILE */

@media (max-width: 768px) {

    .donate-main-card {
        padding: 30px 20px;
    }

    .donate-main-card h2 {
        font-size: 34px;
    }

    .donate-header h1 {
        font-size: 36px;
    }

    .current-amount {
        font-size: 24px;
    }

}
/* =========================
   NEWS SECTION
========================= */

.news-section {
    max-width: 900px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffffff;
}

.news-header p {
    color: #94a3b8;
    font-size: 16px;
}

.news-loading,
.news-empty {
    text-align: center;
    padding: 40px;
    background: #080C14;
    border: 1px solid #141F33;
    border-radius: 20px;
    color: #94a3b8;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-card {
    background: #080C14;
    border: 1px solid #141F33;
    border-radius: 20px;
    padding: 25px;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: #1e3a5f;
}

.news-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #00f2ff;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: #ffffff;
}

.author-role {
    font-size: 13px;
    color: #64748b;
}

.news-date {
    font-size: 13px;
    color: #64748b;
}

.news-content {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 20px;
    white-space: pre-line;
}

.news-link {
    color: #00f2ff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.news-link:hover {
    color: #ffffff;
}
/* ===== ADMIN MODERN UI ===== */

.admin-body {
    background: #0f1115;
    color: #fff;
    font-family: Arial, sans-serif;
}

header {
    background: #151823;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu a {
    color: #aaa;
    text-decoration: none;
    transition: 0.2s;
}

.nav-menu a:hover {
    color: #fff;
}

.nav-right .logout-btn {
    background: #ff3b3b;
    padding: 8px 14px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
}

/* GRID */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

.admin-card {
    background: #1a1f2e;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #2a2f45;

    display: flex;
    flex-direction: column;

    min-height: 220px;
}

.admin-card-header span {
    font-size: 24px;
    display: inline-block;
}

.admin-card-header h3 {
    font-size: 16px;
    margin: 0;
    color: #fff;
}

.admin-card {
    justify-content: space-between;
}

.admin-card {
    transition: 0.2s;
}

.admin-card:hover {
    transform: translateY(-3px);
    border-color: #4c6fff;
}

.full-width {
    grid-column: 1 / -1;
}

/* BUTTONS */
.btn-primary {
    background: #4c6fff;
    border: none;
    padding: 10px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.btn-danger {
    background: #ff3b3b;
    border: none;
    padding: 10px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.video-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #121622;
    margin-top: 10px;
    border-radius: 8px;
}

.video-row img {
    width: 80px;
    border-radius: 6px;
}

.admin-card:hover {
    transform: translateY(-2px);
    transition: 0.2s;
}
/* ===== VIDEO ADMIN PANEL MODERN ===== */

.video-card {
    background: linear-gradient(145deg, #1a1f2e, #141824);
    border: 1px solid #2a2f45;
    border-radius: 14px;
    padding: 20px;
}

.admin-subtitle {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

.video-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    color: #aaa;
}

.video-form input {
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid #2a2f45;
    background: #0f1115;
    color: #fff;
    outline: none;
    transition: 0.2s;
}

.video-form input:focus {
    border-color: #4c6fff;
    box-shadow: 0 0 0 3px rgba(76, 111, 255, 0.15);
}

.full-btn {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 5px;
}
.video-info strong {
    font-size: 14px;
}

.video-info span {
    font-size: 12px;
    color: #888;
}

.video-row img {
    width: 90px;
    border-radius: 8px;
}

.video-row {
    gap: 15px;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* КАРТОЧКА */
.video-card {
    background: #141826;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #242a3a;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: #3a63ff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* КАРТИНКА */
.video-thumb img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ТЕКСТ */
.video-body {
    padding: 14px;
}

.video-title {
    font-size: 15px;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.3;
}

/* ДАТА */
.video-meta {
    font-size: 12px;
    color: #9aa4b2;
    margin-bottom: 12px;
}

/* КНОПКА */
.video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 10px;
    padding: 11px 14px;

    background: linear-gradient(135deg, #3a63ff, #6a8dff);
    color: #fff;

    border-radius: 12px;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.25s ease;

    position: relative;
    overflow: hidden;

    box-shadow: 0 8px 20px rgba(58, 99, 255, 0.25);
}
.status-live {
    color: #ff2d2d;
    font-weight: 700;
    animation: pulse 1s infinite;
}

.status-offline {
    color: #888;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}
.stream-card {
    background: linear-gradient(135deg, #141826, #10131d);
    border: 1px solid #242a3a;
}

.stream-status-box {
    padding: 10px 0;
}

.status-indicator {
    font-size: 18px;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.status-indicator.live {
    background: rgba(255, 45, 45, 0.1);
    color: #ff2d2d;
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.25);
    animation: pulseLive 1.5s infinite;
}

.status-indicator.offline {
    background: rgba(120, 120, 120, 0.1);
    color: #aaa;
}

@keyframes pulseLive {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.status-subtext {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.stream-buttons {
    display: flex;
    gap: 10px;
}

/* КНОПКИ */
.stream-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

/* LIVE */
.live-btn {
    background: linear-gradient(135deg, #ff2d2d, #ff5a5a);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 45, 45, 0.25);
}

.live-btn:hover {
    transform: translateY(-2px);
}

/* OFF */
.off-btn {
    background: #1c2233;
    color: #aaa;
    border: 1px solid #2a3145;
}

.off-btn:hover {
    background: #232a3d;
    transform: translateY(-2px);
}


/* ===== FIX LOGOUT BUTTON ===== */

.nav-right {
    margin-left: 40px;
    display: flex;
    align-items: center;
}

/* делаем как обычный пункт меню */
.logout-btn {
    color: #94a3b8 !important;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
}

/* hover как у остальных */
.logout-btn:hover {
    color: #ffffff !important;
}

/* если где-то был красный фон */
.logout-btn {
    background: transparent !important;
    border: none !important;
}
.coming-soon-card {
    background: #151823;
    border: 1px solid #22283a;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.coming-soon-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.coming-soon-card h2 {
    color: #fff;
    margin-bottom: 10px;
}

.coming-soon-card p {
    color: #94a3b8;
    line-height: 1.6;
}

.coming-soon-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 2px;
    border: 1px solid #00f2ff;
    color: #00f2ff;
    border-radius: 20px;
}

/* ===== TWITCH STREAM ===== */

.twitch-theme {
    background: linear-gradient(
        135deg,
        #1f1633 0%,
        #2b1f45 35%,
        #4b2d7f 70%,
        #6d28d9 100%
    );

    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}

/* ===== YOUTUBE STREAM ===== */

.youtube-theme {
    background: linear-gradient(
        135deg,
        #2a0d0d 0%,
        #451111 30%,
        #7f1d1d 70%,
        #dc2626 100%
    );

    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.12);
}

.stream-card {
    border-radius: 18px;
    overflow: hidden;
    padding: 25px;
    margin-top: 25px;
    transition: 0.3s ease;
}

.stream-card:hover {
    transform: translateY(-3px);
}
.stream-card iframe {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
}

/* ===== STREAM OFFLINE TEXT ===== */

.stream-offline-title {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.stream-offline-text {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 25px;
}
/* ===== YOUTUBE BUTTON ===== */

.youtube-btn {
    background: linear-gradient(135deg, #ff1e1e, #ff4d4d);
    border: none;
    color: white;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
}

.youtube-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.4);
}
/* ===== STREAM STATUS BADGE ===== */

.stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;

    margin-left: 15px;
}

/* ===== STREAM STATUS ===== */

.stream-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 14px;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;

    margin-left: 15px;

    transition: 0.3s ease;
}

/* OFFLINE */

.stream-badge.offline {
    background: linear-gradient(
        135deg,
        #232836,
        #2f3547
    );

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 20px rgba(0,0,0,0.25);
}

/* LIVE */

.stream-badge.live {
    background: linear-gradient(
        135deg,
        #ff1744,
        #ff4d6d
    );

    color: white;

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow:
        0 0 25px rgba(255,0,80,0.45);

    animation: pulseLive 1.5s infinite;
}

/* LIVE ANIMATION */

@keyframes pulseLive {

    0% {
        box-shadow: 0 0 15px rgba(255,0,80,0.25);
    }

    50% {
        box-shadow: 0 0 35px rgba(255,0,80,0.75);
    }

    100% {
        box-shadow: 0 0 15px rgba(255,0,80,0.25);
    }
}