/* Pirátský Zpravodajský Portál - CSS */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700;900&display=swap');

/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pirátské barvy */
    --pirate-black: #000000;
    --pirate-white: #ffffff;
    --pirate-yellow: #FEC900;
    --pirate-yellow-dark: #F2C700;
    --pirate-gray: #4F4F4F;
    --pirate-light-gray: #F3F3F3;
    --pirate-gradient-1: #FF69B4;
    --pirate-gradient-2: #FFA500;
    --pirate-gradient-3: #FFD700;
    
    /* Aplikované barvy */
    --primary-color: var(--pirate-yellow);
    --primary-dark: var(--pirate-yellow-dark);
    --secondary-color: var(--pirate-black);
    --text-primary: var(--pirate-black);
    --text-secondary: var(--pirate-gray);
    --text-light: #666666;
    --bg-primary: var(--pirate-white);
    --bg-secondary: var(--pirate-light-gray);
    --bg-dark: var(--pirate-black);
    --border-color: #e0e0e0;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.25);
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --container-width: 1280px;
    
    /* Category-specific colors */
    --category-udalosti: #E53E3E;      /* Červená pro Události */
    --category-udalosti-bg: #FED7D7;   /* Světlá červená */
    --category-nazory: #3182CE;        /* Modrá pro Názory */
    --category-nazory-bg: #BEE3F8;     /* Světlá modrá */
    --category-analyzy: #38A169;       /* Zelená pro Analýzy */
    --category-analyzy-bg: #C6F6D5;    /* Světlá zelená */
    --category-kultura: #805AD5;       /* Fialová pro Kulturu */
    --category-kultura-bg: #E9D8FD;    /* Světlá fialová */
}

/* Dark theme */
[data-theme="dark"] {
    --text-primary: var(--pirate-white);
    --text-secondary: #cccccc;
    --text-light: #999999;
    --bg-primary: var(--pirate-black);
    --bg-secondary: #1a1a1a;
    --border-color: #333333;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Pirátské logo gradient text */
.gradient-text {
    background: linear-gradient(90deg, #FF69B4, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    letter-spacing: 2px;
}

/* Header Styles */
.header {
    background: var(--pirate-black);
    color: var(--pirate-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-top {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    display: none; /* Skryjeme pro čistější design */
}

.header-main {
    padding: 16px 0;
}

.header-main-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--pirate-white);
    transition: all 0.3s;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--pirate-white);
    letter-spacing: 1px;
    margin: 0;
}

.logo h1 a {
    color: inherit;
    text-decoration: none;
}

.logo .accent {
    color: var(--pirate-yellow);
}

/* Navigation */
.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--pirate-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pirate-yellow);
    transition: width 0.3s;
}

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

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

.search-btn,
.theme-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 10px;
    cursor: pointer;
    color: var(--pirate-white);
    transition: all 0.2s;
}

.search-btn:hover,
.theme-toggle:hover {
    border-color: var(--pirate-yellow);
    background: var(--pirate-yellow);
    color: var(--pirate-black);
}

/* Breaking News - Pirátský styl */
.breaking-news {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    padding: 12px 0;
    overflow: hidden;
    font-weight: 500;
}

.breaking-news-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breaking-label-link {
    text-decoration: none;
    transition: all 0.2s ease;
}

.breaking-label-link:hover {
    transform: translateY(-1px);
}

.breaking-label {
    background: var(--pirate-black);
    color: var(--pirate-yellow);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: block;
    transition: all 0.2s ease;
}

.breaking-label-link:hover .breaking-label {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
}

.ticker-fade {
    position: relative;
    height: 24px;
    overflow: hidden;
}

.ticker-item-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    color: var(--pirate-black);
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.ticker-item-fade.active {
    opacity: 1;
}

.ticker-item-fade:hover {
    opacity: 0.8 !important;
}

.ticker-flag {
    margin-right: 8px;
    font-size: 16px;
    flex-shrink: 0;
}

.ticker-source {
    font-size: 12px;
    opacity: 0.7;
    font-style: italic;
    margin-left: 6px;
    flex-shrink: 0;
}

/* Main Content */
.main-content {
    padding: 48px 0;
    background: var(--bg-primary);
}

/* Hero Section - Pirátský styl */
.hero-section {
    margin-bottom: 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.hero-main {
    position: relative;
}

.article-image {
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Ostré rohy jako Piráti */
}

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

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

/* Clickable image links */
.article-image-link {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.article-image-link:hover .article-image img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.article-image-link:hover .category-badge {
    background: var(--pirate-black);
    color: var(--pirate-yellow);
}

.article-image-link:hover .reading-time {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
}

/* Add cursor pointer to indicate clickability */
.article-image-link {
    cursor: pointer;
}

/* Visual feedback on click */
.article-image-link:active .article-image img {
    transform: scale(1.02);
}

/* Add overlay effect on hover */
.article-image-link .article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.article-image-link:hover .article-image::after {
    opacity: 1;
}

/* Enhance reading time and category badge on hover */
.article-image-link .reading-time,
.article-image-link .category-badge {
    transition: all 0.3s;
    z-index: 2;
}

/* Smooth transitions for all image elements */
.article-image img {
    transition: transform 0.3s, filter 0.3s;
}

.category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    padding: 8px 16px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main .article-image {
    position: relative;
    height: 450px;
}

.hero-main .article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-main .article-title-overlay {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-main .article-excerpt-overlay {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 80%;
}

.hero-main .article-meta-overlay {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-main .article-meta-overlay span {
    display: flex;
    align-items: center;
}

.hero-main .article-content {
    padding: 24px 0;
}

/* Hero Sidebar Articles Styles */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-article {
    position: relative;
}

.sidebar-article .article-image {
    position: relative;
    height: 225px;
    overflow: hidden;
}

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

.sidebar-article-title-overlay {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.sidebar-article-content {
    padding: 12px 0;
}

.sidebar-article-excerpt {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.sidebar-article-content .date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.article-title {
    margin-bottom: 16px;
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    line-height: 1.1;
    transition: color 0.2s;
    letter-spacing: 1px;
}

.article-title a:hover {
    color: var(--pirate-yellow-dark);
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick News - Pirátský styl */
.quick-news {
    background: var(--pirate-black);
    color: var(--pirate-white);
    padding: 32px;
    margin-bottom: 48px;
    position: relative;
}

.quick-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF69B4, #FFA500, #FFD700);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--pirate-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.quick-news-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--pirate-yellow);
    transition: background 0.2s;
}

.quick-news-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.quick-news-item .time {
    color: var(--pirate-yellow);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.quick-news-item p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--pirate-white);
}

/* Google Trends styling */
.trending-subtitle {
    font-size: 14px;
    color: var(--pirate-yellow);
    margin-top: -16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.loading-trends {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--pirate-yellow);
}

.loading-spinner {
    font-size: 32px;
    display: inline-block;
    animation: spin 2s linear infinite;
}

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

/* Media Section Styling */
.media-section {
    background: var(--pirate-black);
    padding: 40px 0;
    border-top: 3px solid var(--pirate-yellow);
    display: block !important;
    visibility: visible !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.media-section .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.media-section .section-title {
    color: var(--pirate-yellow);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.media-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.media-item:hover {
    border-color: var(--pirate-yellow);
    transform: translateY(-5px);
}

/* Video Container */
.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-container .media-info {
    padding: 20px;
}

.video-container .media-info h3 {
    color: var(--pirate-yellow);
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

/* Audio Container */
.audio-container {
    padding: 30px 20px;
}

.audio-player .audio-info {
    margin-bottom: 20px;
}

.audio-player .audio-info h3 {
    color: var(--pirate-yellow);
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.audio-player audio {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

/* Media Duration */
.media-duration {
    color: #888;
    font-size: 14px;
    font-weight: 400;
}

/* Media Controls Styling */
audio::-webkit-media-controls-panel {
    background-color: #2a2a2a;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-pause-button {
    background-color: var(--pirate-yellow);
    border-radius: 50%;
}

video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .media-section {
        padding: 30px 0;
    }
    
    .audio-container {
        padding: 20px 15px;
    }
}

.trends-footer {
    margin-top: 20px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

/* Přednášky sekce */
.lectures-section {
    margin: 60px 0;
    padding: 0 20px;
}

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

.lectures-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.lectures-section .section-link {
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.lectures-section .section-link:hover {
    color: #0052cc;
}

.lectures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.lecture-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.lecture-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lecture-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.lecture-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lecture-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.lecture-card:hover .lecture-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.lecture-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.lecture-content {
    padding: 20px;
}

.lecture-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.lecture-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 88px;
}

.lecture-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}

.lecture-author {
    font-weight: 600;
    color: #555;
}

.lecture-date {
    color: #999;
}

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

.lecture-tag {
    font-size: 12px;
    color: #0066ff;
    background: #e6f0ff;
    padding: 4px 10px;
    border-radius: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .lectures-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lectures-section {
        padding: 0 15px;
        margin: 40px 0;
    }
    
    .lectures-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Trends Carousel */
.trends-carousel-section {
    margin: 40px 0;
    padding: 0 20px;
}

.trends-carousel-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.trends-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.trends-carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.trends-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 10px;
}

.trend-item {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    height: 140px;
}

.trend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.trend-image {
    flex: 0 0 140px;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

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

.trend-item:hover .trend-image img {
    transform: scale(1.05);
}

.trend-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.trend-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.trend-query {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #0066ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.trend-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trend-excerpt {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Carousel navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.95);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: white;
    border-color: #0066ff;
    color: #0066ff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .trends-carousel-section {
        padding: 0 15px;
        margin: 30px 0;
    }
    
    .trends-carousel-section .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .trend-item {
        flex: 0 0 300px;
        height: 120px;
    }
    
    .trend-image {
        flex: 0 0 120px;
        height: 120px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
}

.trends-update {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.trends-separator {
    color: rgba(255, 255, 255, 0.3);
}

.trends-link {
    color: var(--pirate-yellow);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.trends-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.trend-list-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--pirate-yellow);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.trend-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.trend-rank {
    color: var(--pirate-yellow);
    font-weight: 700;
    font-size: 20px;
    font-family: 'Bebas Neue', cursive;
}

.trend-list-item .trend-title {
    font-size: 14px;
    line-height: 1.3;
    color: var(--pirate-white);
    font-weight: 500;
}

.trend-searches {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Trends with images */
.trends-with-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trend-item-with-image {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trend-item-with-image:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.trend-image {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

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

.trend-item-with-image:hover .trend-image img {
    transform: scale(1.1);
}

.trend-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--pirate-yellow);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.trend-content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trend-news-title {
    color: var(--pirate-white);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    margin-bottom: 48px;
}

/* News Sections - Pirátský styl */
.news-section {
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--pirate-yellow);
}

.section-header .section-title {
    color: var(--text-primary);
    margin: 0;
}

.section-link {
    color: var(--pirate-yellow-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

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

/* Article Cards - Pirátský styl */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.article-card:hover {
    border-color: var(--pirate-yellow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-card .article-image {
    height: 180px;
    position: relative;
}

.reading-time {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--pirate-black);
    color: var(--pirate-white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.article-card .article-content {
    padding: 20px;
}

.article-card .article-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.article-card .article-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    line-height: 1.3;
    font-size: 20px;
    transition: color 0.2s;
}

.article-card .article-title a:hover {
    color: var(--pirate-yellow-dark);
}

.article-card .article-meta {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.article-card .category {
    color: var(--pirate-yellow-dark);
    font-weight: 700;
}

/* Articles List */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-horizontal {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.article-horizontal:hover {
    border-color: var(--pirate-yellow);
    background: var(--bg-secondary);
}

/* Opinion Section - Pirátský styl */
.opinion-section {
    background: var(--pirate-black);
    color: var(--pirate-white);
    padding: 48px;
    margin-bottom: 48px;
}

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

.opinion-section .section-header {
    border-bottom-color: var(--pirate-yellow);
}

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

.opinion-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    transition: background 0.2s;
}

.opinion-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--pirate-yellow);
}

.author-name {
    color: var(--pirate-yellow);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.opinion-title a {
    color: var(--pirate-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.opinion-title a:hover {
    color: var(--pirate-yellow);
}

/* Sidebar - Pirátský styl */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: var(--bg-primary);
    border: 2px solid var(--pirate-black);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--pirate-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trending List */
.trending-list {
    list-style: none;
    counter-reset: trending;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.trending-number {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    flex-shrink: 0;
}

.trending-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.trending-item a:hover {
    color: var(--pirate-yellow-dark);
}

/* Newsletter Box - Pirátský styl */
.newsletter-box {
    background: var(--pirate-black) !important;
    color: var(--pirate-white);
    border: none !important;
}

.newsletter-box .sidebar-title {
    color: var(--pirate-white);
    border-bottom-color: var(--pirate-yellow);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

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

.newsletter-input {
    padding: 14px;
    border: 2px solid var(--pirate-yellow);
    background: transparent;
    color: var(--pirate-white);
    font-size: 14px;
}

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

.newsletter-btn {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    border: none;
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-btn:hover {
    background: var(--pirate-yellow-dark);
}

/* Weather Widget - Pirátský styl */
.weather-widget {
    background: linear-gradient(135deg, #FF69B4, #FFA500, #FFD700) !important;
    color: var(--pirate-black);
    border: none !important;
}

.weather-widget .sidebar-title {
    color: var(--pirate-black);
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

.weather-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.weather-today {
    display: flex;
    align-items: center;
    gap: 16px;
}

.weather-icon-large {
    font-size: 48px;
}

.temperature {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.weather-desc {
    font-size: 14px;
    opacity: 0.8;
}

/* Sport Section - Pirátský styl */
.sport-section {
    background: var(--bg-secondary);
    padding: 48px 0;
    margin-bottom: 48px;
}

.sport-nav {
    display: flex;
    gap: 12px;
}

.sport-tab {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--pirate-black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.sport-tab.active,
.sport-tab:hover {
    background: var(--pirate-yellow);
    border-color: var(--pirate-yellow);
    color: var(--pirate-black);
}

.sport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.sport-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.sport-card:hover {
    border-color: var(--pirate-yellow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sport-image {
    position: relative;
    height: 200px;
}

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

.sport-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    font-weight: 700;
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sport-content {
    padding: 20px;
}

.sport-title {
    margin-bottom: 12px;
}

.sport-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.sport-title a:hover {
    color: var(--pirate-yellow-dark);
}

.match-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    padding: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.score {
    color: var(--pirate-yellow-dark);
    font-size: 18px;
}

.sport-excerpt {
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Lifestyle Section */
.lifestyle-section {
    margin-bottom: 48px;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.lifestyle-feature {
    border: 2px solid var(--pirate-black);
    overflow: hidden;
}

.lifestyle-feature:hover {
    border-color: var(--pirate-yellow);
}

.lifestyle-image {
    position: relative;
    height: 300px;
}

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

.lifestyle-content {
    padding: 24px;
}

.lifestyle-title {
    margin-bottom: 12px;
}

.lifestyle-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    transition: color 0.2s;
}

.lifestyle-title a:hover {
    color: var(--pirate-yellow-dark);
}

.lifestyle-excerpt {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

.lifestyle-small {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.lifestyle-small:hover {
    border-color: var(--pirate-yellow);
    background: var(--bg-secondary);
}

.lifestyle-small img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.category-tag {
    display: inline-block;
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.lifestyle-small h4 {
    margin: 0;
}

.lifestyle-small h4 a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.lifestyle-small h4 a:hover {
    color: var(--pirate-yellow-dark);
}

/* Video Section */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-item {
    display: block;
}

.video-thumbnail {
    position: relative;
    margin-bottom: 8px;
}

.video-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--pirate-black);
    color: var(--pirate-white);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--pirate-white);
    font-size: 32px;
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.video-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.video-title a:hover {
    color: var(--pirate-yellow-dark);
}

/* Footer - Pirátský styl */
.footer {
    background: var(--pirate-black);
    color: var(--pirate-white);
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF69B4, #FFA500, #FFD700);
}

.footer-top {
    padding: 48px 0;
}

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

.footer-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--pirate-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li {
    margin-bottom: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--pirate-yellow);
}

/* Post Styles */
.post {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 32px;
    text-align: center;
}

.post-meta {
    margin-bottom: 16px;
}

.post-date {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.post-excerpt {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.post-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.post-image {
    margin-bottom: 32px;
}

.post-image img {
    width: 100%;
    height: auto;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.post-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    margin: 32px 0 16px;
    letter-spacing: 1px;
}

.post-content h3 {
    font-size: 24px;
    margin: 24px 0 12px;
    font-weight: 700;
}

.post-content p {
    margin-bottom: 16px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 2px solid var(--pirate-yellow);
    margin-bottom: 48px;
}

.post-tags {
    display: flex;
    gap: 8px;
}

.tag {
    color: var(--pirate-yellow-dark);
    font-weight: 600;
    font-size: 14px;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-btn {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.share-btn:hover {
    background: var(--pirate-yellow-dark);
}

/* Modern Post Footer */
.post-footer-modern {
    margin: 48px 0 32px;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--pirate-yellow);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Author Section */
.author-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 16px 0;
    margin: 20px 0;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--pirate-black);
    margin: 0 0 4px 0;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.1;
}

.author-title {
    font-size: 15px;
    color: #666;
    margin: 0 0 12px 0;
    font-weight: 500;
    font-style: italic;
    line-height: 1.3;
}

.author-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.author-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pirate-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.author-profile-link:hover {
    color: var(--pirate-yellow-dark);
    border-bottom: 1px solid var(--pirate-yellow-dark);
}

.author-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pirate-black);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--pirate-yellow);
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 80px;
    justify-content: center;
}

.social-link:hover {
    background: var(--pirate-yellow-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tags-section,
.share-section {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 16px 0;
}

.section-label {
    font-weight: 700;
    color: var(--pirate-black);
    font-size: 14px;
    white-space: nowrap;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.tag-pill {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-pill:hover {
    background: var(--pirate-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.share-btn-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-btn-modern:hover {
    background: var(--pirate-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.btn-icon {
    font-size: 16px;
}

/* Comments section styling */
.comments-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.comments-section h3 {
    color: var(--text-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.comments-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

#hyvor-talk-view {
    margin-top: 20px;
}

/* Related Posts */
.related-posts {
    margin-bottom: 48px;
}

.related-posts h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--pirate-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.related-post {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.related-post:hover {
    border-color: var(--pirate-yellow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-post .article-image {
    height: 120px;
}

.related-post .article-content {
    padding: 16px;
}

.related-post h4 {
    margin-bottom: 8px;
}

.related-post h4 a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.related-post h4 a:hover {
    color: var(--pirate-yellow-dark);
}

.related-post .date {
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category Page */
.category-page {
    
}

.category-header {
    text-align: center;
    margin-bottom: 48px;
}

.category-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.no-posts {
    text-align: center;
    padding: 48px;
    color: var(--text-secondary);
}

/* Back to Top Button - Pirátský styl */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s;
    font-weight: 700;
}

.back-to-top:hover {
    transform: scale(1.1);
    background: var(--pirate-yellow-dark);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

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

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

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

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

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

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--pirate-black);
        box-shadow: var(--shadow-xl);
        transition: left 0.3s;
        padding: 80px 20px 20px;
        overflow-y: auto;
        z-index: 1000;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px;
    }

    .nav-link {
        display: block;
        padding: 12px;
        color: var(--pirate-white);
    }

    .nav-link:hover {
        background: var(--pirate-yellow);
        color: var(--pirate-black);
    }

    .quick-news-grid {
        grid-template-columns: 1fr;
    }
    
    .trends-with-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .trend-image {
        height: 100px;
    }

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

    .sport-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-main .article-overlay {
        padding: 30px 20px 20px;
    }
    
    .hero-main .article-title-overlay {
        font-size: 32px;
    }
    
    .hero-main .article-excerpt-overlay {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-main .article-image {
        height: 350px;
    }
    
    .hero-sidebar {
        flex-direction: row;
        gap: 16px;
    }
    
    .sidebar-article {
        flex: 1;
    }
    
    .sidebar-article-title-overlay {
        font-size: 20px;
    }
    
    .sidebar-article .article-image {
        height: 180px;
    }

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

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

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

    .gradient-text {
        font-size: 32px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
    }

    .article-title a {
        font-size: 24px;
    }

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

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .hero-sidebar {
        flex-direction: column;
    }
    
    .sidebar-article .article-image {
        height: 200px;
    }
    
    .sidebar-article-title-overlay {
        font-size: 18px;
    }
    
    .trends-with-images {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .trend-image {
        height: 100px;
    }
    
    .trend-news-title {
        font-size: 13px;
    }
    
    .trend-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .category-title {
        font-size: 36px;
    }
}

/* Pirate-style post styling - unified color scheme */
.post-category-udalosti,
.post-category-nazory,
.post-category-analyzy,
.post-category-kultura {
    --category-color: var(--pirate-yellow);
    --category-bg: var(--pirate-light-gray);
}

/* Enhanced post header - Pirate style */
.post-header {
    position: relative;
    background: var(--pirate-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--pirate-white);
    padding: 32px 40px 24px 40px;
    margin-bottom: 32px;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pirate-yellow);
    z-index: 3;
}

.post-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.post-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Fallback pro články bez obrázku */
.post-header:not([style*="background-image"]) .post-header-overlay {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.6) 100%);
}

.post-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.post-category-badge {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    padding: 6px 16px;
    font-family: 'Bebas Neue', cursive;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    white-space: nowrap;
}

.post-meta-compact {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-wrap: wrap;
}

.post-meta-compact time,
.post-meta-compact .reading-time,
.post-meta-compact .post-author {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.meta-icon {
    font-size: 12px;
    opacity: 0.8;
}

.post-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: var(--pirate-white);
    max-width: 900px;
}

.post-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.4;
    max-width: 800px;
}

.post-meta-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-left: 4px solid var(--pirate-yellow);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.post-meta-icon {
    width: 18px;
    height: 18px;
    color: var(--pirate-yellow);
}

.post-author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 24px;
    border-left: 4px solid var(--pirate-yellow);
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
}

.post-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--pirate-yellow);
    object-fit: cover;
}

.post-author-info h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    color: var(--pirate-black);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-author-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Enhanced post content styling */
.post-content {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: none;
}

.post-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    margin: 48px 0 24px;
    letter-spacing: 1px;
    color: var(--pirate-black);
    border-left: 6px solid var(--pirate-yellow);
    padding-left: 24px;
    text-transform: uppercase;
}

.post-content h3 {
    font-size: 28px;
    margin: 36px 0 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.post-content h4 {
    font-size: 22px;
    margin: 24px 0 12px;
    font-weight: 600;
    color: var(--pirate-yellow-dark);
}

.post-content blockquote {
    background: var(--pirate-light-gray);
    border-left: 6px solid var(--pirate-yellow);
    padding: 24px;
    margin: 32px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--text-secondary);
}

.post-content ul, .post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content pre {
    background: var(--pirate-black);
    color: var(--pirate-white);
    padding: 24px;
    margin: 24px 0;
    overflow-x: auto;
    border-left: 4px solid var(--category-color);
}

.post-content code {
    background: var(--pirate-light-gray);
    padding: 4px 8px;
    font-size: 14px;
    color: var(--pirate-black);
    font-weight: 600;
}

.post-content pre code {
    background: none;
    color: var(--pirate-white);
    padding: 0;
}

/* Post image styling */
.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 48px;
    border: none;
    box-shadow: var(--shadow-lg);
}

/* Enhanced post footer */
.post-footer {
    background: var(--pirate-black);
    color: var(--pirate-white);
    padding: 48px;
    margin-top: 64px;
    border-top: 4px solid var(--pirate-yellow);
}

.post-tags {
    margin-bottom: 32px;
}

.post-tags h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pirate-yellow);
}

.tag {
    display: inline-block;
    background: transparent;
    color: var(--pirate-yellow);
    border: 2px solid var(--pirate-yellow);
    padding: 6px 16px;
    margin-right: 12px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.tag:hover {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    transform: translateY(-2px);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.post-share h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pirate-yellow);
    margin: 0;
}

.share-btn {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border: 2px solid var(--pirate-yellow);
}

.share-btn:hover {
    background: transparent;
    color: var(--pirate-yellow);
    transform: translateY(-2px);
}

/* Reading progress indicator */
.reading-progress-category {
    background: linear-gradient(90deg, var(--category-color), var(--pirate-yellow)) !important;
}

/* Responsive adjustments for posts */
@media (max-width: 768px) {
    .post-title {
        font-size: 36px;
    }
    
    .post-subtitle {
        font-size: 16px;
    }
    
    .post-header {
        padding: 24px 20px 20px 20px;
        min-height: 250px;
    }
    
    .post-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .post-meta-compact {
        gap: 15px;
        font-size: 12px;
    }
    
    .post-content {
        font-size: 17px;
    }
    
    .post-content h2 {
        font-size: 28px;
        margin: 32px 0 16px;
    }
    
    .post-footer-modern {
        padding: 20px;
        margin: 32px 0 24px;
    }
    
    .tags-section,
    .share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .section-label {
        font-size: 14px;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 16px 0;
        margin: 16px 0;
    }
    
    .author-avatar {
        align-self: center;
    }
    
    .author-avatar img {
        width: 64px;
        height: 64px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .author-name {
        font-size: 22px;
    }
    
    .author-title {
        font-size: 14px;
    }
    
    .author-bio {
        font-size: 14px;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
        gap: 16px;
        margin-top: 12px;
    }
    
    .tags-container,
    .share-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 28px;
    }
    
    .post-subtitle {
        font-size: 14px;
    }
    
    .post-header {
        padding: 20px 15px 16px 15px;
        min-height: 200px;
    }
    
    .post-meta-compact {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .post-category-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .post-author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .post-footer-modern {
        padding: 16px;
        margin: 24px 0 16px;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .share-btn-modern {
        padding: 10px 14px;
        font-size: 13px;
        justify-content: center;
    }
    
    .author-section {
        padding: 16px;
        gap: 16px;
    }
    
    .author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-title,
    .author-bio {
        font-size: 13px;
    }
    
    .author-social {
        gap: 8px;
        margin: 8px 0;
    }
    
    .social-link {
        font-size: 12px;
        padding: 3px 6px;
    }
}

/* Video Player Styles */
.video-player-section {
    padding: 40px 0;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.video-player-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-video-player {
    background: var(--pirate-black);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-video-player video {
    width: 100%;
    height: auto;
    min-height: 300px;
    display: block;
}

.video-controls {
    background: linear-gradient(135deg, var(--pirate-black), #1a1a1a);
    padding: 15px 20px;
    color: var(--pirate-white);
}

.video-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--pirate-yellow);
}

.video-info p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.4;
}

.video-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.video-btn {
    background: var(--pirate-yellow);
    border: none;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--pirate-black);
}

.video-btn:hover {
    background: var(--pirate-yellow-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.video-playlist {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 20px;
    height: fit-content;
}

.video-playlist h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--pirate-yellow);
    padding-bottom: 8px;
}

.playlist-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.playlist-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: var(--pirate-white);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.playlist-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--pirate-yellow);
}

.playlist-item.active {
    border-color: var(--pirate-yellow);
    background: linear-gradient(135deg, #fff9e6, var(--pirate-white));
}

.playlist-thumbnail {
    position: relative;
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, var(--pirate-gray), #666);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-icon {
    font-size: 20px;
    color: var(--pirate-yellow);
}

.video-duration {
    position: absolute;
    bottom: 2px;
    right: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 2px;
}

.playlist-info {
    flex: 1;
    min-width: 0;
}

.playlist-info h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.playlist-info p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Audio section styles (zachováno) */
.audio-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.audio-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.audio-item {
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: var(--radius-md);
}

.audio-info {
    margin-bottom: 10px;
}

.audio-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.audio-duration {
    font-size: 12px;
    color: var(--text-light);
}

.audio-item audio {
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .video-player-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-playlist {
        order: -1;
    }
    
    .playlist-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 10px;
    }
    
    .video-actions {
        flex-wrap: wrap;
    }
    
    .main-video-player video {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .video-player-container {
        padding: 0 10px;
    }
    
    .playlist-thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .playlist-info h5 {
        font-size: 12px;
    }
    
    .playlist-info p {
        font-size: 10px;
    }
    
    .video-controls {
        padding: 10px 15px;
    }
    
    .video-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Kompaktní video přehrávač v postranním panelu */
.video-player-sidebar {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: visible;
}

.compact-video-player {
    position: relative;
    display: flex;
    flex-direction: column;
}

.video-container {
    position: relative;
    width: 100%;
    z-index: 2;
}

.compact-video-player video {
    width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    cursor: pointer;
}

/* Video overlay s obrázkem a nadpisem */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px; /* Pevná výška jen pro video element */
    max-height: 200px; /* Odpovídá max-height videa */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    z-index: 10;
    padding: 20px;
    text-align: center;
    pointer-events: all;
}

.video-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.video-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.video-overlay-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 200px;
}

/* Play tlačítko */
.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.play-button:hover {
    transform: scale(1.1);
}

/* Seznam videí pod přehrávačem */
.video-playlist-below {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.video-playlist-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-playlist-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.video-playlist-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    transform: translateX(4px);
}

.video-info-compact {
    padding: 12px 16px 8px;
    border-bottom: 1px solid var(--border-color);
}

.video-info-compact h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.video-info-compact p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.video-controls-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-secondary);
    gap: 4px;
}

.video-btn-compact {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 6px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.video-btn-compact:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.sidebar-playlist {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    max-height: 200px;
    overflow-y: auto;
}

.sidebar-playlist-item {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-playlist-item:hover {
    background: var(--bg-secondary);
}

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

.sidebar-playlist-item.active {
    background: var(--primary-color);
    color: var(--pirate-black);
}

.playlist-play-icon {
    font-size: 12px;
    flex-shrink: 0;
}

.playlist-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    flex: 1;
}

/* Sekce nejnovějších článků - kompaktní design */
.recent-articles-section {
    padding: 20px 0;
}

.recent-articles-section .section-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.recent-articles-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

.article-list-item {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.article-list-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.article-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    gap: 16px;
    padding: 12px;
}

.article-image-small {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

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

.article-list-item:hover .article-image-small img {
    transform: scale(1.05);
}

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

.article-content-small {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.article-title-small {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-list-item:hover .article-title-small {
    color: var(--primary-color);
}

.article-excerpt-small {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-meta-small {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: var(--text-light);
    margin-top: auto;
}

.article-meta-small .date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-meta-small .date::before {
    content: "📅";
    font-size: 10px;
}

.article-left-column .category {
    background: var(--primary-color);
    color: var(--pirate-black);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    display: inline-block;
    width: fit-content;
}

.article-meta-small .read-time {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-meta-small .read-time::before {
    content: "⏱️";
    font-size: 10px;
}

/* Responzivní úpravy pro sekci článků */
@media (max-width: 768px) {
    .article-link {
        padding: 10px;
        gap: 12px;
    }
    
    .article-image-small {
        width: 160px;
        height: 120px;
    }
    
    .article-title-small {
        font-size: 28px;
    }
    
    .article-excerpt-small {
        font-size: 24px;
        -webkit-line-clamp: 1;
    }
    
    .article-meta-small {
        font-size: 20px;
        gap: 8px;
    }
}

/* Světové zprávy v sekci trendy */
.world-news-item {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.world-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 201, 0, 0.3);
}

.world-news-flag {
    font-size: 24px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: flag-pulse 3s ease-in-out infinite;
}

@keyframes flag-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.world-news-badge {
    background: var(--pirate-black);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.world-news-title {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.world-news-item:hover .world-news-title {
    color: var(--primary-color);
}

.world-news-time {
    background: var(--primary-color);
    color: var(--pirate-black);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responzivní úpravy pro světové zprávy */
@media (max-width: 768px) {
    .world-news-flag {
        font-size: 20px;
        top: 8px;
        left: 8px;
    }
    
    .world-news-title {
        font-size: 12px;
    }
    
    .world-news-badge {
        font-size: 8px;
    }
}

/* ====================
   WORLD NEWS PAGE STYLES
==================== */

.world-news-page {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    background: var(--bg-primary);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--pirate-yellow), var(--pirate-yellow-dark));
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.page-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--pirate-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-description {
    font-size: 1.2rem;
    color: var(--pirate-black);
    font-weight: 500;
    opacity: 0.9;
}

.last-updated {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--pirate-gray);
    font-weight: 600;
}

/* Page layout styles */
.page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-content {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    line-height: 1.8;
}

.page-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.page-content h3 {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.page-content p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.page-content ul, .page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.page-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.page-content a:hover {
    border-bottom-color: var(--primary-color);
}

.page-content code {
    background: var(--bg-secondary);
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.page-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 3rem 0;
}

/* Responsive design for page content */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 1rem 0;
    }
    
    .page-content {
        padding: 2rem 1.5rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.6rem;
    }
}

/* Weather Widget Styles */
.weather-widget {
    background: var(--bg-primary);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.weather-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--primary-color), transparent);
    opacity: 0.03;
    pointer-events: none;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.weather-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-icon {
    font-size: 1.5rem;
    animation: weatherBounce 2s ease-in-out infinite;
}

@keyframes weatherBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.weather-city-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.weather-city-select:hover,
.weather-city-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(254, 201, 0, 0.2);
}

.weather-content {
    min-height: 200px;
}

.weather-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--text-secondary);
}

.weather-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--bg-secondary);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: weatherSpin 1s linear infinite;
}

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

.weather-current {
    margin-bottom: 1.5rem;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.weather-current-icon {
    font-size: 3rem;
    animation: weatherPulse 3s ease-in-out infinite;
}

@keyframes weatherPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.weather-temp-info {
    display: flex;
    flex-direction: column;
}

.weather-temperature {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.weather-description {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-details {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.weather-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.weather-detail-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.weather-detail-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.weather-forecast {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.weather-forecast-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-forecast-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.weather-forecast-day {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.weather-forecast-day:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.weather-forecast-day-name {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.weather-forecast-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.weather-forecast-temps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.weather-forecast-max {
    font-weight: 700;
    color: var(--text-primary);
}

.weather-forecast-min {
    color: var(--text-secondary);
}

.weather-error {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.weather-error-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.weather-error-text {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.weather-retry-btn {
    background: var(--primary-color);
    color: var(--pirate-black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.weather-retry-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.weather-updated {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Weather Detection Info */
.weather-detection-info {
    text-align: center;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    line-height: 1.3;
}

.weather-detection-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.weather-detection-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.weather-detection-success {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(34, 197, 94);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.weather-detection-stored {
    background: rgba(59, 130, 246, 0.1);
    color: rgb(59, 130, 246);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.weather-detection-fallback {
    background: rgba(245, 158, 11, 0.1);
    color: rgb(245, 158, 11);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.weather-detection-detecting {
    background: rgba(156, 163, 175, 0.1);
    color: rgb(156, 163, 175);
    border: 1px solid rgba(156, 163, 175, 0.2);
}

.weather-detection-manual {
    background: rgba(168, 85, 247, 0.1);
    color: rgb(168, 85, 247);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.weather-detection-detecting .weather-detection-icon {
    animation: detectingPulse 1.5s ease-in-out infinite;
}

@keyframes detectingPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Weather Activity Recommendation */
.weather-recommendation {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, 
        rgba(254, 201, 0, 0.1) 0%, 
        rgba(254, 201, 0, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.weather-recommendation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%);
    opacity: 0.6;
}

.weather-activity-tip {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.weather-activity-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: activityPulse 2s ease-in-out infinite;
}

@keyframes activityPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.weather-activity-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.weather-activity-text strong {
    color: var(--text-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-activity-text small {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.3;
    font-style: italic;
}

/* Responsive Weather Widget */
@media (max-width: 768px) {
    .weather-widget {
        padding: 1rem;
    }
    
    .weather-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .weather-title {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .weather-main {
        justify-content: center;
        text-align: center;
    }
    
    .weather-temperature {
        font-size: 2rem;
    }
    
    .weather-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .weather-forecast-days {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .weather-forecast-day {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 0.75rem;
    }
    
    .weather-forecast-day-name {
        margin-bottom: 0;
        min-width: 40px;
    }
    
    .weather-forecast-icon {
        margin-bottom: 0;
        margin: 0 1rem;
    }
    
    .weather-forecast-temps {
        margin-left: auto;
    }
    
    .weather-activity-tip {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .weather-activity-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .weather-current-icon {
        font-size: 2.5rem;
    }
    
    .weather-temperature {
        font-size: 1.8rem;
    }
    
    .weather-details {
        padding: 0.75rem;
    }
}

.world-news-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.world-news-page .world-news-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

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

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

.world-news-page .world-news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.news-placeholder-content {
    text-align: center;
    padding: 1.5rem;
    max-width: 90%;
}

.news-placeholder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.news-placeholder-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-flag {
    font-size: 1.2rem;
}

.news-source {
    font-weight: 600;
    color: var(--pirate-black);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-time {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: auto;
}

.news-title {
    margin-bottom: 1rem;
}

.news-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: var(--pirate-yellow-dark);
}

.original-title {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

.news-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.news-actions {
    display: flex;
    justify-content: flex-end;
}

.read-more-btn {
    background: var(--pirate-yellow);
    color: var(--pirate-black);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn:hover {
    background: var(--pirate-black);
    color: var(--pirate-yellow);
    transform: translateY(-1px);
}

.external-icon {
    font-size: 0.8rem;
}

.no-news {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.news-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.news-footer a {
    color: var(--pirate-yellow-dark);
    text-decoration: none;
}

.news-footer a:hover {
    text-decoration: underline;
}

/* Tablet styles */
@media (min-width: 768px) {
    .world-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-title {
        font-size: 4rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .world-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .world-news-page .world-news-item {
        display: flex;
        flex-direction: column;
    }
    
    .news-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .news-actions {
        margin-top: auto;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .world-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}