/* Communist/Soviet-era News Site Styling */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=PT+Serif:wght@400;700&display=swap');

:root {
    --communist-red: #cc0000;
    --dark-red: #990000;
    --gold: #ffd700;
    --cream: #f5f5dc;
    --dark-bg: #1a1a1a;
    --light-red: #ff4444;
    --soviet-gray: #2f2f2f;
}

body {
    font-family: 'PT Serif', 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--soviet-gray) 100%);
    background-attachment: fixed;
    color: var(--cream);
    min-height: 100vh;
}

/* Add Soviet-style border pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--communist-red) 0px,
        var(--communist-red) 20px,
        var(--gold) 20px,
        var(--gold) 40px
    );
    z-index: 1000;
}

#navbar {
    background: linear-gradient(180deg, var(--communist-red) 0%, var(--dark-red) 100%);
    position: fixed;
    top: 8px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--cream);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-bottom: 3px solid var(--gold);
    z-index: 999;
}

#navbar-left {
    padding: 0 20px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

#navbar-left a {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    text-decoration: none;
    color: var(--gold) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

#navbar a {
    color: var(--cream);
    text-decoration: none;
    margin-right: 15px;
    padding: 8px 12px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9em;
}

#navbar a:hover {
    color: var(--gold);
    border: 2px solid var(--gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

#navbar a:last-child {
    margin-right: 0;
}

header {
    margin-top: 80px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    position: relative;
}

/* Add decorative stars around the logo */
header::before,
header::after {
    content: '★';
    position: absolute;
    top: 50%;
    font-size: 2em;
    color: var(--gold);
    transform: translateY(-50%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

header::before {
    left: 10%;
}

header::after {
    right: 10%;
}

main {
    background: linear-gradient(145deg, var(--cream) 0%, #e8e8e8 100%);
    padding: 30px;
    border: 4px solid var(--communist-red);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    margin: 20px;
    color: var(--dark-bg);
    position: relative;
}

/* Add corner decorations */
main::before {
    content: '☭';
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 1.5em;
    color: var(--communist-red);
    background: var(--cream);
    padding: 5px;
    border-radius: 50%;
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr 1fr;
    grid-template-areas:
        "news-ticker main-featured-story secondary-headlines"
        "news-ticker sub-stories-grid sub-stories-grid";
    gap: 25px;
    margin-bottom: 30px;
}

.news-ticker { 
    grid-area: news-ticker;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.main-featured-story { grid-area: main-featured-story; }
.secondary-headlines { 
    grid-area: secondary-headlines; 
    border-left: 1px solid #ddd;
    padding-left: 20px;
}
.sub-stories-grid { 
    grid-area: sub-stories-grid; 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.news-ticker .section-title, 
.secondary-headlines .section-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--communist-red);
    padding-bottom: 8px;
}

.news-ticker ul, .secondary-headlines ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-ticker li, .secondary-headlines li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-ticker a, .secondary-headlines a {
    text-decoration: none;
    color: var(--dark-bg);
    font-family: 'PT Serif', serif;
}

.news-ticker a:hover, .secondary-headlines a:hover {
    color: var(--communist-red);
}

.news-ticker .datestamp {
    display: block;
    font-size: 0.9em;
    color: #555;
    font-weight: bold;
}

.main-featured-story article,
.sub-stories-grid article {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.main-featured-story img,
.sub-stories-grid img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.main-featured-story h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

.main-featured-story p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.sub-stories-grid h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.main-featured-story a,
.sub-stories-grid a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    color: var(--communist-red);
    text-transform: uppercase;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 20px;
}

.main-story article,
.sub-stories article,
.more-stories article {
    background: #fff;
    border: 2px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.main-story article img,
.sub-stories article img,
.more-stories article img {
    width: 100%;
    height: auto;
}

.main-story .article-content,
.sub-stories .article-content,
.more-stories .article-content {
    padding: 15px;
}

.main-story h2 {
    font-size: 2.5em;
    color: var(--dark-bg);
    margin: 0 0 10px 0;
}

.main-story p {
    font-size: 1.1em;
    line-height: 1.6;
}

.sub-stories h3,
.more-stories h3 {
    font-size: 1.4em;
    margin: 0 0 10px 0;
}

.side-stories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-stories li {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.side-stories a {
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}

.side-stories a:hover {
    color: var(--communist-red);
}

.featured-article {
    border-bottom: 4px solid var(--communist-red);
    margin-bottom: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.featured-article::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gold);
}

.featured-article h1 {
    text-align: center;
    font-size: 2.8em;
    color: var(--communist-red);
    width: 100%;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 25px;
    border: 3px solid var(--communist-red);
    padding: 20px;
    background: linear-gradient(45deg, var(--cream) 0%, #f0f0f0 100%);
    line-height: 1.2;
}

.featured-content {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: flex-start;
}

.featured-text {
    width: 65%;
    padding-right: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}

.featured-image {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.featured-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 4px solid var(--communist-red);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.about-featured-article {
    margin: 0 80px;
}

.about-featured-article .featured-image {
    margin-right: 40px;
}

.about-featured-article .featured-content {
    padding: 20px;
}

.featured-text p {
    color: var(--dark-bg);
    text-align: justify;
    white-space: pre-wrap;
    line-height: 1.7;
    font-size: 1.05em;
    margin-bottom: 18px;
    text-indent: 0;
}

.featured-text strong {
    color: var(--communist-red);
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.additional-articles img.article-image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border: 3px solid var(--communist-red);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    max-height: 300px;
    object-fit: cover;
}

.additional-articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

article {
    background: var(--cream);
    padding: 20px;
    margin-bottom: 25px;
    border: 3px solid var(--dark-red);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article::before {
    content: '★';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.4s ease;
    z-index: 1;
}

article img.article-image {
    display: block;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--communist-red);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

h1 {
    color: var(--communist-red);
    text-align: center;
    font-size: 2.8em;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    padding: 10px;
}

h2 {
    color: var(--communist-red);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 6px solid var(--gold);
    padding-left: 15px;
    margin: 25px 0 15px 0;
}

h3 {
    color: var(--dark-red);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    color: var(--dark-bg);
    text-align: justify;
    white-space: pre-wrap;
    line-height: 1.7;
    font-size: 1.0em;
    margin: 0 0 1em 0;
}

.banner {
    width: 100%;
    display: block;
    border: 4px solid var(--communist-red);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    height: auto;
    border-bottom: 4px solid var(--gold);
}

.info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 20px;
    margin: 10px 20px 20px 20px;
    background: linear-gradient(90deg, var(--communist-red) 0%, var(--dark-red) 100%);
    color: var(--cream);
    padding: 15px;
    border: 3px solid var(--gold);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.info-bar > .date {
    justify-self: start;
    font-weight: 600;
}

.info-bar > .category {
    font-weight: 700;
    color: var(--gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.info-bar > .price {
    justify-self: end;
    font-weight: 600;
}

button {
    font-size: 16px;
    padding: 12px 24px;
    background: linear-gradient(145deg, var(--communist-red) 0%, var(--dark-red) 100%);
    color: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 0;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

button:hover {
    background: linear-gradient(145deg, var(--dark-red) 0%, var(--communist-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
}

#navbar-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 0.3s;
    background: transparent;
    padding-right: 40px;
}

#navbar-right.active {
    display: flex;
}

#loading-spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--soviet-gray) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#spinner-and-text {
    text-align: center;
    color: var(--cream);
}

#spinner-and-text p {
    margin-top: 20px;
    font-size: 1.2em;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

#loading-spinner {
    border: 8px solid var(--soviet-gray);
    border-top: 8px solid var(--communist-red);
    border-right: 8px solid var(--gold);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

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

.social-share-buttons a {
    display: inline-block;
    margin: 5px;
    transition: transform 0.3s ease;
}

.social-share-buttons a img {
    width: 30px;
    height: 30px;
    border: 2px solid var(--communist-red);
    border-radius: 4px;
}

.social-share-buttons a:hover {
    transform: scale(1.1);
}

footer {
    background: linear-gradient(180deg, var(--communist-red) 0%, var(--dark-red) 100%);
    color: var(--cream);
    padding: 20px;
    text-align: center;
    border-top: 4px solid var(--gold);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    margin-top: 40px;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: var(--gold);
}

/* Individual Article Page Enhancements */
.single-article-layout .featured-content {
    display: block;
    width: 100%;
}

.single-article-layout .featured-image {
    width: 100%;
    text-align: center;
    margin: 25px 0;
}

.single-article-layout .featured-image img {
    max-width: 600px;
    width: 90%;
    height: auto;
}

.single-article-layout .featured-text {
    width: 100%;
    padding: 0;
    font-size: 1.0em;
    line-height: 1.7;
}

.single-article-layout h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

/* Better article text formatting */
.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.0em;
    line-height: 1.7;
    color: var(--dark-bg);
}

.article-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-meta-info {
    background: linear-gradient(90deg, var(--communist-red) 0%, var(--dark-red) 100%);
    color: var(--cream);
    padding: 12px 20px;
    margin: 20px 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 6px solid var(--gold);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: 1fr 2fr;
        grid-template-areas:
            "main-featured-story main-featured-story"
            "news-ticker secondary-headlines"
            "sub-stories-grid sub-stories-grid";
    }

    .news-ticker {
        border-right: none;
        padding-right: 0;
    }

    .side-stories {
        border-left: none;
        padding-left: 0;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    #navbar {
        flex-direction: column;
        padding: 10px 0;
    }

    header {
        margin-top: 120px;
    }

    header::before,
    header::after {
        display: none;
    }

    .banner {
        max-width: 80%;
    }

    .home-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main-featured-story"
            "news-ticker"
            "secondary-headlines"
            "sub-stories-grid";
        display: block;
    }

    .news-ticker,
    .secondary-headlines {
        border: none;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .sub-stories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-story, .side-stories, .sub-stories, .more-stories {
        margin-bottom: 20px;
    }

    .featured-article h1 {
        font-size: 2em;
        padding: 15px;
    }

    .featured-content {
        flex-direction: column;
    }

    .featured-text,
    .featured-image {
        width: 100%;
    }

    .featured-image {
        margin-bottom: 15px;
    }

    .about-featured-article {
        margin: 0 20px;
    }

    .about-featured-article .featured-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .about-featured-article .featured-content {
        padding: 10px;
    }

    .featured-image img {
        max-width: 100%;
    }

    .featured-content, .additional-articles, article {
        flex-direction: column;
    }

    article {
        margin-bottom: 20px;
    }

    .hamburger {
        display: block;
    }

    #navbar-right {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: var(--communist-red);
        display: none;
        padding: 0;
        border-top: 2px solid var(--gold);
    }

    #navbar-right.active {
        display: flex;
    }

    #navbar-right a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--dark-red);
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .info-bar {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 10px;
        padding: 10px;
    }

    .info-bar > .date,
    .info-bar > .price {
        justify-self: center;
    }

    .single-article-view {
        margin: 10px;
        padding: 15px;
    }

    .single-article-view h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 3em;
        color: var(--dark-bg);
        margin-bottom: 0.5em;
    }

    .single-article-view .article-meta-info {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .single-article-view .article-image-full {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border: 2px solid var(--dark-red);
    }

    .single-article-view .article-body p {
        font-size: 1.1em;
        line-height: 1.8;
        color: var(--dark-bg);
        text-align: justify;
    }

    .single-article-layout .featured-content {
        flex-direction: column;
    }

    .single-article-layout .featured-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .single-article-layout .featured-image img {
        max-width: 100%;
    }

    .single-article-layout .featured-text {
        width: 100%;
        padding-right: 0;
    }

    .single-article-layout h1 {
        font-size: 2.5em;
    }

    .article-body {
        font-size: 1.1em;
        line-height: 1.8;
        color: #333;
    }

    .article-body p {
        margin-bottom: 1.5em;
    }

    .article-meta-info {
        margin-bottom: 20px;
        font-size: 0.9em;
        color: #666;
    }
}

/* Enhanced Individual Article Styling */
.single-article-view {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: var(--cream);
    border: 2px solid var(--communist-red);
}

.single-article-view::before {
    content: '☭';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2em;
    color: var(--communist-red);
    background: var(--cream);
    padding: 10px;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.article-category-banner {
    background: linear-gradient(90deg, var(--communist-red) 0%, var(--dark-red) 100%);
    color: var(--cream);
    padding: 15px 25px;
    margin: -40px -40px 30px -40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    border-bottom: 4px solid var(--gold);
    position: relative;
}

.article-category-banner::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 25px;
    border-top: 2px solid var(--communist-red);
    border-bottom: 2px solid var(--communist-red);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--dark-red);
}

.article-date {
    font-size: 1.1em;
    color: var(--communist-red);
    font-weight: 600;
}

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

.article-content {
    font-size: 1.05em;
    line-height: 1.7;
    text-align: justify;
}

.article-content p {
    margin-bottom: 18px;
    color: var(--dark-bg);
    font-size: 1.05em;
}

.article-content strong {
    color: var(--communist-red);
    font-weight: 700;
}

.article-image-container {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.article-image-container img {
    max-width: 100%;
    border: 4px solid var(--communist-red);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.article-image-caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--dark-red);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

/* Enhanced Share Buttons for Articles */
.article-share-section {
    background: linear-gradient(135deg, var(--gold) 0%, #e6c200 100%);
    padding: 25px;
    margin: 40px -40px -40px -40px;
    text-align: center;
    border-top: 4px solid var(--communist-red);
}

.article-share-section h3 {
    color: var(--dark-bg);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
}

.article-share-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.article-share-buttons img {
    width: 35px;
    height: 35px;
    border: 2px solid var(--communist-red);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.article-share-buttons a:hover img {
    transform: scale(1.1);
}

/* Load More Button Styling */
#loadMoreButton {
    background: linear-gradient(145deg, var(--communist-red) 0%, var(--dark-red) 100%);
    color: var(--cream);
    border: 3px solid var(--gold);
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px auto;
    display: block;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

#loadMoreButton::before {
    content: '⚡';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--gold);
    transition: left 0.3s ease;
}

#loadMoreButton:hover::before {
    left: 10px;
}

#loadMoreButton:hover {
    background: linear-gradient(145deg, var(--dark-red) 0%, var(--communist-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    padding-left: 50px;
}

#loadMoreButton:disabled {
    background: var(--soviet-gray);
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#loadMoreButton:disabled::before {
    content: '✓';
    left: 10px;
    color: #999;
}

/* Enhanced Article Cards in Grid */
.additional-articles article {
    transition: all 0.3s ease;
    cursor: pointer;
}

.additional-articles article:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.additional-articles article:hover::before {
    animation: spin 0.5s ease-in-out;
}

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

/* Article Link Styling */
.additional-articles article a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.additional-articles article h2:hover {
    color: var(--light-red);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Category-specific Article Styling */
.politics-article {
    border-left: 8px solid #8B0000;
}

.science-article {
    border-left: 8px solid #4A90E2;
}

.entertainment-article {
    border-left: 8px solid #F39C12;
}

.sports-article {
    border-left: 8px solid #27AE60;
}

.international-article {
    border-left: 8px solid #8E44AD;
}

.travel-article {
    border-left: 8px solid #E67E22;
}

.weather-article {
    border-left: 8px solid #3498DB;
}

/* About Page Specific Enhancements */
.about-featured-article .achievement-box {
    position: relative;
    overflow: hidden;
}

.about-featured-article .achievement-box::before {
    content: '🏆';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    color: var(--gold);
}

.about-featured-article .tourism-section {
    position: relative;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 8px rgba(204, 0, 0, 0.3);
    }
    to {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    }
}

/* Force override for navbar styles */
#navbar-container #navbar {
    padding: 8px 0 !important;
}

#navbar-container #navbar #navbar-left {
    padding: 0 20px !important;
    white-space: nowrap !important;
}

#navbar-container #navbar #navbar-left a {
    font-size: 1.4em !important;
    letter-spacing: 1px !important;
}

#navbar-container #navbar a {
    font-size: 0.85em !important;
    padding: 6px 10px !important;
    margin-right: 12px !important;
    letter-spacing: 0.5px !important;
}

#navbar a:last-child {
    margin-right: 0;
}


