/* Article Page Styles */

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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Thunder LC', sans-serif;
    overflow-x: hidden;
}

/* Navigation */
.article-nav {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
}

.article-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.article-back:hover {
    opacity: 0.7;
}

.article-back svg {
    width: 20px;
    height: 20px;
}

/* Article Container */
.article-container {
    width: 100%;
    min-height: 100vh;
}

/* Hero Section */
.article-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.article-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
}

.article-title {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(2.5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.article-date,
.article-category {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem;
    position: relative;
}

/* Illustration */
.article-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
}

.article-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Pullquote with illustration */
.article-pullquote {
    position: relative;
    overflow: visible;
}

.article-intro {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.article-lead {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #fff;
}

.article-body {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.article-body p {
    margin-bottom: 2rem;
}

.article-body em {
    font-style: italic;
    color: #FFA407;
    font-weight: 600;
}

/* Pullquote */
.article-pullquote {
    margin: 4rem 0;
    padding: 3rem 2rem;
    border-left: 4px solid #FFA407;
    background: rgba(255, 164, 7, 0.1);
}

.article-pullquote p {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
    font-style: italic;
}

/* Illustration */
.article-illustration {
    margin: 4rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.article-illustration img {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Image Break */
.article-image-break {
    margin: 5rem 0;
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.article-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFA407 0%, #ff4e08 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-text {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    text-align: center;
    padding: 2rem;
}

/* Conclusion */
.article-conclusion {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.conclusion-text {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
    font-style: italic;
}

/* Related Articles Marquee */
.related-articles-marquee {
    width: 100%;
    padding: 5rem 0;
    background-color: #000;
    margin: 5rem 0 0 0;
    overflow: hidden;
}

.related-articles-title {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.related-articles-scroll {
    width: 100%;
    overflow: hidden;
}

.related-articles-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
    animation: related-articles-scroll 40s linear infinite;
}

@keyframes related-articles-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.related-article-item {
    flex-shrink: 0;
    width: 300px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article-item:hover {
    transform: translateY(-10px);
}

.related-article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-item:hover .related-article-image img {
    transform: scale(1.1);
}

.related-article-title {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.4;
    padding: 0 0.5rem;
}

/* Marquee */
.article-marquee {
    width: 100%;
    overflow: hidden;
    background-color: #FFA407;
    padding: 3rem 0;
    margin: 5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.article-marquee.visible {
    opacity: 1;
    transform: translateY(0);
}

.marquee-wrapper {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-right: 2rem;
}

.marquee-wrapper {
    animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.article-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.article-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 164, 7, 0.2);
    border-color: #FFA407;
}

.article-share {
    font-family: 'Thunder LC', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .article-content {
        padding: 4rem 1.5rem;
    }

    .article-hero-overlay {
        max-width: 95%;
    }

    .article-footer {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

