/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

/* Header Styles */
.header {
    background-color: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #ddd;
    height: 70px;
}
.header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    margin: 0 auto;
    transition: width 0.3s ease;
    /* Support for dynamic width matching via CSS custom property */
    width: var(--header-container-width, 400px);
  }
.logo-section, .logo-section a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lemon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 50% 50% 50% 70%;
    position: relative;
}

.lemon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: #228b22;
    border-radius: 50%;
}

.chilli {
    width: 12px;
    height: 35px;
    background: linear-gradient(to bottom, #ff4500, #dc143c);
    border-radius: 50px;
    position: relative;
    transform: rotate(-15deg);
}

.chilli::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: #228b22;
    border-radius: 50%;
}

.site-title {
    display: flex;
    flex-direction: column;
}

.site-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
    line-height: 1.2;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
    line-height: 1.2;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    transition: transform 0.3s ease;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

.menu-line {
    width: 20px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(47deg) translate(4px, 4px);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:hover {
    background-color: #f8f9fa;
}

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

.menu-item.first {
    border-radius: 8px 8px 0 0;
}

.menu-item.last {
    border-radius: 0 0 8px 8px;
}

.menu-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Main Content Area */
.main-content {
    flex: 1 1;
    /* overflow-y: auto; */
    background: linear-gradient(135deg, #f7f8fa, #e8f5e8, #fff3e0, #ffeaa7);
    position: relative;
    /* margin-top: 70px; */
    overflow: hidden;
}


.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.1) 8px, transparent 10px),
        radial-gradient(circle at 85% 30%, rgba(255, 69, 0, 0.1) 6px, transparent 8px),
        radial-gradient(circle at 25% 60%, rgba(255, 215, 0, 0.08) 7px, transparent 9px),
        radial-gradient(circle at 75% 80%, rgba(255, 69, 0, 0.08) 5px, transparent 7px),
        radial-gradient(circle at 45% 15%, rgba(255, 215, 0, 0.1) 8px, transparent 10px),
        radial-gradient(circle at 65% 45%, rgba(255, 69, 0, 0.1) 6px, transparent 8px),
        radial-gradient(circle at 35% 85%, rgba(255, 215, 0, 0.08) 7px, transparent 9px),
        radial-gradient(circle at 90% 60%, rgba(240, 227, 223, 0.08) 5px, transparent 7px);
    background-size: 200px 200px, 180px 180px, 220px 220px, 160px 160px, 190px 190px, 170px 170px, 210px 210px, 150px 150px;
    background-position: 0 0, 50px 30px, 100px 80px, 150px 120px, 200px 40px, 250px 100px, 300px 160px, 350px 60px;
    opacity: 0.4;
    z-index: 1;
}

.main-content::after {
    content: '🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️ 🍋 🌶️';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 24px;
    line-height: 60px;
    word-spacing: 40px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
    white-space: pre-wrap;
    overflow: hidden;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.article-container {
    /* padding: 40px 20px; */
    text-align: center;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.article-title {
    font-size: 48px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.characters-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.character {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.chilli-character {
    width: 80px;
    height: 140px;
    background: linear-gradient(to bottom, #ff4500, #dc143c);
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chilli-character::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 15px;
    width: 20px;
    height: 15px;
    background: #228b22;
    border-radius: 50% 50% 50% 70%;
}

.chilli-face {
    color: #333;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.eyes {
    display: flex;
    gap: 8px;
}

.eye {
    width: 6px;
    height: 12px;
    background: #333;
    border-radius: 50%;
}

.mouth {
    width: 8px;
    height: 8px;
    border: 2px solid #333;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.phone {
    position: absolute;
    bottom: -20px;
    left: -15px;
    width: 25px;
    height: 35px;
    background: #333;
    border-radius: 4px;
    transform: rotate(-15deg);
}

.lemon-character {
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lemon-character::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 20px;
    background: #228b22;
    border-radius: 50%;
}

.lemon-face {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lemon-eyes {
    display: flex;
    gap: 10px;
}

.lemon-eye {
    width: 12px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.lemon-mouth {
    width: 20px;
    height: 6px;
    border: 2px solid #333;
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.sign {
    background: #f5f5dc;
    padding: 15px;
    border: 3px solid #8b4513;
    border-radius: 8px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    margin-left: 20px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.article-text {
    color: #2c3e50;
    font-size: 18px;
    line-height: 1.5;
    max-width: 800px;
    text-align: left;
    background: rgba(255,255,255,0.8);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.virus-icons {
    position: absolute;
    font-size: 30px;
    color: rgba(255,255,255,0.3);
}

.virus-1 { top: 20%; left: 10%; }
.virus-2 { top: 30%; right: 15%; }
.virus-3 { bottom: 25%; left: 20%; }



/* Responsive Design */
@media (max-width: 768px) {

    .tagline {
        font-size: 11px;
    }

    .dropdown-menu {
        min-width: 140px;
        right: -5px;
    }

    .about-modal-content {
        margin: 10px;
        max-height: 90vh;
    }

    .about-modal-header {
        padding: 16px 20px;
    }

    .about-modal-header h2 {
        font-size: 20px;
    }

    .about-modal-body {
        padding: 20px;
    }

    .article-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .characters-container {
        gap: 20px;
        margin-bottom: 30px;
    }

    .chilli-character {
        width: 60px;
        height: 100px;
    }

    .lemon-character {
        width: 80px;
        height: 90px;
    }

    .sign {
        font-size: 14px;
        padding: 12px;
        margin-left: 10px;
    }

    .article-text {
        font-size: 16px;
        padding: 20px;
    }

    .footer-actions {
        gap: 15px;
    }

}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .site-name {
        font-size: 18px;

    }

    .dropdown-menu {
        min-width: 140px;
        right: -5px;
    }

    .menu-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .about-modal {
        padding: 10px;
    }

    .about-modal-content {
        margin: 0;
        border-radius: 8px;
    }

    .about-modal-header {
        padding: 12px 16px;
    }

    .about-modal-header h2 {
        font-size: 18px;
    }

    .about-modal-body {
        padding: 16px;
    }

    .about-modal-body h3 {
        font-size: 18px;
    }

    .about-modal-body h4 {
        font-size: 15px;
    }

    .article-title {
        font-size: 28px;
    }

    .characters-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .sign {
        font-size: 12px;
        padding: 10px;
        margin-left: 0;
        margin-top: 10px;
    }

    .article-text {
        font-size: 14px;
        padding: 15px;
    }
}

/* News Images Styles */
.news-images-container {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-images-title {
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.news-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 25px;
    gap: 25px;
}

.news-image-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.news-image-card:hover {
    transform: translateY(-5px);
}

.news-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image {
    transition: transform 0.3s ease;
}

.news-image-card:hover .news-image {
    transform: scale(1.05);
}

.news-image-title {
    padding: 15px 15px 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.news-image-caption {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loading, .error-message {
    text-align: center;
    padding: 50px 20px;
    font-size: 18px;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
}

.error-message {
    color: #ff6b6b;
}

/* Responsive design for news images */
@media (max-width: 768px) {
    .news-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .news-images-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .news-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-images-title {
        font-size: 24px;
    }
    
    .news-image-wrapper {
        height: 180px;
    }
}

/* News Slideshow Styles */
.news-slideshow-container {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-slideshow-title {
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.news-slideshow {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.slide-content {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.slide-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 300px;
}

.slide-nav {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slide-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.slide-nav.prev {
    left: 10px;
}

.slide-nav.next {
    right: 10px;
}

.slide-text {
    width: 100%;
    padding: 0 20px;
}

.slide-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.slide-caption {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-indicator.active {
    background-color: #fff;
}

/* Responsive design for slideshow */
@media (max-width: 768px) {
    .news-slideshow-title {
        font-size: 28px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-caption {
        font-size: 14px;
    }
    
    .slide-image-container {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .news-slideshow-title {
        font-size: 24px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    .slide-caption {
        font-size: 13px;
    }
    
    .slide-image-container {
        min-height: 200px;
    }
    
    .slide-nav {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* Vertical News Styles */
.news-vertical-container {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: #000; */
    overflow: hidden;
}
@media (max-width: 480px) {
    .news-vertical-container {
        top: 55px;
    }
}

.news-vertical-title {
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.news-vertical-list {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.news-vertical-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.vertical-news-item {
    /* height: calc(100vh - 40px); */
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.vertical-news-item:last-child {
    margin-bottom: 60px;
}



.vertical-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    align-self: flex-start;
}

.vertical-image-container img {
    max-width: 100%;
    max-height: 95%;
    height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: contain;
}

.vertical-text {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

.vertical-title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.vertical-caption {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Pagination Indicators */
.pagination-indicators {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
    display: none;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: white;
    transform: scale(1.3);
}

/* Responsive design for vertical news */
@media (max-width: 768px) {
    .news-vertical-title {
        font-size: 28px;
    }
    
    .vertical-title {
        font-size: 20px;
    }
    
    .vertical-caption {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .news-vertical-title {
        font-size: 24px;
    }
    
    .vertical-title {
        font-size: 18px;
    }
    
    .vertical-caption {
        font-size: 13px;
    }
    
    .pagination-indicators {
        right: 10px;
    }
    
    .pagination-dot {
        width: 10px;
        height: 10px;
    }
}

/* Download Button Styles */
.download-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1a73e8;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #1557b0;
    transform: scale(1.05);
}

.download-button.active {
    animation: pulse 1.5s infinite;
    background-color: #34a853;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
    }
}

/* Download Spinner */
.download-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Download Notification */
.download-notification {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #323232;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease-out forwards;
}

.download-notification.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .download-button {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .download-notification {
        bottom: 70px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .download-button {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
    
    .download-notification {
        bottom: 60px;
        right: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }
}


/* Share notification styles */
.share-notification {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #323232;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease-out forwards;
}

.share-notification.error {
    background-color: #e03131;
}

.share-notification.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@media (max-width: 768px) {
    .share-notification {
        bottom: 70px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }


    .header-container{
        padding: 0;
    }
}

@media (max-width: 480px) {

    .share-notification {
        bottom: 60px;
        right: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* About Us Modal Styles */
.about-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
    padding: 20px;
}

.about-modal.fade-out {
    animation: fadeOut 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.about-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.about-modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.about-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.about-modal-close:hover {
    background-color: #f5f5f5;
}

.about-modal-body {
    padding: 24px;
}

.about-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about-modal-body .lemon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 50% 50% 50% 70%;
    position: relative;
}

.about-modal-body .lemon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: #228b22;
    border-radius: 50%;
}

.about-modal-body .chilli {
    width: 12px;
    height: 40px;
    background: linear-gradient(to bottom, #ff4500, #dc143c);
    border-radius: 50px;
    position: relative;
    transform: rotate(-15deg);
}

.about-modal-body .chilli::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: #228b22;
    border-radius: 50%;
}

.about-modal-body h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

.about-modal-body h4 {
    color: #333;
    margin: 20px 0 10px 0;
    font-size: 16px;
}

.about-modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-modal-body ul {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 20px;
}

.about-modal-body li {
    margin-bottom: 8px;
}

.about-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.about-footer p {
    margin: 0;
    font-size: 14px;
    color: #999;
}
