@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    background: #000;
    font-family: 'Overused Grotesk', sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

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

img {
    display: block;
}

.outer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.site-frame {
    width: 95%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    background: #000;
}

.header-row {
    display: flex;
    width: 100%;
    height: 120px;
    border-bottom: 4px solid #000;
    position: relative;
}

.header-row::before {
    content: 'AD';
    white-space: pre;
    position: absolute;
    top: 0;
    left: 110px;
    width: 20px;
    height: 45px;
    background: #000;
    color: #fff;
    font-family: 'FX300 Angular', sans-serif;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    z-index: 10;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.logo-area {
    position: relative;
    width: 140px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    background: #73abff;
    clip-path: polygon(89% 0, 89% 86%, 100% 100%, 0 100%, 0 0);
}


.logo-mark-img {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: auto;
    z-index: 1;
}


.ad-area {
    flex: 1;
    height: 88px;
    align-self: center;
    margin-right: 48px;
    overflow: hidden;
    display: flex;
    justify-content: left;
    align-items: center;

}

.ad-area img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    object-position: left;
    border: 1px solid #73abff;
}

.main-nav {
    width: 100%;
    border-bottom: 4px solid #000;
    overflow: visible;
    height: 38px;
    position: relative;
}

.nav-inner {
    display: flex;
    height: 34px;
    clip-path: polygon(0 0, calc(100% - 46px) 0, 100% 100%, 0 100%);
    background: #fff;
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: 'FX300 Angular', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: #000;
    border-right: 2px solid #000;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.1s, background 0.1s;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    background: #73abff;
    color: #fff;
}


.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    padding: 40px 20px 60px;
    min-height: 580px;
    border-left: 2px solid #73abff;
    border-right: 2px solid #73abff;
    margin-top: -4px;
}

.content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.character-wrap {
    width: 200px;
    margin-bottom: 20px;
}

.character-img {
    width: 200px;
    height: auto;
}

.error-code {
    font-size: 4rem;
    color: #73abff;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    text-align: center;
}

.error-msg {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1rem;
    color: #73abff;
    letter-spacing: 0.04em;
    text-align: center;
}

.site-footer {
    width: 95%;
    max-width: 1000px;
    background: #000;
    border-left: 2px solid #73abff;
    border-right: 2px solid #73abff;
    border-bottom: 2px solid #73abff;
    padding: 0 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-deco {
    width: 100%;
    height: 32px;
    position: relative;
    top: -1px;
    display: flex;
    align-items: center;
    margin-bottom: -25px;
}

.footer-deco svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-logo-wrap {
    margin-top: 4px;
    margin-bottom: 2px;
}

.orbit-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.72rem;
    color: #ccc;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #73abff;
}

.pipe {
    color: #555;
}

.footer-copy {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.58rem;
    color: #c4c4c4;
    text-align: center;
    line-height: 1.6;
}

.footer-copy a {
    color: #c4c4c4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-frame {
        width: 100%;
        border-left: none;
        border-right: none;
    }

    .main-content {
        border-left: none;
        border-right: none;
        padding: 20px 15px;
    }

    .header-row {
        height: auto;
        flex-direction: column;
        border-bottom: none;
    }

    .logo-area {
        width: 100%;
        height: 80px;
        border-right: none;
        border-bottom: 4px solid #000;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .logo-mark-img {
        width: 60px;
        left: 50%;
    }

    .header-row::before {
        display: none;
    }

    .ad-area {
        width: 100%;
        height: auto;
        padding: 15px;
        margin: 0;
        justify-content: center;
        background: #000;
        border-bottom: 4px solid #000;
    }

    .ad-area img {
        width: 100%;
        height: auto;
        max-width: 468px;
        object-position: center;
    }

    .main-nav {
        height: auto;
        border-bottom: none;
    }

    .nav-inner {
        flex-wrap: wrap;
        height: auto;
        clip-path: none;
    }

    .nav-link {
        flex: 1 1 50%;
        justify-content: center;
        border-bottom: 2px solid #000;
        border-right: 2px solid #000;
        height: 45px;
        font-size: 0.9rem;
    }

    .nav-link:nth-child(even) {
        border-right: none;
    }

    .nav-link:last-child {
        flex: 1 1 100%;
        border-right: none;
    }

    .home-columns {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .left-col,
    .right-col {
        flex: none;
        width: 100%;
    }

    .site-footer {
        width: 100%;
        border-left: none;
        border-right: none;
        padding: 0 15px 30px;
    }

    .footer-deco {
        margin-bottom: -15px;
    }
}

@media (max-width: 480px) {
    .nav-link {
        flex: 1 1 100%;
        border-right: none;
    }

    .news-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .news-item img {
        width: 100%;
        height: 200px;
    }

    .block-title,
    .block-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .carousel-arrow {
        display: none;
    }
}

.main-content.homepage,
.main-content.watch-page {
    padding: 0;
    justify-content: flex-start;
}

.video-section {
    align-self: stretch;
    background: #000;
    border: 1px solid #73abff;
    margin: 20px 20px 0 20px;
}

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

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

.video-container .plyr {
    --plyr-color-main: #73abff;
    --plyr-font-family: 'Overused Grotesk', sans-serif;
}

.watch-banner {
    align-self: stretch;
    margin: 20px 20px 0 20px;
    border: 1px solid #73abff;
    background: #000;
}

.watch-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.home-columns {
    display: flex;
    width: 100%;
    gap: 15px;
    padding: 15px 20px;
}

.left-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-block {
    border: 1px solid #73abff;
    display: flex;
    flex-direction: column;
    background: #000;
}

.block-header {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #73abff;
    height: 30px;
}

.block-title {
    font-family: 'FX300 Angular', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    padding: 0 15px;
    display: flex;
    align-items: center;
    border-right: 2px solid #73abff;
    letter-spacing: 0.1em;
}

.block-subtitle {
    font-family: 'FX300 Angular', sans-serif;
    font-size: 1.1rem;
    color: #000;
    background: #73abff;
    padding: 0 15px;
    display: flex;
    align-items: center;
    border-right: 2px solid #73abff;
    letter-spacing: 0.1em;
}

.block-header-filler {
    flex: 1;
    background: #74abff;
}

.block-icon {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.grid-icon {
    width: 14px;
    height: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.grid-icon span {
    background: #74abff;
}

.block-content {
    display: flex;
    flex-direction: column;
}

/* --- News --- */
.news-item {
    display: flex;
    border-bottom: 1px solid #73abff;
    padding: 15px;
    gap: 15px;
}

.news-item.border-none {
    border-bottom: none;
}

.news-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #73abff;
}

.news-text {
    flex: 1;
}

.news-text h3 {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.news-text p {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.75rem;
    color: #ccc;
    line-height: 1.4;
}

.block-footer {
    font-family: 'Overused Grotesk', sans-serif;
    padding: 10px 15px;
    font-size: 0.7rem;
    color: #fff;
    border-top: 1px solid #73abff;
}

/* --- Schedule --- */
.schedule-list {
    display: flex;
    flex-direction: column;
}

.schedule-item {
    display: flex;
    border-bottom: 1px solid #73abff;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .time {
    font-family: 'Overused Grotesk', sans-serif;
    width: 70px;
    padding: 8px 15px;
    font-weight: bold;
    border-right: 1px solid #73abff;
    font-size: 0.9rem;
}

.schedule-item .show {
    font-family: 'Overused Grotesk', sans-serif;
    flex: 1;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.schedule-footer {
    font-family: 'Overused Grotesk', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- Partners --- */
.partners-list {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partners-list img {
    width: 100%;
    height: auto;
    border: 1px solid #73abff;
    background: #000;
}

.hero-carousel {
    position: relative;
    width: 100%;
    border-bottom: 2px solid #73abff;
}

.carousel-images {
    display: grid;
}

.hero-carousel img {
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
}

.hero-carousel img.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    cursor: pointer;
}

.left-arrow {
    left: 20px;
    border-right: 15px solid #fff;
}

.right-arrow {
    right: 20px;
    border-left: 15px solid #fff;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
}

.dot.active {
    background: #fff;
}

.schedule-page {
    align-items: stretch;
    background: #000;
    padding: 20px;
    justify-content: flex-start;
}

.schedule-header {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    padding: 15px 20px;
    background: #000;
    border-left: 1px solid #73abff;
    border-right: 1px solid #73abff;
    border-top: 1px solid #73abff;
}

.schedule-tabs-container {
    display: flex;
    align-items: stretch;
    border: 1px solid #73abff;
    background: #000;
    height: 40px;
}

.tab-arrow {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    user-select: none;
    background: #73abff;
}

.schedule-tabs {
    display: flex;
    flex: 1;
}

.schedule-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.2rem;
    border-left: 2px solid #73abff;
    cursor: pointer;
}

.schedule-tab:last-child {
    border-right: 2px solid #73abff;
}

.schedule-tab.active {
    background: #73abff;
}

.full-schedule-list {
    display: flex;
    flex-direction: column;
}

.full-schedule-item {
    display: flex;
    border-left: 1px solid #73abff;
    border-right: 1px solid #73abff;
    border-bottom: 1px solid #73abff;
    padding: 20px;
    gap: 15px;
}

.schedule-img-wrap {
    width: 200px;
    flex-shrink: 0;
}

.schedule-img-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #222;
}

.schedule-time {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    width: 50px;
    flex-shrink: 0;
    padding-top: 0px;
}

.schedule-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.schedule-text h3 {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: #fff;
    font-weight: bold;
}

.schedule-text h3.is-new {
    color: #73abff;
}

.schedule-text h4 {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 6px;
    font-weight: normal;
}

.schedule-text p {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.3;
    max-width: 500px;
}

.schedule-rating {
    flex-shrink: 0;
}

.rating-box {
    border: 1px solid #fff;
    border-radius: 2px;
    padding: 2px;
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    width: 22px;
    color: #fff;
}

.schedule-footer-bar {
    padding: 15px 20px;
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    border-left: 1px solid #73abff;
    border-right: 1px solid #73abff;
    border-bottom: 1px solid #73abff;
}

.blue-text {
    color: #73abff;
}

@media (max-width: 768px) {
    .full-schedule-item {
        flex-direction: column;
        gap: 10px;
    }

    .schedule-time {
        width: auto;
    }

    .schedule-img-wrap {
        width: 100%;
    }
}

/* --- News Page --- */
.main-content.news-page {
    padding: 0;
    justify-content: flex-start;
}

.news-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 250px;
    max-height: 380px;
    overflow: hidden;
    border-bottom: 1px solid #73abff;
    border-left: 1px solid #73abff;
    border-right: 1px solid #73abff;
    margin: 0;
}

.news-hero-images {
    display: grid;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.news-hero-slide {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
}

.news-hero-slide.active {
    opacity: 1;
}

.news-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 20px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.news-hero-date {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.85rem;
    color: #ccc;
    font-weight: 500;
}

.news-hero-title {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    max-width: 80%;
}

.news-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    z-index: 10;
    user-select: none;
    transition: background 0.2s, color 0.2s;
}

.news-hero-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #73abff;
}

.news-hero-arrow.left-arrow {
    left: 20px;
}

.news-hero-arrow.right-arrow {
    right: 20px;
}

.news-hero-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.news-hero-dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s;
}

.news-hero-dot.active {
    background: #fff;
}

/* Two Columns for News Page */
.news-columns {
    display: flex;
    width: 100%;
    background: #000;
    border-left: 1px solid #73abff;
    border-right: 1px solid #73abff;
    border-bottom: 1px solid #73abff;
}

.news-sidebar {
    width: 250px;
    flex-shrink: 0;
    border-right: 1px solid #73abff;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-sidebar-title {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.05em;
    margin: 0 0 5px 0;
}

.news-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-filter-label {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.8rem;
    color: #ccc;
    font-weight: normal;
}

.news-filter-select {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: 1px solid #73abff;
    padding: 8px 12px;
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.9rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2373abff'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
    outline: none;
    border-radius: 0;
}

.news-filter-select:focus {
    border-color: #fff;
}

.news-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-center-item {
    display: flex;
    border-bottom: 1px solid #73abff;
    padding: 25px;
    gap: 25px;
    align-items: center;
    transition: background-color 0.2s;
}

.news-center-item:last-child {
    border-bottom: none;
}

.news-center-item:hover {
    background-color: rgba(115, 171, 255, 0.03);
}

.news-thumb-wrap {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border: 1px solid #73abff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.news-thumb-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

.news-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-date {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.8rem;
    color: #888;
}

.news-title-link {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.news-title-link:hover {
    color: #73abff;
}

.news-title-link span.arrow {
    color: #73abff;
    transition: transform 0.2s;
    display: inline-block;
}

.news-title-link:hover span.arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .news-hero {
        aspect-ratio: 16 / 9;
    }
    
    .news-hero-title {
        font-size: 1.3rem;
        max-width: 100%;
    }

    .news-columns {
        flex-direction: column;
    }

    .news-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #73abff;
        padding: 20px;
    }

    .news-center-item {
        padding: 20px;
        gap: 15px;
    }

    .news-thumb-wrap {
        width: 90px;
        height: 90px;
        padding: 5px;
    }

    .news-title-link {
        font-size: 1.1rem;
    }
}

/* --- News Article Page --- */
.main-content.article-page {
    padding: 40px 20px 60px;
    align-items: center;
    justify-content: flex-start;
}

.article-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.article-back-link {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: bold;
    color: #73abff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    width: fit-content;
    transition: opacity 0.2s;
}

.article-back-link:hover {
    opacity: 0.8;
}

.article-back-link svg {
    stroke: #73abff;
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.article-title {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 25px 0;
}

.article-image-wrap {
    width: 100%;
    border: 2px solid #73abff;
    overflow: hidden;
    margin-bottom: -2px;
    background: #000;
}

.article-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-body-card {
    background-color: #fff;
    padding: 30px;
    border: 2px solid #73abff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-meta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(115, 171, 255, 0.2);
    padding-bottom: 15px;
}

.article-metadata {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 0.95rem;
    color: #000;
    font-weight: bold;
}

.article-share-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.article-share-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.article-share-btn:hover {
    opacity: 0.7;
}

.article-share-btn i {
    font-size: 1.15rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color:#000;
}

.article-text-content p {
    font-family: 'Overused Grotesk', sans-serif;
    font-size: 1.05rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.6rem;
    }

    .article-body-card {
        padding: 20px;
    }

    .article-text-content p {
        font-size: 0.95rem;
    }
}