* {
    overflow-wrap: break-word;
    word-break: normal;
}

:root {
    --color-navy: #0B1F3A;
    --color-red: #E32017;
    --color-blue: #1F4E79;
    --color-green: #2D6A4F;
    --color-gold: #B89C1D;
    --color-brick: #A23C2E;
    --color-fog: #F7F8FA;
    --color-mist: #EEF1F4;
    --color-pewter: #B9C2CF;
    --color-slate: #556072;
    --color-ink: #0A0D14;
    --color-graphite: #2B2F36;
    --bg-page: var(--color-fog);
    --bg-card: var(--color-mist);
    --text: var(--color-ink);
    --text-muted: var(--color-slate);
    --border: var(--color-pewter);
    --link: var(--color-navy);
    --primary: var(--color-red);
    --secondary: var(--color-blue);
    --success: var(--color-green);
    --focus: var(--color-gold);
}

[data-theme="dark"] {
    --bg-page: #0E1218;
    --bg-card: #141A22;
    --text: var(--color-fog);
    --text-muted: #A9B3C3;
    --border: #2A313B;
    --link: #AECBFA;
    --primary: #FF4A3C;
    --secondary: #5DA0FF;
    --success: #55B08A;
    --focus: #FFD166;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(180deg,
            #041429 10%,
            #2974B9 63%,
            #FFFFFF 100%);
    background-size: 100% 100vh;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    min-height: 100vh;
}

.wide_pc {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
    border: none;
    min-height: 800px;
    position: relative;
}

.main-nav {
    box-shadow: 0 2px 10px rgba(11, 31, 58, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.main-nav.scrolled {
    background: white;
}

.main-nav .nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.main-nav.scrolled .nav-link {
    color: var(--text) !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.main-nav .nav-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-nav.scrolled .nav-link {
    color: var(--text) !important;
}

.main-nav .nav-link:hover {
    background: var(--bg-card);
    color: var(--link);
}

.main-nav .nav-link.active {
    background: var(--primary);
    color: white !important;
}

.nav-toggle {
    display: none;
}

.header {
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 0 0 15px 15px;
}

h1 {
    display: block;
    font-size: 24px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    font-weight: bold;
    color: white;
}

.header h1 {
    font-size: clamp(24px, 5vw, 42px);
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
}

.header p {
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-size: 18px;
}

.header-highlight {
    display: inline-block;
    width: 160px;
    height: 80px;
    border-radius: 80px;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 10px;
}

.header-highlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weather-banner {
    background: linear-gradient(135deg, var(--secondary), var(--link));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(31, 78, 121, 0.15);
    position: relative;
}

.weather-summary {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}

.weather-day {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.weather-day .day {
    font-weight: 600;
}

.weather-day .temp {
    font-weight: 700;
}

.weather-link {
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.weather-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.featured-event {
    margin: 30px 0;
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
}

.featured-badge {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.featured-overlay h2 {
    font-size: 32px;
    margin: 0 0 10px 0;
    color: white;
}

.featured-overlay h2::after {
    display: none;
}

.featured-overlay p {
    font-size: 18px;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.event-details {
    font-size: 14px;
    opacity: 0.8;
}

.planning-section {
    margin: 40px 0;
}

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

.planning-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.planning-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.planning-card h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 20px;
}

.planning-card p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

.planning-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.planning-link:hover {
    transform: scale(1.05);
}

h2 {
    font-size: clamp(20px, 4vw, 28px);
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

.this_weekend_header,
.next_weekend_header {
    font-size: clamp(20px, 4vw, 28px);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.sorting-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sort-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 78, 121, 0.3);
}

.sort-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 78, 121, 0.4);
    background: var(--link);
}

.sort-btn.active {
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(227, 32, 23, 0.3);
}

.sort-btn:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

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

.explore-more {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

.explore-more p {
    margin: 0 0 15px 0;
    font-weight: 600;
    color: #2c3e50;
}

.day-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.day-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.day-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

.explore-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.explore-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.explore-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.filter-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.filter-btn.active {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 2px 8px rgba(240, 147, 251, 0.3);
}

.filter-btn.active:hover {
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.4);
}

.carousel {
    background: transparent;
    margin: 20px 0;
}

.carousel-cell {
    width: 280px;
    height: 200px;
    margin-right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    counter-increment: carousel-cell;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-cell.is-selected {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    transform: scale(1.05);
}

.carousel-cell:before {
    display: block;
    text-align: center;
    content: counter(carousel-cell);
    line-height: 200px;
    font-size: 60px;
    color: white;
    font-weight: 700;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.carousel-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.carousel-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
}

.show-times {
    font-size: 12px;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.theatre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.theatre-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.theatre-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.availability {
    background: #27ae60;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.availability.limited {
    background: #f39c12;
}

.theatre-info {
    padding: 20px;
}

.theatre-info h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 20px;
}

.theatre-venue {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.show-schedule {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.show-day {
    font-size: 13px;
    color: #666;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 8px;
}

.theatre-price {
    font-weight: 700;
    color: #667eea;
    font-size: 18px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.12);
    border-color: var(--secondary);
}

.event-card:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

@media (max-width: 768px) {
    .event-image-container {
        height: 120px;
        aspect-ratio: 2/1;
    }
}

.event-price-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: white;
    color: black;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

@media (max-width: 768px) {
    .event-price-overlay {
        bottom: 6px;
        right: 6px;
        font-size: 12px;
        padding: 3px 6px;
    }
}

.event-info {
    padding: 20px;
}

.event-info h3 {
    margin: 0 0 8px 0;
    color: var(--link);
    font-size: 20px;
}

.venue {
    color: var(--text-muted);
    margin: 0 0 10px 0;
    font-size: 14px;
}

.description {
    color: var(--text-muted);
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.price,
.duration,
.crowd {
    background: var(--bg-card);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.price {
    color: var(--success);
}

.duration {
    color: var(--secondary);
}

.crowd {
    color: var(--primary);
}

.food-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.food-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.12);
}

.food-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.food-card h3 {
    margin: 0 0 10px 0;
    color: var(--link);
    font-size: 18px;
}

.iconic-tickets-section {
    margin: 40px 0;
}

.iconic-tickets-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: left;
}

.iconic-tickets-section .event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px 10px 0 0;
}

.day-tours-section {
    margin: 40px 0;
}

.day-tours-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: left;
}

.event-duration {
    color: var(--secondary);
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
}

.event-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0;
    height: 55px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.event-rating {
    color: #f39c12;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

.food-card p {
    margin: 0 0 10px 0;
    color: #666;
}

.time {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
}

.music-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.music-event {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.music-event:hover {
    transform: translateY(-3px);
}

.music-details h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 18px;
}

.music-details p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 14px;
}

.music-time {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
}

.music-price {
    font-weight: 700;
    color: #27ae60;
    font-size: 18px;
}

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

.outdoor-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.outdoor-card h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 18px;
}

.outdoor-card p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
}

.outdoor-info {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
}

.exhibitions-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.exhibition-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.opening-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.exhibition-info {
    padding: 20px;
}

.exhibition-info h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 20px;
}

.exhibition-venue {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.exhibition-desc {
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.exhibition-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.exhibition-price,
.exhibition-duration,
.exhibition-type {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.exhibition-price {
    color: #27ae60;
}

.exhibition-duration {
    color: #667eea;
}

.exhibition-type {
    color: #e74c3c;
}

.special-events {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.special-event {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.special-event:hover {
    transform: translateY(-3px);
}

.date-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-details h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 18px;
}

.event-details p {
    margin: 0 0 8px 0;
    color: #666;
    line-height: 1.6;
}

.event-location {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
}

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

.festival-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.festival-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.festival-card h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 18px;
}

.festival-card p {
    margin: 0 0 10px 0;
    color: #666;
}

.festival-time {
    display: block;
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
}

.festival-price {
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
}

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

.concert-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.concert-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.concert-badge.available {
    background: #27ae60;
}

.concert-info {
    padding: 20px;
}

.concert-info h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 18px;
}

.concert-info p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 14px;
}

.concert-time {
    display: block;
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
}

.concert-price {
    font-weight: 700;
    color: #27ae60;
    font-size: 16px;
}

.events-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.events-slider::-webkit-scrollbar {
    height: 6px;
}

.events-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.events-slider::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.container {
    position: relative;
    text-align: center;
    color: white;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

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

.container:hover .event-image {
    transform: scale(1.05);
}

.top-right {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    width: 90%;
    max-width: 200px;
}

.bottom-right {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.forecast-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.weekend-forecast,
.next-weekend-forecast {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.weekend-forecast:hover,
.next-weekend-forecast:hover {
    transform: translateY(-3px);
}

.weekend-forecast h2,
.next-weekend-forecast h2 {
    margin-top: 0;
    font-size: 18px;
    color: #2c3e50;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.forecast-list {
    list-style: none;
    padding: 0;
}

.forecast-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.forecast-list li:last-child {
    border-bottom: none;
}

.weekend-highlights {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

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

.highlight-item {
    text-align: center;
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.highlight-item h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.highlight-item p {
    margin: 0;
    color: #666;
}

.weekend-tips,
.planning-tips {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.tip h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
}

.tip p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.footer {
    background: linear-gradient(135deg, var(--link), var(--secondary));
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
    border-radius: 15px 15px 0 0;
}

.footer-menu {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.footer-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-right: 5px;
}

.weekend-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 20px 0;
}

.weekend-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(11, 31, 58, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.weekend-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--link));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.weekend-widget:hover::before {
    transform: scaleX(1);
}

.weekend-widget:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(11, 31, 58, 0.12);
    border-color: var(--secondary);
}

.this-weekend {
    border-left: 4px solid var(--primary);
}

.next-weekend {
    border-left: 4px solid var(--secondary);
}

.widget-content {
    position: relative;
    z-index: 1;
}

.widget-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.widget-content h3 {
    margin: 0 0 10px 0;
    color: var(--link);
    font-size: 24px;
    font-weight: 700;
}

.widget-date {
    margin: 0 0 15px 0;
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
}

.widget-description {
    margin: 0 0 20px 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

.widget-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.widget-cta {
    color: #667eea;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

.weekend-widget:hover .widget-cta {
    color: #764ba2;
}

@media (max-width: 768px) {
    .wide_pc {
        padding: 0 15px;
    }

    .page-navigation {
        padding: 0;
        margin: 20px 0;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .page-navigation .nav-links {
        display: flex !important;
        flex-direction: row !important;
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        max-height: none !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .page-navigation .nav-link {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 48px;
        min-width: 48px;
        border-width: 2px;
        color: #000000 !important;
        background: white !important;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .header {
        padding: 30px 15px;
        margin-bottom: 20px;
    }

    .header-highlight {
        width: 80px;
        height: 40px;
    }

    body {
        font-size: 14px;
    }

    button,
    .btn,
    a[role="button"] {
        min-height: 44px;
        min-width: 44px;
    }

    .weather-summary {
        gap: 15px;
    }

    .weather-day {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

    .weather-day .day,
    .weather-day .temp,
    .weather-day .icon {
        font-size: 20px !important;
    }

    .featured-image img {
        height: 300px;
    }

    .featured-overlay {
        padding: 30px 20px 20px;
    }

    .featured-overlay h2 {
        font-size: 24px;
    }

    .planning-grid,
    .theatre-grid,
    .events-grid,
    .food-section,
    .outdoor-section,
    .exhibitions-section,
    .food-festivals,
    .concerts-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .music-event,
    .special-event {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .event-date {
        align-self: center;
    }

    .carousel-cell {
        width: 250px;
        height: 180px;
    }

    .carousel-cell:before {
        font-size: 50px;
        line-height: 180px;
    }

    .container {
        min-width: 220px;
        height: 280px;
    }

    .forecast-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .weekend-forecast,
    .next-weekend-forecast {
        padding: 20px;
    }

    .centered {
        font-size: 16px;
        padding: 12px 16px;
    }

    .top-right {
        font-size: 12px;
        padding: 6px 10px;
    }

    .bottom-right {
        font-size: 11px;
        padding: 6px 10px;
    }

    .highlights-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .weekend-widgets {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .weekend-widget {
        padding: 25px;
    }

    .widget-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .sorting-controls {
        flex-direction: column;
        gap: 8px;
    }

    .sort-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .nav-container {
        height: auto;
        min-height: 60px;
        padding: 10px 15px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-ink);
        border-radius: 0 0 10px 10px;
        overflow: hidden;
        max-height: 0;
        z-index: 2000;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 100vh;
        min-height: 100vh;
    }

    .nav-link {
        padding: 15px 20px;
        border-radius: 0;
        text-align: center;
        font-size: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover {
        background: #f8f9fa;
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: #667eea;
        cursor: pointer;
        padding: 8px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .nav-toggle:hover {
        background: #f0f0f0;
    }

    .nav-toggle:focus {
        outline: none;
        background: #f0f0f0;
    }

    .widget-content h3 {
        font-size: 20px;
    }

    .widget-features {
        gap: 6px;
    }

    .feature {
        font-size: 11px;
        padding: 5px 10px;
    }
}

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

    .page-navigation {
        padding: 12px;
        margin: 15px 0;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .page-navigation .nav-links {
        display: flex !important;
        flex-direction: row !important;
        gap: 4px;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        max-height: none !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .page-navigation .nav-link {
        padding: 14px 18px;
        font-size: 15px;
        min-height: 48px;
        min-width: 48px;
        border-width: 2px;
        flex: 0 0 auto;
        white-space: nowrap;
        justify-content: center;
        color: #000000 !important;
        background: white !important;
    }

    .header {
        padding: 25px 10px;
    }

    .featured-image img {
        height: 250px;
    }

    .featured-overlay h2 {
        font-size: 20px;
    }

    .featured-overlay p {
        font-size: 16px;
    }

    .carousel-cell {
        width: 200px;
        height: 150px;
    }

    .carousel-cell:before {
        font-size: 40px;
        line-height: 150px;
    }

    .container {
        width: 100%;
        height: auto;
    }

    .events-slider {
        gap: 10px;
    }

    .centered {
        font-size: 14px;
        padding: 10px 12px;
    }

    .top-right {
        font-size: 11px;
        padding: 5px 8px;
    }

    .bottom-right {
        font-size: 10px;
        padding: 5px 8px;
    }

    .highlight-icon {
        font-size: 30px;
    }

    .planning-icon,
    .food-icon,
    .festival-icon {
        font-size: 36px;
    }

    .weekend-widget {
        padding: 20px;
    }

    .widget-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .widget-content h3 {
        font-size: 18px;
    }

    .widget-date {
        font-size: 14px;
    }

    .widget-description {
        font-size: 13px;
    }

    .widget-cta {
        font-size: 14px;
    }

    .weather-day .day,
    .weather-day .temp,
    .weather-day .icon {
        font-size: 20px !important;
    }
}

.flex {
    display: flex;
}

html {
    scroll-behavior: smooth;
}

*:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.event-image {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

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

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 320px);
    gap: 16px;
    margin: 20px 0 30px;
    justify-content: space-between;
}

.cards-grid .event-card {
    width: 100%;
    max-width: 320px;
    justify-self: center;
}

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

    .cards-grid .event-card {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 400px);
        justify-content: center;
    }

    .cards-grid .event-card {
        max-width: 400px;
    }
}

.cards-grid:has(.event-card:only-child) {
    justify-items: center;
}

.cards-grid.single-card {
    justify-items: center;
}

.event-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: auto;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.08);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.12);
    border-color: var(--secondary);
}

.event-card:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f2f2f2;
}

.hidden {
    display: none;
}

.badge-category {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(162, 60, 46, 0.95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
}

.badge-category:hover {
    background: rgba(162, 60, 46, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.badge-min-age {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(227, 32, 23, 0.95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.badge-min-age:hover {
    background: rgba(227, 32, 23, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.badge-category[data-category="tours"],
.badge-category[data-category="Tours"] {
    background: rgba(31, 78, 121, 0.95);
}

.badge-category[data-category="tours"]:hover,
.badge-category[data-category="Tours"]:hover {
    background: rgba(31, 78, 121, 1);
}

.badge-category[data-category="churches & cathedrals"],
.badge-category[data-category="Churches & cathedrals"] {
    background: rgba(45, 106, 79, 0.95);
}

.badge-category[data-category="churches & cathedrals"]:hover,
.badge-category[data-category="Churches & cathedrals"]:hover {
    background: rgba(45, 106, 79, 1);
}

.badge-category[data-category="nature & adventure"],
.badge-category[data-category="Nature & adventure"] {
    background: rgba(184, 156, 29, 0.95);
    color: var(--color-ink);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.badge-category[data-category="nature & adventure"]:hover,
.badge-category[data-category="Nature & adventure"]:hover {
    background: rgba(184, 156, 29, 1);
}

.badge-category[data-category="attraction"],
.badge-category[data-category="Attraction"] {
    background: rgba(162, 60, 46, 0.95);
}

.badge-category[data-category="attraction"]:hover,
.badge-category[data-category="Attraction"]:hover {
    background: rgba(162, 60, 46, 1);
}

.badge-category[data-category="kids"],
.badge-category[data-category="Kids"] {
    background: rgba(45, 106, 79, 0.95);
}

.badge-category[data-category="kids"]:hover,
.badge-category[data-category="Kids"]:hover {
    background: rgba(45, 106, 79, 1);
}

.badge-category[data-category="club"],
.badge-category[data-category="Club"] {
    background: rgba(227, 32, 23, 0.95);
}

.badge-category[data-category="club"]:hover,
.badge-category[data-category="Club"]:hover {
    background: rgba(227, 32, 23, 1);
}

.badge-category[data-category="event"],
.badge-category[data-category="Event"] {
    background: rgba(31, 78, 121, 0.95);
}

.badge-category[data-category="event"]:hover,
.badge-category[data-category="Event"]:hover {
    background: rgba(31, 78, 121, 1);
}

.badge-category:not([data-category="tours"]):not([data-category="Tours"]):not([data-category="churches & cathedrals"]):not([data-category="Churches & cathedrals"]):not([data-category="nature & adventure"]):not([data-category="Nature & adventure"]):not([data-category="attraction"]):not([data-category="Attraction"]):not([data-category="kids"]):not([data-category="Kids"]):not([data-category="club"]):not([data-category="Club"]):not([data-category="event"]):not([data-category="Event"]) {
    background: rgba(162, 60, 46, 0.95);
}

.badge-category:not([data-category="tours"]):not([data-category="Tours"]):not([data-category="churches & cathedrals"]):not([data-category="Churches & cathedrals"]):not([data-category="nature & adventure"]):not([data-category="Nature & adventure"]):not([data-category="attraction"]):not([data-category="Attraction"]):not([data-category="kids"]):not([data-category="Kids"]):not([data-category="club"]):not([data-category="Club"]):not([data-category="event"]):not([data-category="Event"]):hover {
    background: rgba(162, 60, 46, 1);
}

.carousel-section {
    margin: 2rem 0;
    position: relative;
    overflow: visible;
}

.carousel-title {
    color: var(--link);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: visible;
    border-radius: 16px;
}

.carousel-scroll {
    overflow: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    border-radius: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-scroll::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    display: inline-block;
    width: 320px;
    margin-right: 16px;
    vertical-align: top;
    flex-shrink: 0;
}

.carousel-card:last-child {
    margin-right: 0;
}

.carousel-card .event-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
    position: relative;
    height: auto;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.08);
    width: 100%;
}

.carousel-card .event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.12);
}

@media (max-width: 600px) {
    .carousel-card {
        width: 90%;
        margin-right: 12px;
    }
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--link);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 1000;
    font-size: 1.2rem;
}

.carousel-btn--prev {
    display: none;
}

.carousel-btn--next {
    display: flex;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

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

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

.carousel-progress {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.carousel-progress-track {
    width: 300px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.carousel-progress-fill {
    height: 100%;
    background: var(--link);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

@media (max-width: 600px) {
    .carousel-progress-track {
        width: 250px;
        height: 3px;
    }
}

@media (max-width: 768px) {
    .carousel-slide-desktop {
        display: none !important;
    }

    .carousel-container {
        overflow: hidden;
        margin: 0;
    }

    .carousel-track {
        width: 100%;
        overflow: visible;
    }

    .carousel-track {
        display: flex !important;
        width: 100%;
        padding: 0 16px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
    }

    .carousel-track::-webkit-scrollbar {
        width: 0 !important;
        display: none;
    }

    .carousel-track::after {
        content: "";
        display: block;
        flex: 0 0 16px;
    }

    .carousel-slide-mobile {
        display: block !important;
        flex: 0 0 auto;
        width: 280px;
        padding: 0;
    }

    .carousel-slide-mobile .event-card {
        width: 100%;
        margin: 0;
    }

    .carousel-arrow,
    .carousel-dots {
        display: none !important;
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .page-navigation .nav-link {
            padding: 10px 16px;
            font-size: 15px;
            min-width: 44px;
        }

        .page-navigation .nav-links {
            gap: 12px;
        }
    }

    .event-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(11, 31, 58, 0.1);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .event-card img {
        height: 180px;
    }

    .event-body {
        padding: 10px 12px 8px;
    }

    .event-card .event-title {
        font-size: 15px !important;
        height: 59px !important;
        line-height: 1.3 !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        margin: 0 0 6px 0 !important;
    }

    .event-card .event-description {
        font-size: 12px !important;
        line-height: 1.4 !important;
        height: 50px !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        margin-bottom: 8px !important;
        color: var(--text-muted) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .event-card .event-body {
        padding: 10px 12px 8px !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cards-grid {
        gap: 15px;
        padding: 0 15px;
    }

    .cards-grid .event-card {
        max-width: 100%;
        min-width: auto;
    }

    .badge-category,
    .badge-min-age {
        font-size: 10px;
        padding: 4px 8px;
        border-radius: 10px;
    }

    .event-time-price-row {
        margin-top: 8px;
    }

    .event-time,
    .event-price {
        font-size: 11px;
    }

    .event-card {
        will-change: transform;
        backface-visibility: hidden;
    }

    .event-card:focus {
        outline: 2px solid var(--focus);
        outline-offset: 2px;
    }

    .event-card img {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }

    @keyframes loading {
        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -200% 0;
        }
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-container {
        padding: 0;
    }

    .carousel-slide {
        flex: 0 0 100%;
        padding: 0 8px;
    }

    .event-card img {
        height: 190px;
    }

    .event-body {
        padding: 12px 14px 14px;
    }

    .event-title {
        font-size: 16px;
        height: 63px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .event-description {
        font-size: 13px;
        height: 55px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .cards-grid {
        gap: 20px;
        padding: 0 20px;
    }
}

.carousel-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px 0;
}

.carousel-progress-bar {
    width: 300px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.carousel-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s ease;
    width: 0%;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
}

.carousel-dots .carousel-dot,
button.carousel-dot {
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    min-height: 8px !important;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    margin: 0 4px;
    padding: 0;
    box-sizing: border-box;
}

.carousel-dot-desktop,
.carousel-dot-mobile {
    display: none;
}

@media (min-width: 769px) {
    .carousel-dot-desktop {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .carousel-dot-mobile {
        display: inline-block;
    }
}

.carousel-dots .carousel-dot:hover,
button.carousel-dot:hover {
    background: var(--secondary);
    opacity: 0.8;
    transform: scale(1.1);
}

.carousel-dots .carousel-dot.active,
button.carousel-dot.active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--link);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
    pointer-events: auto;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow:disabled {
    opacity: 1;
    cursor: pointer;
    transform: translateY(-50%) scale(1);
}

.carousel-arrow:disabled:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(11, 31, 58, 0.2);
    transform: translateY(-50%) scale(1.05);
}

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

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

@media (max-width: 1024px) and (min-width: 769px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
        border: 1.5px solid rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

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

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

@media (max-width: 768px) {
    .carousel-arrow {
        width: 24px;
        height: 24px;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.7);
        font-size: 12px;
    }

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

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

    .carousel-arrow:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-50%) scale(1.05);
    }

    .carousel-arrow svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
    }

    .carousel-arrow::before,
    .carousel-arrow::after {
        width: 12px;
        height: 12px;
    }

    .carousel-arrow:active {
        transform: translateY(-50%) scale(0.95);
        transition: transform 0.1s ease;
    }
}

.day-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.day-nav-link {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.day-nav-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 31, 58, 0.15);
}

.day-nav-link:active {
    transform: translateY(0);
}

.carousel-slide .event-card:hover,
.carousel-slide-desktop .event-card:hover,
.carousel-slide-mobile .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.12);
    border-color: var(--secondary);
    background: var(--bg-card);
}

.carousel-track.loading {
    opacity: 0.7;
}

.carousel-slide .event-card:focus-visible,
.carousel-slide-desktop .event-card:focus-visible,
.carousel-slide-mobile .event-card:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.carousel-arrow:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 2px;
}

.carousel-dot:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 2px;
}

.show-more-container {
    text-align: center;
    margin: 12px 0 24px;
}

.show-more-btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: var(--link);
    transform: translateY(-2px);
}

.show-more-btn:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.img-fallback {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .img-fallback {
        height: 120px;
    }
}

.event-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.event-title {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.3;
    color: var(--link);
    height: 63px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.event-venue {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.event-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    height: 55px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.event-time {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.event-time-spacer {
    height: 18px;
    margin-top: 6px;
}

.event-date {
    margin-left: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.event-price {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
}

.event-organizer {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 8px;
}

.event-card-wrapper {
    display: contents;
}

.event-card-wrapper.hidden {
    display: none;
}

.page-navigation {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px;
    margin: 30px 0;
    box-shadow: none;
}

.nav-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.page-navigation .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: white;
    color: #000000 !important;
    text-decoration: none;
    border: 2px solid var(--color-slate);
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 48px;
    min-width: 48px;
    flex: 0 0 auto;
}

.page-navigation .nav-link:hover,
.page-navigation .nav-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.15);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.show-all-free-events,
.show-all-musicals,
.show-all-theater-shows {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.show-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.show-all-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    color: white;
    text-decoration: none;
}

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

.show-all-btn .btn-text {
    white-space: nowrap;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0 30px 0;
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

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

.breadcrumbs a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.breadcrumbs .separator {
    color: var(--text-muted);
    margin: 0 4px;
}

.breadcrumbs .current {
    color: var(--text);
    font-weight: 500;
}

.back-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.15);
}

.no-events-section {
    text-align: center;
    padding: 60px 20px;
}

.no-events-section h2 {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-events-section p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.event-time-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.event-time-price-row .event-time {
    flex: 1;
    text-align: left;
}

.event-time-price-row .event-price {
    flex: 0 0 auto;
    text-align: right;
    margin-top: 0;
}

.weekend-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.weekend-table-container {
    background: white;
    border-radius: 15px;
    padding: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.weekend-table-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.table-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-input,
.filter-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-input {
    flex: 1;
    min-width: 200px;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #667eea;
}

.weekend-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.weekend-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.weekend-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.weekend-table td {
    padding: 4px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.weekend-table tr:hover {
    background: #f8f9fa;
}

.date-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.date-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.date-month {
    font-size: 0.8rem;
    color: #666;
}

.day-name {
    font-weight: 600;
    color: #333;
}

.day-name-link {
    text-decoration: underline;
    color: inherit;
    transition: color 0.3s ease;
}

.day-name-link:hover {
    color: #667eea;
}

.day-name-link .day-name {
    cursor: pointer;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-today {
    background: #28a745;
    color: white;
}

.status-tomorrow {
    background: #17a2b8;
    color: white;
}

.status-yesterday {
    background: #6c757d;
    color: white;
}

.status-gone {
    background: #dc3545;
    color: white;
}

.status-in-1-days,
.status-in-2-days,
.status-in-3-days {
    background: #ffc107;
    color: #333;
}

.status-in-4-days,
.status-in-5-days,
.status-in-6-days {
    background: #fd7e14;
    color: white;
}

.status-in-7-days,
.status-in-8-days,
.status-in-9-days {
    background: #e83e8c;
    color: white;
}

.status-in-10-days,
.status-in-11-days,
.status-in-12-days {
    background: #6f42c1;
    color: white;
}

.status-in-13-days,
.status-in-14-days {
    background: #20c997;
    color: white;
}

.weekend-start {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.weekend-mid {
    background: #17a2b8;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.weekend-end {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.quick-nav {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-nav h2 {
    margin-bottom: 20px;
    color: #333;
}

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

.quick-nav-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-nav-card:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.quick-nav-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quick-nav-card h3 {
    margin: 10px 0;
    font-size: 1.1rem;
}

.quick-nav-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #764ba2;
}

.partners-section {
    font-size: 0;
    line-height: 0;
    position: relative;
    margin: 60px 0;
}

.partners-section h2 {
    font-size: clamp(20px, 4vw, 28px);
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-weight: 600;
    position: relative;
}

.partners-section h2::after {
    display: none;
}

.trusted__blocks {
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
    padding: 8px;
}

.trusted__block {
    display: inline-block;
    margin: 5px;
    position: relative;
    width: 45%;
}

.trusted__block a {
    background: #f8f9fa;
    border-radius: 8px;
    display: block;
    padding: 4px;
    position: relative;
    text-align: center;
    transition: background 0.25s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.25s cubic-bezier(0.33, 1, 0.68, 1), transform 0.25s cubic-bezier(0.33, 1, 0.68, 1);
}

.trusted__block a img {
    width: auto;
    max-width: 100%;
    height: 40px;
    max-height: 40px;
    object-fit: contain;
}

.trusted__block a:hover {
    background: #fff;
    box-shadow: 0 0 0 3px #667eea;
    transform: translateY(-3px);
}

@media (min-width: 667px) {
    .trusted__block {
        width: calc(33.33% - 10px);
    }
}

@media (min-width: 1024px) {
    .trusted__block {
        margin: 10px;
        width: calc(25% - 20px);
    }
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .carousel-btn--next {
        right: 0;
    }

    .carousel-btn--prev {
        left: 0px;
    }

    .main-nav.scrolled .nav-link {
        color: #ffffff !important;
    }
}
