/* Live cams — dark theme aligned with w2-layout tokens */
.w2-live-cams {
    --lc-ink: var(--w2-t);
    --lc-muted: var(--w2-s3);
    --lc-line: var(--w2-bdr3);
    --lc-surface: rgba(15, 23, 42, 0.72);
    --lc-surface-hover: rgba(30, 41, 59, 0.9);
    --lc-accent: var(--w2-a);
    --lc-chip: rgba(56, 189, 248, 0.14);
    --lc-chip-text: var(--w2-sy0);
    --lc-text-min: 0.875rem; /* 14px floor */
    max-width: 72rem;
    margin-inline: auto;
    padding-block: 1.25rem 2.75rem;
    font-size: var(--lc-text-min);
    color: var(--lc-ink);
}

.w2-live-cams .w2-share-label,
.w2-live-cams .w2-share-feedback {
    font-size: var(--lc-text-min);
    color: var(--lc-ink);
}

.w2-lc-header h1 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 700;
    color: var(--lc-ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.w2-lc-eyebrow {
    margin: 0 0 0.55rem;
    font-size: var(--lc-text-min);
    color: var(--lc-muted);
}

.w2-lc-eyebrow a {
    color: var(--lc-accent);
    text-decoration: none;
    font-weight: 500;
}

.w2-lc-eyebrow a:hover {
    text-decoration: underline;
    color: var(--w2-sy0);
}

.w2-lc-intro {
    margin: 0 0 1.25rem;
    color: var(--lc-muted);
    font-size: 1rem;
    max-width: 42rem;
    line-height: 1.55;
}

.w2-lc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin: 0 0 1.15rem;
    color: var(--lc-muted);
    font-size: var(--lc-text-min);
    align-items: center;
}

.w2-lc-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.w2-lc-top {
    margin-bottom: 2.25rem;
}

.w2-lc-top-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.9rem;
}

.w2-lc-top-head h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--lc-ink);
}

.w2-lc-top-note {
    margin: 0;
    font-size: var(--lc-text-min);
    color: var(--lc-muted);
}

.w2-lc-featured {
    margin-bottom: 1rem;
}

.w2-lc-featured-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--lc-line);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.w2-lc-featured-player iframe,
.w2-lc-featured-player img,
.w2-lc-featured-player > .w2-lc-player,
.w2-lc-featured-player .video-js,
.w2-lc-featured-player .w2-lc-videojs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

.w2-lc-featured-player > .w2-lc-player {
    margin: 0;
    border-radius: 0;
}

.w2-lc-featured-meta {
    margin-top: 0.85rem;
}

.w2-lc-featured-title {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 650;
    color: var(--lc-ink);
    text-decoration: none;
    line-height: 1.3;
}

.w2-lc-featured-title:hover {
    color: var(--lc-accent);
}

.w2-lc-featured-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    margin: 0.45rem 0 0;
    font-size: var(--lc-text-min);
    color: var(--lc-muted);
    align-items: center;
}

.w2-lc-top-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

@media (max-width: 900px) {
    .w2-lc-top-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .w2-lc-top-row {
        grid-template-columns: 1fr;
    }
}

.w2-lc-browse {
    margin-bottom: 2rem;
}

.w2-lc-browse h2 {
    margin: 0 0 0.85rem;
    font-size: 1.25rem;
    color: var(--lc-ink);
}

.w2-lc-browse-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
    gap: 0.55rem;
}

.w2-lc-browse-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--lc-line);
    border-radius: 10px;
    background: var(--lc-surface);
    color: var(--lc-ink);
    text-decoration: none;
    font-size: var(--lc-text-min);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.w2-lc-browse-list a:hover {
    border-color: rgba(56, 189, 248, 0.45);
    background: var(--lc-surface-hover);
    color: var(--w2-sy0);
}

.w2-lc-browse-name {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.w2-lc-browse-flag {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1rem;
    object-fit: cover;
    border-radius: 2px;
}

.w2-lc-browse-count {
    flex-shrink: 0;
    min-width: 1.75rem;
    text-align: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--lc-chip);
    color: var(--lc-chip-text);
    font-size: var(--lc-text-min);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.w2-lc-chip {
    display: inline-flex;
    align-items: center;
    min-height: 1.55rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--lc-chip);
    color: var(--lc-chip-text);
    text-decoration: none;
    font-size: 0.75rem; /* 12px */
    line-height: 1.2;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.w2-lc-chip.is-active,
.w2-lc-chip:hover {
    background: var(--lc-accent);
    border-color: transparent;
    color: #0f172a;
    font-weight: 600;
}

.w2-lc-country {
    margin-bottom: 2rem;
}

.w2-lc-country-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid var(--lc-line);
    padding-bottom: 0.45rem;
}

.w2-lc-country-head h2 {
    margin: 0;
    font-size: 1.25rem;
}

.w2-lc-country-head a {
    color: var(--lc-ink);
    text-decoration: none;
}

.w2-lc-country-head a:hover {
    color: var(--lc-accent);
}

.w2-lc-count {
    font-size: var(--lc-text-min);
    color: var(--lc-muted);
}

.w2-lc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    gap: 1rem;
}

.w2-lc-card {
    display: flex;
    flex-direction: column;
    background: var(--lc-surface);
    border: 1px solid var(--lc-line);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.w2-lc-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    background: var(--lc-surface-hover);
    transform: translateY(-2px);
}

.w2-lc-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.w2-lc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.w2-lc-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #f8fafc;
    font-size: var(--lc-text-min);
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.w2-lc-meta .w2-lc-badge:not(.w2-lc-badge-live) {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.28);
    color: var(--w2-sy0);
}

.w2-lc-card-media .w2-lc-badge {
    position: absolute;
    inset-inline-start: 0.55rem;
    inset-block-start: 0.55rem;
}

.w2-lc-card-body {
    padding: 0.8rem 0.9rem 1rem;
}

.w2-lc-card-title {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--lc-ink);
    font-weight: 600;
}

.w2-lc-card-meta {
    margin: 0;
    font-size: var(--lc-text-min);
    color: var(--lc-muted);
}

.w2-lc-empty {
    color: var(--lc-muted);
    font-size: 1rem;
}

.w2-lc-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.w2-lc-player.is-playing {
    background: #000;
}

.w2-lc-player iframe,
.w2-lc-player > img,
.w2-lc-player .w2-lc-hls-video,
.w2-lc-player .video-js,
.w2-lc-player .w2-lc-videojs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
    background: #0b1220;
}

.w2-lc-player .video-js {
    --vjs-theme-primary: var(--lc-accent);
    font-size: 0.875rem;
    height: 100%;
    padding-top: 0;
}

.w2-lc-player .video-js .vjs-tech {
    object-fit: cover;
}

.w2-lc-player .video-js .vjs-big-play-button {
    border-color: var(--lc-accent);
    background-color: rgba(2, 6, 23, 0.72);
}

.w2-lc-player .video-js .vjs-play-progress,
.w2-lc-player .video-js .vjs-volume-level {
    background-color: var(--lc-accent);
}

.w2-lc-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000;
    color: #fff;
}

.w2-lc-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.w2-lc-play {
    position: absolute;
    inset: 50% auto auto 50%;
    translate: -50% -50%;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.95);
    color: #0f172a;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.w2-lc-play svg {
    width: 1.55rem;
    height: 1.55rem;
    margin-inline-start: 0.15rem;
}

.w2-lc-play-label {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 1.1rem;
    text-align: center;
    font-size: var(--lc-text-min);
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.w2-lc-player-static img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.w2-lc-panel {
    background: var(--lc-surface);
    border: 1px solid var(--lc-line);
    border-radius: 12px;
    padding: 1rem 1.05rem;
    backdrop-filter: blur(8px);
}

.w2-lc-panel h2 {
    margin: 0 0 0.7rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--lc-muted);
}

.w2-lc-temp {
    margin: 0;
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--lc-ink);
    line-height: 1;
}

.w2-lc-hi-lo {
    margin: 0.45rem 0 0;
    color: var(--lc-muted);
    font-size: var(--lc-text-min);
}

.w2-lc-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.w2-lc-links a {
    color: var(--lc-accent);
    text-decoration: none;
    font-size: var(--lc-text-min);
    font-weight: 500;
}

.w2-lc-links a:hover {
    color: var(--w2-sy0);
    text-decoration: underline;
}

.w2-lc-panel p {
    margin: 0;
    font-size: var(--lc-text-min);
    color: var(--lc-ink);
}

.w2-lc-panel p a {
    color: var(--lc-accent);
}

.w2-lc-show-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16.5rem, 21rem);
    gap: 1.35rem 1.65rem;
    align-items: start;
}

.w2-lc-show-main {
    min-width: 0;
}

.w2-lc-show-header {
    margin-bottom: 1.1rem;
}

.w2-lc-show-desc {
    margin-top: 0.15rem;
    margin-bottom: 1.15rem;
    color: var(--w2-s2);
    font-size: 1rem;
}

.w2-lc-player-hero {
    margin-bottom: 1.1rem;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--lc-line);
}

.w2-lc-badge-live {
    background: #dc2626;
    border-color: rgba(254, 202, 202, 0.35);
    color: #fff;
}

.w2-lc-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--w2-g4);
    position: sticky;
    top: 5.5rem;
}

.w2-lc-wx-card {
    margin: 0;
}

.w2-lc-wx-inner {
    display: grid;
    gap: var(--w2-g4);
}

.w2-lc-wx-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--w2-g3);
    text-align: start;
}

.w2-lc-wx-location-text {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.w2-lc-wx-place {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--w2-white);
    text-decoration: none;
    line-height: 1.25;
}

a.w2-lc-wx-place:hover {
    color: var(--w2-a);
}

.w2-lc-wx-country {
    font-size: 0.875rem;
    color: var(--w2-s2);
}

.w2-lc-wx-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--w2-g2);
    text-align: center;
}

.w2-lc-wx-condition {
    margin: 0;
}

.w2-lc-wx-temp {
    font-size: 2.5rem !important;
    margin: 0 !important;
}

.w2-lc-wx-minmax {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--w2-s3);
    font-weight: 500;
}

.w2-lc-wx-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--w2-rfull);
    background: var(--w2-ah);
    color: var(--w2-sy0);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(56, 189, 248, 0.28);
}

.w2-lc-wx-cta:hover {
    background: var(--w2-ah2);
    color: #fff;
}

.w2-lc-sidebar .w2-news-cities-brand > span {
    font-size: 0.875rem;
}

.w2-lc-sidebar .w2-news-cities-row,
.w2-lc-sidebar .w2-news-maps-row,
.w2-lc-sidebar .w2-news-maps-title,
.w2-lc-sidebar .w2-news-maps-all,
.w2-lc-sidebar .w2-news-cities-tagline {
    font-size: 0.875rem;
}

.w2-lc-sidebar .w2-news-cities-tagline {
    font-size: 0.75rem;
}

.w2-lc-related-row {
    grid-template-columns: 3.5rem minmax(0, 1fr) !important;
    gap: var(--w2-g3) !important;
}

.w2-lc-related-thumb {
    width: 3.5rem;
    height: 2rem;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--w2-bdr4);
    background: #020617;
}

.w2-lc-show .w2-share-slot {
    margin-top: 0.15rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--lc-line);
    border-radius: 12px;
    background: var(--lc-surface);
}

.w2-lc-report {
    margin-top: 1rem;
}

.w2-lc-report-ok {
    margin: 0 0 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: var(--w2-s1);
    font-size: 0.875rem;
}

.w2-lc-report-details {
    border: 1px solid var(--lc-line);
    border-radius: 12px;
    background: var(--lc-surface);
    padding: 0.15rem 0.95rem 0.95rem;
}

.w2-lc-report-details > summary {
    cursor: pointer;
    list-style: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--w2-s1);
    padding: 0.8rem 0;
}

.w2-lc-report-details > summary::-webkit-details-marker {
    display: none;
}

.w2-lc-report-help {
    margin: 0 0 0.85rem;
    color: var(--w2-s2);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.w2-lc-report-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.w2-lc-report-form legend {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--w2-s1);
    margin-bottom: 0.55rem;
}

.w2-lc-report-reasons {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.w2-lc-report-reason {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.8125rem;
    color: var(--w2-s1);
    line-height: 1.35;
}

.w2-lc-report-reason input {
    margin-top: 0.15rem;
}

.w2-lc-report-message {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
    font-size: 0.8125rem;
    color: var(--w2-s1);
}

.w2-lc-report-message textarea {
    width: 100%;
    min-height: 4.5rem;
    resize: vertical;
    border: 1px solid var(--lc-line);
    border-radius: 10px;
    background: transparent;
    color: var(--w2-s1);
    padding: 0.65rem 0.75rem;
    font: inherit;
    font-size: 0.8125rem;
}

.w2-lc-report-submit {
    appearance: none;
    border: 1px solid var(--lc-line);
    background: var(--w2-accent, #2563eb);
    color: #fff;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
}

.w2-lc-report-error {
    margin: 0.35rem 0 0;
    color: #dc2626;
    font-size: 0.75rem;
}

.w2-lc-not-found {
    max-width: 68rem;
}

.w2-lc-not-found-header {
    margin-bottom: 1.75rem;
}

.w2-lc-not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
}

.w2-lc-not-found-section {
    margin-top: 1.75rem;
}

.w2-lc-not-found-section > h2 {
    margin: 0 0 0.85rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--w2-s1);
}

@media (max-width: 960px) {
    .w2-lc-show-layout {
        grid-template-columns: 1fr;
    }

    .w2-lc-sidebar {
        position: static;
    }
}
