
    /* ============================================
   NEWS SINGLE PAGE STYLES
   ============================================ */

/* Back Button */
.back-button {
    position: fixed;
    top: 6rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(59, 68, 75, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 68, 75, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
}

.back-button i {
    transition: transform 0.3s ease;
}

.back-button:hover {
    background: rgba(59, 68, 75, 0.2);
    border-color: #3B444B;
    transform: translateX(-5px);
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* Article Hero */
.article-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.article-hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.3) 0%, 
        rgba(10, 10, 10, 0.7) 70%,
        rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.article-category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 68, 75, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
}

.article-main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 6px;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.article-hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0;
}

.article-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-hero-meta i {
    color: #3B444B;
}

/* Main Article Container */
.article-main {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 4rem;
    position: relative;
}

/* Share Sidebar */
.article-share-sidebar {
    position: sticky;
    top: 8rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
}

.share-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.share-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 68, 75, 0.3);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #3B444B;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.share-link:hover::before {
    width: 100%;
    height: 100%;
}

.share-link:hover {
    border-color: #3B444B;
    transform: translateY(-3px);
}

/* Article Content */
.article-content {
    max-width: 800px;
    opacity: 0;
}

.article-intro {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.9;
    opacity: 0.9;
    font-weight: 300;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #3B444B;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 2;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

/* Featured Image */
.article-figure {
    margin: 4rem 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.article-figure video {
    width: 100%;
    height: auto;
    display: block;
}

.article-figure figcaption {
    padding: 1.5rem;
    background: rgba(59, 68, 75, 0.1);
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Quote Block */
.article-quote {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(59, 68, 75, 0.05);
    border-left: 4px solid #3B444B;
    border-radius: 10px;
    position: relative;
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    font-family: serif;
    color: rgba(59, 68, 75, 0.2);
    line-height: 1;
}

.article-quote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.article-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #3B444B;
    margin-top: 1rem;
}

/* Gallery Grid */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover video {
    transform: scale(1.1);
}

/* Tags */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
}

.tag-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

.article-tag {
    padding: 0.5rem 1.2rem;
    background: rgba(59, 68, 75, 0.1);
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: rgba(59, 68, 75, 0.2);
    border-color: #3B444B;
    transform: translateY(-2px);
}

/* Author Bio */
.article-author {
    display: flex;
    gap: 2rem;
    padding: 3rem;
    background: rgba(59, 68, 75, 0.05);
    border-radius: 20px;
    margin-top: 4rem;
}

.author-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3B444B;
}

.author-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #3B444B;
}

.author-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.author-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 68, 75, 0.3);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: #3B444B;
    border-color: #3B444B;
    transform: translateY(-3px);
}

/* Related Articles */
.related-articles {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.related-container {
    max-width: 1400px;
    margin: 0 auto;
}

.related-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 6px;
    color: #3B444B;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.related-card {
    background: rgba(59, 68, 75, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(59, 68, 75, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 68, 75, 0.3);
    border-color: rgba(59, 68, 75, 0.3);
}

.related-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.related-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image video {
    transform: scale(1.1);
}

.related-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 68, 75, 0.95);
    backdrop-filter: blur(10px);
    font-size: 0.7rem;
    letter-spacing: 2px;
    border-radius: 20px;
    z-index: 2;
}

.related-content {
    padding: 2rem;
}

.related-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.related-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #3B444B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-link i {
    transition: transform 0.3s ease;
}

.related-card:hover .related-link {
    gap: 1rem;
}

.related-card:hover .related-link i {
    transform: translateX(5px);
}

/* Newsletter - Reuse from news.css */
.newsletter-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d12 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3B444B, transparent);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content {
    margin-bottom: 3rem;
}

.newsletter-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 6px;
    margin-bottom: 1rem;
    color: #3B444B;
}

.newsletter-desc {
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1.2rem 2rem;
    background: rgba(59, 68, 75, 0.1);
    border: 2px solid rgba(59, 68, 75, 0.3);
    border-radius: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #3B444B;
    background: rgba(59, 68, 75, 0.15);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 1.2rem 3rem;
    background: #3B444B;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-share-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        margin-bottom: 2rem;
    }

    .share-label {
        writing-mode: horizontal-tb;
        margin-bottom: 0;
        margin-right: 1rem;
    }
}

@media (max-width: 768px) {
    .back-button {
        top: 5rem;
        left: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .back-button span {
        display: none;
    }

    .article-hero {
        height: 60vh;
        min-height: 400px;
        padding: 2rem 1.5rem;
    }

    .article-main {
        padding: 4rem 1.5rem;
    }

    .article-gallery {
        grid-template-columns: 1fr;
    }

    .article-author {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .article-main-title {
        font-size: 2rem;
    }

    .article-section h2 {
        font-size: 1.8rem;
    }

    .article-quote {
        padding: 2rem 1.5rem;
    }

    .article-quote p {
        font-size: 1.1rem;
    }
}

/* ============================================
   ENHANCED ARTICLE CONTENT STYLES
   ============================================ */

/* Article Content Container */
.article-content {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.article-intro {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
}

.article-lead {
    font-size: 1.4rem;
    line-height: 1.9;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* First Paragraph - Drop Cap */
.article-content > p:first-of-type::first-letter {
    float: left;
    font-size: 5rem;
    line-height: 0.8;
    margin: 0.1em 0.2em 0 0;
    font-family: 'Bebas Neue', sans-serif;
    color: #3B444B;
}

/* Paragraphs */
.article-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.88);
    text-align: justify;
}

/* Images in Article */
.article-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    display: block;
}

.article-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* Image with Caption */
.article-content p:has(> img) {
    position: relative;
    text-align: center;
    margin: 4rem 0;
}

.article-content p > img + text,
.article-content p > img ~ text {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Better approach - wrap images in figure */
.article-content figure {
    margin: 4rem 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(59, 68, 75, 0.05);
}

.article-content figure img {
    margin: 0;
    border-radius: 0;
    display: block;
    width: 100%;
    height: auto;
}

.article-content figcaption {
    padding: 1.5rem;
    background: rgba(59, 68, 75, 0.1);
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
}

/* Links */
.article-content a {
    color: #4ec1c2;
    text-decoration: none;
    border-bottom: 1px solid rgba(78, 193, 194, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.article-content a:hover {
    color: #6dd9da;
    border-bottom-color: #6dd9da;
}

.article-content a[target="_blank"]::after {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    margin-left: 0.3rem;
    opacity: 0.5;
}

/* Strong & Bold Text */
.article-content strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}

/* Italic Text */
.article-content em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* Headings in Content */
.article-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin: 4rem 0 2rem;
    color: #3B444B;
    line-height: 1.2;
    position: relative;
    padding-left: 1.5rem;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(to bottom, #3B444B, transparent);
}

.article-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 3rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Lists */
.article-content ul,
.article-content ol {
    margin: 2rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.article-content ul li::marker {
    color: #3B444B;
}

.article-content ol li::marker {
    color: #3B444B;
    font-weight: 600;
}

/* Blockquotes */
.article-content blockquote {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(59, 68, 75, 0.05);
    border-left: 4px solid #3B444B;
    border-radius: 10px;
    position: relative;
}

.article-content blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    font-family: serif;
    color: rgba(59, 68, 75, 0.2);
    line-height: 1;
}

.article-content blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.article-content blockquote cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #3B444B;
    margin-top: 1rem;
}

/* Code blocks */
.article-content pre {
    background: rgba(59, 68, 75, 0.1);
    padding: 2rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(59, 68, 75, 0.2);
}

.article-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #4ec1c2;
}

.article-content p code {
    background: rgba(59, 68, 75, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Horizontal Rule */
.article-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 68, 75, 0.3), transparent);
    margin: 4rem 0;
}

/* Table Styles */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    background: rgba(59, 68, 75, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.article-content table thead {
    background: rgba(59, 68, 75, 0.2);
}

.article-content table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 1px;
    color: #3B444B;
}

.article-content table td {
    padding: 1rem;
    border-top: 1px solid rgba(59, 68, 75, 0.1);
}

.article-content table tr:hover {
    background: rgba(59, 68, 75, 0.1);
}

/* Image Gallery Grid */
.article-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.article-image-grid img {
    margin: 0;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Pull Quote */
.pull-quote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    color: #3B444B;
    text-align: center;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
    line-height: 1.6;
}

/* Info Box / Callout */
.info-box {
    padding: 2rem;
    background: rgba(78, 193, 194, 0.1);
    border-left: 4px solid #4ec1c2;
    border-radius: 10px;
    margin: 3rem 0;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Warning Box */
.warning-box {
    padding: 2rem;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: 10px;
    margin: 3rem 0;
}

/* Success Box */
.success-box {
    padding: 2rem;
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4caf50;
    border-radius: 10px;
    margin: 3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-content {
        font-size: 1rem;
    }
    
    .article-lead {
        font-size: 1.2rem;
    }
    
    .article-content > p:first-of-type::first-letter {
        font-size: 3.5rem;
    }
    
    .article-content h2 {
        font-size: 2rem;
        margin: 3rem 0 1.5rem;
        padding-left: 1rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .article-content img {
        margin: 2rem 0;
        border-radius: 10px;
    }
    
    .article-content blockquote {
        padding: 2rem 1.5rem;
    }
    
    .article-content blockquote::before {
        font-size: 4rem;
        left: 1rem;
    }
    
    .article-content blockquote p {
        font-size: 1.1rem;
    }
    
    .pull-quote {
        font-size: 1.4rem;
    }
    
    .article-image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-content p {
        text-align: left;
    }
    
    .article-content > p:first-of-type::first-letter {
        float: none;
        font-size: inherit;
        margin: 0;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
    }
}
