/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-yellow: #ffd525;
    --color-green: #35d388;
    --color-pink: #fc0067;
    --color-purple: #ab21f4;
    --color-dark: #1a1a1a;
    --color-gray: #6b7280;
    --color-light-gray: #f3f4f6;
    --color-white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.slide img,
.today-image img,
.today-image-small img,
.video-image img,
.feed-image img,
.news-image img,
.featured-image img,
.trending-image img,
.gallery-card img,
.media-visual img,
.media-featured-image img,
.photo-wrapper img,
.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-light-gray);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-gray);
    transition: var(--transition);
    background: var(--color-light-gray);
}

.social-link:hover {
    background: var(--color-pink);
    color: var(--color-white);
    transform: translateY(-2px);
}

.phone-link {
    background: linear-gradient(135deg, var(--color-green), var(--color-yellow));
    color: var(--color-white);
}

.phone-link:hover {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-green));
    color: var(--color-white);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-purple));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-pink);
}

.header-actions {
    display: flex;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none; /* Hidden by default, shown on mobile via responsive.css */
    background: transparent;
    border: none;
    cursor: pointer;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-dark);
    background: transparent;
    border: none;
    cursor: pointer;
}

.search-btn:hover {
    background: var(--color-light-gray);
    color: var(--color-pink);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--color-dark);
    padding: 0 !important;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(199 119 156 / 33%) 0%, rgb(199 119 156 / 43%) 70%, rgb(199 119 156 / 88%) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 2;
    color: var(--color-white);
}

.slide-content .category-badge {
    position: static !important;
    margin-bottom: 20px;
    display: block;
    width: fit-content;
}

.slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.slide-title a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.slide-title a:hover {
    opacity: 0.8;
}

.slide-content .news-author {
    margin-top: 20px;
}

.slide-content .news-author .author-avatar {
    width: 44px !important;
    height: 44px !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.slide-content .news-author .author-name {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
}

.slide-content .news-author .publish-date {
    color: rgba(255, 255, 255, 0.8);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-white);
    width: 32px;
    border-radius: 6px;
}

/* Main Content */
.main {
    background: var(--color-light-gray);
}

/* Section Common Styles */
section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-pink);
    transition: var(--transition);
}

.section-link:hover {
    color: var(--color-purple);
    transform: translateX(4px);
}

/* Latest News Section */
.section-latest {
    background: var(--color-white);
}

.news-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Featured News */
.featured-news {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    transition: var(--transition);
}

.featured-news:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.featured-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-content {
    padding: 32px;
}

.featured-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--color-dark);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--shadow-md);
}

.category-wow {
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    color: var(--color-white);
}

.category-art {
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    color: var(--color-white);
}

.category-olay {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-green));
    color: var(--color-dark);
}

.category-music {
    background: linear-gradient(135deg, var(--color-green), var(--color-yellow));
    color: var(--color-dark);
}

.category-interview {
    background: linear-gradient(135deg, var(--color-pink), var(--color-yellow));
    color: var(--color-white);
}

/* Category colors by ID (1-20) */
.category-1 {
    background: linear-gradient(135deg, #FF6B9D, #C44569);
    color: var(--color-white);
}

.category-2 {
    background: linear-gradient(135deg, #FFA502, #FF6348);
    color: var(--color-white);
}

.category-3 {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: var(--color-white);
}

.category-4 {
    background: linear-gradient(135deg, #A29BFE, #6C5CE7);
    color: var(--color-white);
}

.category-5 {
    background: linear-gradient(135deg, #FD79A8, #E84393);
    color: var(--color-white);
}

.category-6 {
    background: linear-gradient(135deg, #FDCB6E, #E17055);
    color: var(--color-dark);
}

.category-7 {
    background: linear-gradient(135deg, #74B9FF, #0984E3);
    color: var(--color-white);
}

.category-8 {
    background: linear-gradient(135deg, #55EFC4, #00B894);
    color: var(--color-dark);
}

.category-9 {
    background: linear-gradient(135deg, #A29BFE, #74B9FF);
    color: var(--color-white);
}

.category-10 {
    background: linear-gradient(135deg, #FF7675, #D63031);
    color: var(--color-white);
}

.category-11 {
    background: linear-gradient(135deg, #DFE6E9, #636E72);
    color: var(--color-dark);
}

.category-12 {
    background: linear-gradient(135deg, #FD79A8, #FDCB6E);
    color: var(--color-white);
}

.category-13 {
    background: linear-gradient(135deg, #00B894, #00CEC9);
    color: var(--color-white);
}

.category-14 {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    color: var(--color-white);
}

.category-15 {
    background: linear-gradient(135deg, #E17055, #FDCB6E);
    color: var(--color-white);
}

.category-16 {
    background: linear-gradient(135deg, #0984E3, #74B9FF);
    color: var(--color-white);
}

.category-17 {
    background: linear-gradient(135deg, #E84393, #FD79A8);
    color: var(--color-white);
}

.category-18 {
    background: linear-gradient(135deg, #00CEC9, #55EFC4);
    color: var(--color-dark);
}

.category-19 {
    background: linear-gradient(135deg, #636E72, #2D3436);
    color: var(--color-white);
}

.category-20 {
    background: linear-gradient(135deg, #FF6348, #FFA502);
    color: var(--color-white);
}

/* News Author */
.news-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-light-gray);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.publish-date {
    font-size: 13px;
    color: var(--color-gray);
}

/* News Meta (old style, keeping for backward compatibility) */
.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-gray);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: #c7779c26;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.news-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-title {
    color: var(--color-pink);
}

/* Trending Section */
.section-trending {
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    color: var(--color-white);
}

.section-trending .section-title {
    color: var(--color-white);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.trending-card {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

.trending-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.trending-image {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content {
    flex: 1;
}

.trending-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--color-white);
}

.trending-content .news-meta {
    color: rgba(255, 255, 255, 0.8);
}

.trending-content .category-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
}

/* Video Section */
.section-video {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-video .section-title {
    color: var(--color-white);
}

.section-video .section-link {
    color: var(--color-yellow);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.video-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-content {
    padding: 20px;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-content .news-meta {
    color: rgba(255, 255, 255, 0.7);
}

.views {
    font-size: 14px;
}

/* Gallery Section */
.section-gallery {
    background: linear-gradient(135deg, var(--color-green), var(--color-yellow));
}

.section-gallery .section-title {
    color: var(--color-white);
}

.section-gallery .section-link {
    color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

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

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.gallery-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Today's Highlights Section (Combined) */
.section-highlights {
    background: var(--color-white);
    position: relative;
}

.section-highlights .section-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--color-light-gray);
    position: relative;
}

.section-highlights .section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-purple));
}

.section-highlights .section-title {
    color: var(--color-dark);
    font-size: 36px;
    position: relative;
    display: inline-block;
}

.today-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.today-card-large {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.today-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.today-card-large .today-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.today-card-large .today-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.today-card-large:hover .today-image img {
    transform: scale(1.08);
}

.today-content {
    padding: 32px;
    display: flex !important;
    flex-direction: column !important;
    min-height: 200px;
}

.today-title-large {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-dark);
    flex-grow: 0;
    flex-shrink: 0;
}

.today-title-large a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.today-title-large a:hover {
    color: var(--color-pink);
}

.today-content .news-author {
    margin-top: auto !important;
}

.today-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.today-grid-small {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.today-card-small {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.today-card-small:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: transparent;
}

.today-image-small {
    position: relative;
    width: 200px;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
    overflow: hidden;
}

.today-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.today-card-small:hover .today-image-small img {
    transform: scale(1.1);
}

.today-content-small {
    flex: 1;
    padding: 16px 16px 16px 0;
    display: flex !important;
    flex-direction: column !important;
}

.today-title-small {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-dark);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
}

.today-title-small a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.today-title-small a:hover {
    color: var(--color-pink);
}

.today-content-small .news-author {
    margin-top: auto !important;
}

.today-card-small:hover .today-title-small {
    color: var(--color-pink);
}

/* Media Section - VIBRANT REDESIGN */
.section-media {
    background: linear-gradient(135deg,
        #fff5f7 0%,
        #f0f9ff 25%,
        #f0fdf4 50%,
        #fffbeb 75%,
        #fef2f2 100%);
    position: relative;
    overflow: hidden;
}

.section-media::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 0, 103, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.section-media::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(53, 211, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(50px, 50px) scale(1.2); opacity: 0.8; }
}

.section-media .container {
    position: relative;
    z-index: 1;
}

.section-media .section-title {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg,
        var(--color-pink) 0%,
        var(--color-purple) 25%,
        var(--color-green) 50%,
        var(--color-yellow) 75%,
        var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.media-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

/* Featured Video - BIG & BOLD */
.media-featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(252, 0, 103, 0.3),
        0 0 0 1px rgba(252, 0, 103, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-featured:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(252, 0, 103, 0.4),
        0 0 0 2px rgba(252, 0, 103, 0.4);
}

.media-featured-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.media-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.media-featured:hover .media-featured-image img {
    transform: scale(1.15);
}

.featured-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(252, 0, 103, 0.4) 40%,
        rgba(171, 33, 244, 0.8) 100%);
}

.featured-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    cursor: pointer;
}

.media-featured:hover .featured-play {
    transform: translate(-50%, -50%) scale(1.2) rotate(90deg);
}

.media-featured-content {
    padding: 28px 32px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex !important;
    flex-direction: column !important;
    min-height: 180px;
}

.featured-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    width: fit-content;
    flex-grow: 0;
    flex-shrink: 0;
}

.featured-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
    flex-grow: 0;
    flex-shrink: 0;
}

.featured-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.featured-title a:hover {
    opacity: 0.8;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto !important;
}

.featured-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.featured-author-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.featured-date {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Photos Grid - 2x2 */
.media-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.photo-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(53, 211, 136, 0.25);
}

.photo-wrapper {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-item:hover .photo-wrapper img {
    transform: scale(1.2);
}

.photo-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(53, 211, 136, 0.3) 50%,
        rgba(255, 213, 37, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-gradient {
    opacity: 1;
}

.photo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.photo-item:hover .photo-icon {
    transform: translate(-50%, -50%) scale(1);
}

.photo-content {
    padding: 18px;
    display: flex !important;
    flex-direction: column !important;
    min-height: 110px;
}

.photo-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    flex-grow: 0;
    flex-shrink: 0;
}

.photo-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.photo-title a:hover {
    color: var(--color-green);
}

.photo-item:hover .photo-title {
    color: var(--color-green);
}

.photo-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto !important;
}

.photo-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-light-gray);
}

.photo-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray);
}

/* News Feed Section */
.section-feed {
    background: var(--color-white);
}

/* FORCE AUTHOR POSITIONING - VERSION 8 - WORKING */
.today-content,
.today-content-small,
.feed-content,
.photo-content,
.media-featured-content {
    display: flex !important;
    flex-direction: column !important;
    min-height: 180px !important;
}

.today-content {
    min-height: 220px !important;
}

.today-title-large,
.today-title-small,
.feed-title,
.photo-title,
.featured-title {
    flex: 0 0 auto !important;
}

.today-content .news-author,
.today-content-small .news-author,
.feed-content .news-author,
.photo-author,
.featured-author {
    margin-top: auto !important;
    padding-top: 16px !important;
}

.section-feed .gallery-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.section-feed .gallery-icon rect {
    fill: url(#galleryGradient);
}

.feed-card:hover .gallery-icon {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 8px 16px rgba(53, 211, 136, 0.5));
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feed-card {
    background: #c7779c26;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feed-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feed-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.feed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feed-card:hover .feed-image img {
    transform: scale(1.1);
}

.feed-content {
    padding: 24px;
    display: flex !important;
    flex-direction: column !important;
    min-height: 130px;
}

.feed-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
}

.feed-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.feed-title a:hover {
    color: var(--color-pink);
}

.feed-card:hover .feed-title {
    color: var(--color-pink);
}

.feed-content .news-author {
    margin-top: auto !important;
}

.feed-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pagination-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-white);
    border: 2px solid var(--color-light-gray);
    transition: var(--transition);
}

.pagination-btn:hover:not(:disabled) {
    background: var(--color-pink);
    color: var(--color-white);
    border-color: var(--color-pink);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-num {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-white);
    border: 2px solid var(--color-light-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-num:hover {
    background: var(--color-light-gray);
    transform: translateY(-2px);
}

.pagination-num.active {
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    color: var(--color-white);
    border-color: transparent;
}

.pagination-dots {
    padding: 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-yellow);
}

.footer-copy {
    text-align: right;
}

.footer-copy p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.footer-credit {
    font-size: 12px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 24px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .featured-image {
        height: 300px;
    }

    .featured-title {
        font-size: 24px;
    }
}

/* ============================================
   CATEGORY PAGE STYLES
   ============================================ */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--color-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item:hover {
    color: #c7779c;
}

.breadcrumb-item.active {
    color: var(--color-dark);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--color-gray);
    opacity: 0.4;
    display: flex;
    align-items: center;
}

/* Category Hero */
.category-hero {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: linear-gradient(135deg,
        #fff5f7 0%,
        #f0f9ff 25%,
        #f0fdf4 50%,
        #fffbeb 75%,
        #fef2f2 100%);
}

.category-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.category-hero-bg::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(252, 0, 103, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.category-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(171, 33, 244, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

.category-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.category-icon-large {
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.category-title {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.category-description {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.category-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.category-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
}

.category-stat svg {
    opacity: 0.6;
}

/* Category Section */
.section-category {
    padding: 60px 0;
    background: var(--color-white);
}

.category-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

/* Category Main */
.category-main {
    min-width: 0;
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--color-light-gray);
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: #c7779c;
    background: #c7779c10;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    border-color: transparent;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(252, 0, 103, 0.3);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-card {
    background: #c7779c26;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.category-card-image {
    position: relative;
    display: block;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card-image .category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.category-card-image .gallery-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.category-card:hover .gallery-icon {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 8px 16px rgba(53, 211, 136, 0.5));
}

.category-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 160px;
}

.category-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    flex: 0 0 auto;
}

.category-card-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-card-title a:hover {
    color: #c7779c;
}

.category-card-content .news-author {
    margin-top: auto;
    padding-top: 16px;
}

/* Load More */
.load-more-container {
    margin-top: 60px;
    text-align: center;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    color: var(--color-white);
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(252, 0, 103, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(252, 0, 103, 0.4);
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(4px);
}

/* Category Sidebar */
.category-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-block {
    background: #c7779c26;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.sidebar-title svg {
    color: #c7779c;
}

/* Trending Block */
.trending-block {
    background: linear-gradient(135deg, #fff5f7 0%, #fffbeb 100%);
    border: 2px solid #c7779c20;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trending-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--color-white);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.trending-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.trending-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    color: var(--color-white);
    font-weight: 800;
    font-size: 16px;
    border-radius: 10px;
}

.trending-content {
    flex: 1;
    min-width: 0;
}

.trending-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-dark);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-views {
    font-size: 12px;
    color: var(--color-gray);
    font-weight: 500;
}

/* Categories Block */
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--color-light-gray);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-category:hover {
    background: #c7779c20;
    transform: translateX(4px);
}

.sidebar-category-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
}

.sidebar-category-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gray);
    background: var(--color-white);
    padding: 4px 12px;
    border-radius: 100px;
}

/* Newsletter Block */
.newsletter-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.newsletter-block .sidebar-title {
    color: var(--color-white);
}

.newsletter-block .sidebar-title svg {
    color: #ffd525;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 14px;
    color: var(--color-white);
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffd525;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 14px;
    background: linear-gradient(135deg, #ffd525 0%, #35d388 100%);
    color: var(--color-dark);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 213, 37, 0.4);
}


/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

/* Article Section */
.section-article {
    padding: 40px 0 60px;
    background: var(--color-white);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

/* Article Main */
.article-main {
    min-width: 0;
}

/* Article Header */
.article-header {
    margin-bottom: 32px;
}

.article-header .category-badge {
    margin-bottom: 16px;
    display: inline-block;
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
}

.article-stats {
    display: flex;
    gap: 20px;
}

.article-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray);
}

.article-stat svg {
    opacity: 0.6;
}

/* Article Featured Image */
.article-featured-image {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-dark);
}

/* Only for YouTube and other video iframes - NOT for Instagram/Telegram/Twitter embeds */
.article-body iframe[src*="youtube.com"],
.article-body iframe[src*="youtu.be"],
.article-body iframe[src*="ok.ru"],
.article-body iframe[src*="facebook.com"] {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* Center all embeds/widgets (Instagram, Twitter, Telegram, Facebook, etc.) */
.article-body .instagram-media,
.article-body .twitter-tweet,
.article-body .fb-video,
.article-body .fb-post,
.article-body blockquote[class*="instagram"],
.article-body blockquote[class*="twitter"],
.article-body blockquote[class*="tiktok"] {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
}

/* Gallery images */
.news-inner__images {
    margin: 32px 0;
    text-align: center;
}

.news-inner__images img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 16px;
    margin: 12px auto;
    display: block;
}

/* Content images - same style as gallery */
.article-body img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 16px;
    margin: 24px auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-body p {
    margin-bottom: 24px;
}

.article-lead {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 32px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin: 48px 0 24px;
    color: var(--color-dark);
}

.article-body h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin: 40px 0 20px;
    color: var(--color-dark);
}

.article-quote {
    margin: 40px 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, #fff5f7 0%, #fffbeb 100%);
    border-left: 4px solid #c7779c;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-dark);
}

.article-list {
    margin: 24px 0;
    padding-left: 24px;
}

.article-list li {
    margin-bottom: 12px;
    padding-left: 12px;
}

/* Article Gallery */
.article-gallery {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-grid.gallery-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-grid.gallery-4 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(0.98);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-gray);
    text-align: center;
    font-style: italic;
}

/* Article Video Embed */
.article-video {
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-dark);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-gray);
    text-align: center;
    font-style: italic;
}

/* Article Instagram Embed */
.article-instagram {
    margin: 40px auto;
    max-width: 540px;
}

.instagram-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.instagram-wrapper iframe {
    width: 100%;
    border: none;
    min-height: 600px;
}

/* GLightbox Custom Styles */
.glightbox-clean .gslide-description {
    display: none;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background: rgba(199, 119, 156, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background: rgba(199, 119, 156, 1);
}

.glightbox-clean .gclose {
    background: rgba(199, 119, 156, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.glightbox-clean .gclose:hover {
    background: rgba(199, 119, 156, 1);
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-light-gray);
}

.tag-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-gray);
}

.article-tag {
    padding: 8px 16px;
    background: var(--color-light-gray);
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
}

.article-tag:hover {
    background: #c7779c;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    background: var(--color-light-gray);
    border-radius: 12px;
}

.share-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.share-facebook {
    background: #1877f2;
    color: var(--color-white);
}

.share-facebook:hover {
    background: #0c63d4;
    transform: translateY(-3px);
}

.share-twitter {
    background: #1da1f2;
    color: var(--color-white);
}

.share-twitter:hover {
    background: #0d8bd9;
    transform: translateY(-3px);
}

.share-whatsapp {
    background: #25d366;
    color: var(--color-white);
}

.share-whatsapp:hover {
    background: #1faa52;
    transform: translateY(-3px);
}

.share-telegram {
    background: #0088cc;
    color: var(--color-white);
}

.share-telegram:hover {
    background: #006ba3;
    transform: translateY(-3px);
}

/* Related Articles */
.related-articles {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 2px solid var(--color-light-gray);
}

.related-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--color-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: #c7779c26;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-image {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

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

.related-content {
    padding: 20px;
}

.related-content .category-badge {
    margin-bottom: 12px;
    display: inline-block;
}

.related-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.related-card-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card-title a:hover {
    color: #c7779c;
}

.related-date {
    font-size: 13px;
    color: var(--color-gray);
}

/* Responsive - Category Page */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-layout {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .sidebar-block {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .category-title {
        font-size: 48px;
    }

    .category-hero {
        padding: 60px 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        grid-template-columns: 1fr;
    }

    .category-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
    }
}

/* Responsive - Article Page */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .article-body {
        font-size: 16px;
    }

    .article-lead {
        font-size: 18px;
    }

    .article-body h2 {
        font-size: 26px;
    }

    .article-body h3 {
        font-size: 22px;
    }

    .article-quote {
        font-size: 18px;
        padding: 24px 20px;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-title {
        font-size: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid.gallery-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid,
    .gallery-grid.gallery-2,
    .gallery-grid.gallery-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero */
.about-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg,
        #fff5f7 0%,
        #f0f9ff 25%,
        #f0fdf4 50%,
        #fffbeb 75%,
        #fef2f2 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    top: -400px;
    right: -400px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(252, 0, 103, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(171, 33, 244, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: 24px;
    color: var(--color-gray);
    font-weight: 500;
}

/* About Content */
.about-content {
    background: var(--color-white);
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section {
    padding: 80px 0;
}

.about-section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 32px;
    line-height: 1.2;
}

.about-section-title.centered {
    text-align: center;
}

.centered-text {
    text-align: center;
    font-size: 20px;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* About Row */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-dark);
}

.about-lead {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.about-text p {
    margin-bottom: 20px;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(199, 119, 156, 0.3);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Section */
.about-mission {
    background: linear-gradient(135deg, #fff5f7 0%, #fffbeb 100%);
    border-radius: 40px;
    margin: 0 20px;
    padding: 80px 60px;
}

.mission-content {
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: #c7779c26;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    margin: 0 auto 24px;
    width: 48px;
    height: 48px;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.mission-card p {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 80px 0;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff5f7 0%, #fffbeb 100%);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(199, 119, 156, 0.3);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray);
}

/* Team Section */
.about-team {
    background: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(135deg, #fff5f7 0%, #fffbeb 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(199, 119, 156, 0.3);
}

.team-avatar {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(199, 119, 156, 0.3) 100%);
}

.team-info {
    padding: 32px;
    text-align: center;
}

.team-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.team-position {
    font-size: 18px;
    color: var(--color-gray);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    color: #c7779c;
    transition: var(--transition);
}

.team-social-link:hover {
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    color: var(--color-white);
    transform: translateY(-4px);
}

/* Timeline Section */
.about-timeline {
    background: var(--color-white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #fc0067 0%, #ab21f4 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-start;
    padding-left: 50%;
    padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 0 6px rgba(199, 119, 156, 0.2);
    z-index: 1;
}

.timeline-content {
    background: linear-gradient(135deg, #fff5f7 0%, #fffbeb 100%);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    max-width: 350px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(199, 119, 156, 0.3);
}

.timeline-date {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    color: var(--color-white);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Contact Section */
.about-contact {
    background: linear-gradient(135deg,
        #fff5f7 0%,
        #f0f9ff 25%,
        #f0fdf4 50%,
        #fffbeb 75%,
        #fef2f2 100%);
    border-radius: 40px;
    margin: 0 20px;
}

.contact-wrapper {
    padding: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: #c7779c26;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    margin: 0 auto 24px;
    width: 32px;
    height: 32px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.contact-card a {
    font-size: 16px;
    color: #c7779c;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: #fc0067;
}

/* Credits Section */
.about-credits {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--color-light-gray);
}

.credits-content p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.credits-content strong {
    color: var(--color-dark);
    font-weight: 700;
}

.credits-date {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive - About Page */
@media (max-width: 1024px) {
    .about-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding-left: 40px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 40px;
        padding-right: 0;
    }

    .timeline::before {
        left: 0;
        transform: none;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section-title {
        font-size: 36px;
    }

    .about-mission,
    .about-contact {
        padding: 60px 30px;
        margin: 0 10px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .contact-wrapper {
        padding: 40px 20px;
    }
}

/* ==========================================
   Search Modal Styles
   ========================================== */

.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.search-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 700px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: scale(1);
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.search-modal-close:hover {
    background: #e5e7eb;
    color: #1a1a1a;
    transform: rotate(90deg);
}

.search-modal-body h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-form {
    position: relative;
    margin-bottom: 40px;
}

.search-input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 18px;
    font-family: inherit;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #c7779c;
    box-shadow: 0 0 0 4px rgba(199, 119, 156, 0.1);
}

.search-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.search-submit:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(199, 119, 156, 0.4);
}

.search-suggestions {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.search-suggestions-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 16px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .search-modal-content {
        padding: 40px 30px;
        width: 95%;
    }

    .search-modal-body h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .search-input {
        font-size: 16px;
        padding: 16px 55px 16px 20px;
    }

    .search-submit {
        width: 42px;
        height: 42px;
    }
}

/* ==========================================
   Contact Page Styles
   ========================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg,
        #fff5f7 0%,
        #f0f9ff 25%,
        #f0fdf4 50%,
        #fffbeb 75%,
        #fef2f2 100%);
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(252, 0, 103, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(171, 33, 244, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(53, 211, 136, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.contact-hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c7779c;
    box-shadow: 0 0 0 4px rgba(199, 119, 156, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(199, 119, 156, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 119, 156, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f9ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(199, 119, 156, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(199, 119, 156, 0.15);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fc0067 0%, #ab21f4 100%);
    border-radius: 14px;
    color: white;
}

.contact-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact-card-content p:last-child {
    margin-bottom: 0;
}

.contact-card-content a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #c7779c;
}

/* Contact Social */
.contact-social {
    background: linear-gradient(135deg, #f0fdf4 0%, #fffbeb 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(53, 211, 136, 0.1);
    margin-bottom: 40px;
}

.contact-social h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.contact-social > p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 28px;
    text-align: center;
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 20px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.contact-social-link.instagram:hover {
    border-color: #E4405F;
    color: #E4405F;
}

.contact-social-link.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.contact-social-link.youtube:hover {
    border-color: #FF0000;
    color: #FF0000;
}

.contact-social-link.tiktok:hover {
    border-color: #000000;
    color: #000000;
}

.contact-social-link.telegram:hover {
    border-color: #0088cc;
    color: #0088cc;
}

.contact-social-link svg {
    flex-shrink: 0;
}

/* Contact Hours */
.contact-hours {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f7 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(252, 0, 103, 0.1);
    margin-bottom: 40px;
}

.contact-hours h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hours-item .day {
    color: #1a1a1a;
    font-weight: 600;
}

.hours-item .time {
    color: #35d388;
    font-weight: 700;
}

.hours-item.inactive .time {
    color: #ef4444;
}

/* Contact Map Section */
.contact-map-section {
    margin-top: 60px;
}

.contact-map-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid #f3f4f6;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-map iframe {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-hero-title {
        font-size: 52px;
    }

    .contact-social-links {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero-title {
        font-size: 42px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-cards {
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-social,
    .contact-hours {
        padding: 30px;
        margin-bottom: 30px;
    }

    .contact-social h3,
    .contact-hours h3 {
        font-size: 22px;
    }

    .contact-social-links {
        grid-template-columns: 1fr;
    }

    .contact-map-section {
        margin-top: 40px;
    }

    .contact-map-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-map {
        border-radius: 16px;
    }

    .contact-map iframe {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 20px;
        gap: 16px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
    }

    .contact-card-content h3 {
        font-size: 16px;
    }

    .contact-card-content p {
        font-size: 14px;
    }

    .contact-social,
    .contact-hours {
        padding: 24px;
    }

    .contact-social h3,
    .contact-hours h3 {
        font-size: 20px;
    }

    .contact-map-section .section-title {
        font-size: 24px;
    }

    .contact-map iframe {
        height: 300px !important;
    }
}

/* ========================================
   SEARCH RESULTS PAGE
   ======================================== */

/* Search Hero Section */
.search-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.search-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.search-icon-large {
    display: none;
}

.search-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.search-query {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.search-query span {
    color: #4f46e5;
    font-weight: 600;
}

.search-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.search-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--color-gray);
}

.search-stat svg {
    color: #4f46e5;
}

/* Search Hero Form */
.search-hero-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.search-hero-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    font-size: 16px;
    outline: none;
    color: var(--color-dark);
}

.search-hero-input::placeholder {
    color: #9ca3af;
}

.search-hero-submit {
    padding: 18px 32px;
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.search-hero-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* Search Layout */
.section-search-results {
    padding: 60px 0;
    background: white;
}

.search-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.search-main {
    min-width: 0;
}

/* Search Filters */
.search-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-light-gray);
    flex-wrap: wrap;
}

/* Search Results Grid */
.search-results-grid {
    display: grid;
    gap: 32px;
}

/* Search Empty State */
.search-empty {
    text-align: center;
    padding: 80px 20px;
}

.search-empty h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 24px 0 12px;
}

.search-empty p {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.search-result-card {
    background: #c7779c26;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.search-result-image {
    position: relative;
    width: 280px;
    height: 200px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.search-result-card:hover .search-result-image img {
    transform: scale(1.05);
}

.search-result-content {
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
}

.search-result-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.search-result-title a {
    color: var(--color-dark);
}

.search-result-title a:hover {
    color: #4f46e5;
}

.search-result-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 16px;
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--color-light-gray);
    border-radius: 12px;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.pagination-btn:not(:disabled):hover {
    border-color: #4f46e5;
    color: #4f46e5;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    border: 2px solid var(--color-light-gray);
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition);
}

.pagination-number:hover {
    border-color: #4f46e5;
    color: #4f46e5;
}

.pagination-number.active {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    border-color: transparent;
    color: white;
}

.pagination-dots {
    padding: 0 8px;
    color: var(--color-gray);
}

/* Search Sidebar */
.search-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Related Searches */
.related-searches-block {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.related-searches {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-search-item {
    padding: 12px 16px;
    background: var(--color-light-gray);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.related-search-item::before {
    content: "→";
    margin-right: 8px;
    color: #4f46e5;
    font-weight: 700;
}

.related-search-item:hover {
    background: #4f46e5;
    color: white;
    transform: translateX(4px);
}

.related-search-item:hover::before {
    color: white;
}

/* Responsive - Search Page */
@media (max-width: 1024px) {
    .search-layout {
        grid-template-columns: 1fr;
    }

    .search-sidebar {
        order: -1;
    }

    .search-result-card {
        grid-template-columns: 240px 1fr;
    }

    .search-result-image {
        width: 240px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .search-hero {
        padding: 60px 0 40px;
    }

    .search-title {
        font-size: 42px;
    }

    .search-query {
        font-size: 18px;
    }

    .search-stats {
        flex-direction: column;
        gap: 12px;
    }

    .search-result-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .search-result-image {
        width: 100%;
        height: 220px;
    }

    .search-result-content {
        padding: 20px 24px;
    }

    .search-filters {
        gap: 8px;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .search-title {
        font-size: 32px;
    }

    .search-query {
        font-size: 16px;
    }

    .search-hero-form {
        flex-direction: column;
    }

    .search-hero-submit {
        justify-content: center;
    }

    .search-result-title {
        font-size: 18px;
    }

    .search-result-excerpt {
        font-size: 14px;
    }

    .pagination-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets & Small Desktops (1025px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 36px;
    }

    .today-grid {
        gap: 20px;
    }

    .media-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .media-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .feed-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Tablets Landscape (769px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 720px;
        padding: 0 16px;
    }

    /* Header */
    .header-top {
        padding: 12px 0;
    }

    .logo {
        height: 40px;
    }

    .header-actions {
        gap: 12px;
    }

    .social-links {
        display: none;
    }

    .nav ul {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 450px;
    }

    .slide-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    /* Today's Section */
    .today-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .today-grid-small {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .today-title-large {
        font-size: 28px;
    }

    /* Media Section */
    .media-featured-image {
        aspect-ratio: 3 / 2;
    }

    .featured-title {
        font-size: 26px;
    }

    .media-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Feed Grid */
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Article Page */
    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets Portrait (481px - 768px) */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    /* Header */
    .header-top {
        padding: 10px 0;
    }

    .logo {
        height: 36px;
    }

    .header-actions {
        gap: 8px;
    }

    .theme-toggle,
    .search-trigger {
        width: 36px;
        height: 36px;
    }

    .nav {
        display: none;
    }

    /* Hero Slider */
    .hero-slider {
        height: 380px;
    }

    .slide-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .slide-content {
        padding: 24px 0;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .slider-prev {
        left: 12px;
    }

    .slider-next {
        right: 12px;
    }

    .slider-dots {
        bottom: 16px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Section Headers */
    .section-title {
        font-size: 22px;
    }

    /* Today's Section */
    .today-card-large {
        flex-direction: column;
    }

    .today-image {
        width: 100%;
        height: 280px;
    }

    .today-title-large {
        font-size: 24px;
    }

    .today-grid-small {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .today-card-small {
        flex-direction: row;
        gap: 16px;
    }

    .today-image-small {
        width: 140px;
        height: 105px;
        flex-shrink: 0;
    }

    .today-title-small {
        font-size: 15px;
    }

    /* Media Section */
    .media-featured {
        flex-direction: column;
    }

    .media-featured-image {
        width: 100%;
        aspect-ratio: 3 / 2;
    }

    .featured-title {
        font-size: 22px;
    }

    .featured-play svg {
        width: 60px;
        height: 60px;
    }

    .media-photos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .photo-item {
        flex-direction: row;
        gap: 16px;
    }

    .photo-wrapper {
        width: 140px;
        aspect-ratio: 3 / 2;
        flex-shrink: 0;
    }

    .photo-icon svg {
        width: 30px;
        height: 30px;
    }

    .photo-title {
        font-size: 15px;
    }

    /* Feed Grid */
    .feed-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feed-image {
        aspect-ratio: 3 / 2;
    }

    .feed-title {
        font-size: 17px;
    }

    /* News Author */
    .news-author {
        gap: 8px;
    }

    .author-avatar {
        width: 32px;
        height: 32px;
    }

    .author-name,
    .publish-date {
        font-size: 12px;
    }

    /* Category Badge */
    .category-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* Article Page */
    .article-title {
        font-size: 26px;
    }

    .article-featured-image {
        height: 280px;
    }

    .article-body {
        font-size: 16px;
        line-height: 1.7;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pagination */
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Landscape & Large Phones (481px - 640px) */
@media (max-width: 640px) {
    /* Hero Slider */
    .hero-slider {
        height: 320px;
    }

    .slide-title {
        font-size: 20px;
    }

    /* Today's Section */
    .today-image {
        height: 240px;
    }

    .today-title-large {
        font-size: 20px;
    }

    .today-image-small {
        width: 120px;
        height: 90px;
    }

    .today-title-small {
        font-size: 14px;
    }

    /* Media Section */
    .media-featured-image {
        aspect-ratio: 3 / 2;
    }

    .featured-title {
        font-size: 18px;
    }

    .photo-wrapper {
        width: 120px;
        aspect-ratio: 3 / 2;
    }

    .photo-title {
        font-size: 14px;
    }

    /* Feed Grid */
    .feed-image {
        aspect-ratio: 3 / 2;
    }

    .feed-title {
        font-size: 16px;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .header-top {
        padding: 8px 0;
    }

    .logo {
        height: 32px;
    }

    .theme-toggle,
    .search-trigger {
        width: 32px;
        height: 32px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 280px;
    }

    .slide-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .slide-content {
        padding: 16px 0;
    }

    .news-author {
        gap: 8px;
    }

    .author-info {
        gap: 4px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .slider-dots {
        gap: 4px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    /* Section Headers */
    .section-title {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    /* Today's Section */
    .today-image {
        height: 200px;
    }

    .today-title-large {
        font-size: 18px;
        line-height: 1.4;
    }

    .today-card-small {
        flex-direction: column;
    }

    .today-image-small {
        width: 100%;
        height: 180px;
    }

    .today-title-small {
        font-size: 15px;
    }

    /* Media Section */
    .media-featured-image {
        aspect-ratio: 3 / 2;
    }

    .featured-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .featured-play svg {
        width: 50px;
        height: 50px;
    }

    .featured-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .photo-item {
        flex-direction: column;
    }

    .photo-wrapper {
        width: 100%;
        aspect-ratio: 3 / 2;
    }

    .photo-title {
        font-size: 18px;
    }

    .photo-icon svg {
        width: 40px;
        height: 40px;
    }

    /* Feed Grid */
    .feed-image {
        aspect-ratio: 3 / 2;
    }

    .feed-content {
        padding: 16px;
    }

    .feed-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .gallery-icon {
        display: none;
    }

    /* Category Badge */
    .category-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* News Author */
    .author-avatar {
        width: 28px;
        height: 28px;
    }

    .author-name,
    .publish-date {
        font-size: 11px;
    }

    /* Article Page */
    .article-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .article-stats {
        width: 100%;
    }

    .article-featured-image {
        height: 220px;
        margin: 16px 0;
    }

    .article-body {
        font-size: 15px;
        line-height: 1.7;
    }

    .article-body h2 {
        font-size: 20px;
    }

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

    .article-tags {
        flex-wrap: wrap;
        gap: 8px;
    }

    .article-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .share-buttons {
        width: 100%;
        justify-content: space-around;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }

    .related-card {
        flex-direction: column;
    }

    .related-image {
        width: 100%;
        height: 180px;
    }

    /* Footer */
    .footer-content {
        padding: 30px 0;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 16px 0;
        flex-direction: column;
        gap: 12px;
    }

    .footer-social {
        justify-content: center;
    }

    /* Pagination */
    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .pagination-num {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }

    .logo {
        height: 28px;
    }

    .hero-slider {
        height: 240px;
    }

    .slide-title {
        font-size: 16px;
    }

    .section-title {
        font-size: 16px;
    }

    .today-title-large,
    .today-title-small,
    .feed-title,
    .photo-title,
    .article-title {
        font-size: 14px;
    }

    .featured-title {
        font-size: 14px;
    }
}

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