:root {
    --skv-primary: #1f4ed8;
    --skv-dark: #0e2b7d;
    --skv-light: #f4f8ff;
    --skv-overlay: rgba(4, 16, 55, 0.6);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #0f172a;
    background: var(--skv-light);
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
.btn {
    text-align: center;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 2rem 0;
}

.section-alt {
    background: var(--skv-light);
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--skv-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.header-notice-bar {
    background: #b30000;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.header-notice-bar__viewport {
    width: 100%;
    overflow: hidden;
}

.header-notice-bar__track {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: max-content;
    white-space: nowrap;
    padding: 0.48rem 1rem;
    font-weight: 700;
    animation: header-notice-scroll var(--notice-duration, 28s) linear infinite;
}

.header-notice-entry {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.header-notice-entry + .header-notice-entry::before {
    content: "+++";
    margin-right: 0.9rem;
    font-weight: 800;
    opacity: 0.9;
}

.header-notice-countdown {
    display: inline-block;
    min-width: 17ch;
    font-size: 0.92em;
    font-weight: 800;
    opacity: 0.95;
    font-variant-numeric: tabular-nums;
    text-align: left;
}

@keyframes header-notice-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(var(--notice-distance, -50%));
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 1rem;
}

.logo img {
    width: auto;
    max-width: 250px;
    height: 50px;
    object-fit: contain;
}

.main-menu {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: #fff;
    font-weight: 700;
    padding: 0.45rem 0;
    display: inline-block;
}

.main-menu > li {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    min-width: 12rem;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    background: var(--skv-primary);
    border-radius: 0;
    box-shadow: none;
    z-index: 50;
}

.submenu li {
    width: 100%;
}

.submenu a {
    width: 100%;
    padding: 0.45rem 0;
    text-align: center;
}

.submenu li + li {
    margin-top: 0.1rem;
}

.main-menu .has-submenu:hover > .submenu,
.main-menu .has-submenu:focus-within > .submenu {
    display: block;
}


.header-socials {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    background: transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link--facebook svg {
    fill: currentColor;
}

.social-link--instagram svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-1px);
    border-color: transparent;
}

.social-link--facebook:hover,
.social-link--facebook:focus-visible {
    background: #1877f2;
}

.social-link--instagram:hover,
.social-link--instagram:focus-visible {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}


#menu_button {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-nav .main-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4vw;
    gap: 0.5rem;
}

.hero {
    position: relative;
    min-height: 66vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    isolation: isolate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(var(--skv-overlay), var(--skv-overlay));
    z-index: -1;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.lead {
    font-size: clamp(1rem, 2.4vw, 1.3rem);
}

.section-blue {
    background: linear-gradient(135deg, #14368f, #1f4ed8);
    color: #fff;
}

.grid {
    display: grid;
    gap: 1rem;
}

.cards-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    padding: 1.15rem;
    border-radius: 16px;
    background: #fff;
    color: #0f172a;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.13);
}

.events .card {
    background: rgba(255, 255, 255, 0.92);
}


.events .card,
.events .card h1,
.events .card h2,
.events .card h3,
.events .card h4,
.events .card h5,
.events .card h6,
.events .card p,
.events .card button,
.events .card .btn,
.news-card,
.news-card h1,
.news-card h2,
.news-card h3,
.news-card h4,
.news-card h5,
.news-card h6,
.news-card p,
.news-card button,
.news-card .btn {
    text-align: left;
}

#sponsors {
    padding-bottom: 0;
    background: #fff;
}

.sponsors-marquee {
    margin-top: 1.5rem;
    overflow: hidden;
}

.sponsors-track {
    --sponsors-marquee-duration: 24s;
    --sponsors-marquee-distance: -50%;
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
    animation: sponsors-marquee var(--sponsors-marquee-duration) linear infinite;
}

.sponsor-slide {
    flex: 0 0 auto;
    margin: 0;
    height: 150px;
    display: grid;
    place-items: center;
    padding: 0;
}

.sponsor-image {
    max-width: none;
    width: auto;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #4169e1;
    box-shadow: 0 0 10px rgba(65, 105, 225, 0.45);
    background: #fff;
}

@keyframes sponsors-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(var(--sponsors-marquee-distance));
    }
}

#events-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.8rem;
}

.event-card {
    padding: 0.85rem;
    flex: 1 1 320px;
    max-width: 320px;
}

.event-card:not(.event-card--no-image) {
    flex-basis: 660px;
    max-width: 660px;
}

.event-card--no-image {
    flex-basis: 320px;
}

.event-card-layout {
    display: flex;
    gap: 0.8rem;
    align-items: stretch;
}

.event-card--image-right .event-card-layout {
    flex-direction: row-reverse;
}

.event-card--no-image .event-card-layout {
    display: block;
}

.event-card-media {
    flex: 0 0 min(36%, 270px);
}

.event-image {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    border-radius: 12px;
    background: #e2e8f0;
}

.event-card-body {
    flex: 1;
    text-align: left;
}

.event-card-body h3,
.event-card-body p {
    margin-bottom: 0.45rem;
    text-align: left;
}

.event-details {
    display: grid;
    gap: 0.4rem;
}

.event-details p {
    margin: 0;
}

.event-card .news-links {
    margin-top: 0.55rem;
}

.event-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.55rem;
}

.event-card-actions .news-links {
    margin-top: 0;
}

.event-share-button {
    border: none;
}

#events-more {
    background: var(--skv-light);
    color: var(--skv-primary);
}


#news-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
}

.news-card--large {
    min-height: 360px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1 1 460px;
    max-width: 460px;
}

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

.news-media {
    position: relative;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    background: #e2e8f0;
}

.news-date {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
}

.news-media .news-date {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
}

.news-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.news-link {
    text-decoration: none;
}

.news-link--more {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: var(--skv-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.news-link--icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
}

.news-link--icon svg {
    width: 20px;
    height: 20px;
}

.news-link--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.news-link--facebook {
    background: #1877f2;
}

.news-link--tiktok {
    background: #000000;
}

.news-link--mail {
    background: #ea4335;
}

.news-link--maps {
    background: #0f9d58;
}

.news-link--share {
    background: var(--skv-primary);
    border: none;
    cursor: pointer;
}

.share-toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    background: #0f172a;
    color: #fff;
    padding: 0.7rem 0.95rem;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    max-width: min(92vw, 420px);
    text-align: left;
}

.share-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.share-toast--error {
    background: #b91c1c;
}

.event-detail-shell {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.22);
}

.event-detail-image {
    width: 100%;
    height: clamp(300px, 62vw, 540px);
    object-fit: cover;
    background: #dbe6ff;
    display: block;
}

.event-detail-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(66%, 600px);
    background: linear-gradient(
            to left,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.78) 48%,
            rgba(0, 0, 0, 0.22) 82%,
            rgba(0, 0, 0, 0) 100%
    );
    color: #fff;
    border-top-left-radius: min(62vw, 560px);
    border-bottom-left-radius: min(62vw, 560px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 1rem 1.1rem 1rem 3.2rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.event-detail-shell:hover .event-detail-overlay {
    opacity: 0;
    pointer-events: none;
}

.event-detail-overlay h2 {
    text-align: right;
    margin: 0 0 0.45rem;
}

.event-detail-overlay .event-details p {
    color: #fff;
    text-align: right;
}

.event-detail-description {
    margin: 0.25rem 0 0;
    color: #fff;
    text-align: right;
    line-height: 1.45;
}

.event-detail-overlay .event-card-actions {
    margin-top: 0.75rem;
    justify-content: flex-end;
}

.event-detail-shell--no-image {
    border-radius: 26px;
    background: #1e3a8a;
    padding: 1rem;
}

.event-detail-shell--no-image .event-detail-overlay {
    position: static;
    border-radius: 22px 38px 22px 38px;
    clip-path: none;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.45);
}

@media (max-width: 700px) {
    .event-card:not(.event-card--no-image) {
        flex-basis: 320px;
        max-width: 320px;
    }

    .event-card-layout,
    .event-card--image-right .event-card-layout {
        flex-direction: column;
    }

    .event-card-media {
        flex-basis: auto;
    }

    .event-image {
        min-height: 180px;
    }

    #news-grid {
        gap: 0.8rem;
    }

    .news-card--large {
        min-height: 0;
    }

    .news-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .event-detail-overlay {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        padding: 0.9rem 0.95rem;
        border-radius: 20px 20px 0 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42));
        gap: 0.3rem;
    }

    .sponsor-slide {
        flex-basis: auto;
        min-height: 100px;
    }

    .sponsor-image {
        height: 100px;
        width: auto;
        max-width: none;
        max-height: none;
    }
}

.role {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: #475569;
}

.section-lightblue {
    background: radial-gradient(circle at 12% 20%, rgba(31, 78, 216, 0.16), transparent 34%),
    radial-gradient(circle at 88% 85%, rgba(14, 43, 125, 0.15), transparent 30%),
    var(--skv-light);
}

.royals-intro {
    margin: 0 0 1.5rem;
    max-width: 760px;
    line-height: 1.6;
    color: #334155;
}

.royals-grid {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.royal-gallery-item {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    min-height: 240px;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.13);
    cursor: pointer;
}

.royal-gallery-item:hover,
.royal-gallery-item:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
}


.royal-gallery-image {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.royal-gallery-overlay {
    position: absolute;
    z-index: 2;
    color: #fff;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    padding: 0.4rem 0.55rem;
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: calc(50% - 1.1rem);
    text-align: left;
    transition: opacity 0.2s ease;
}

.royal-gallery-overlay strong {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.14rem;
}

.royal-gallery-overlay--top-left {
    top: 0.6rem;
    left: 0.6rem;
}

.royal-gallery-overlay--top-right {
    top: 0.6rem;
    right: 0.6rem;
    text-align: right;
}

.royal-gallery-overlay--bottom-left {
    bottom: 0.6rem;
    left: 0.6rem;
}

.royal-gallery-overlay--bottom-right {
    bottom: 0.6rem;
    right: 0.6rem;
    text-align: right;
}

.royal-gallery-item:hover .royal-gallery-overlay,
.royal-gallery-item:focus-visible .royal-gallery-overlay {
    opacity: 0;
}

body.lightbox-open {
    overflow: hidden;
}

.royals-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.royals-lightbox[hidden] {
    display: none;
}

.royals-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.82);
}

.royals-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 1200px);
    max-height: 95vh;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
}

.royals-lightbox-content {
    margin: 0;
    display: grid;
    gap: 0.85rem;
    justify-items: center;
}

.royals-lightbox-image {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: calc(95vh - 10rem);
    border-radius: 10px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.royals-lightbox-details {
    width: 100%;
    color: #f8fafc;
    text-align: center;
    line-height: 1.45;
    font-weight: 600;
}

.royals-lightbox-details p {
    margin: 0.2rem 0;
}

.royals-lightbox-close,
.royals-lightbox-nav {
    border: 0;
    color: #fff;
    background: rgba(15, 23, 42, 0.55);
    cursor: pointer;
}

.royals-lightbox-close {
    position: absolute;
    top: -0.2rem;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
}

.royals-lightbox-nav {
    width: 46px;
    height: 70px;
    border-radius: 999px;
    font-size: 2rem;
}


.elferrat-card {
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.13);
}

.elferrat-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.9rem;
    background: #e2e8f0;
}

.elferrat-name {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.elferrat-role {
    margin: 0;
    color: #475569;
    font-weight: 600;
}

#elferrat-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.85rem;
    justify-content: center;
}

#elferrat-grid .elferrat-card {
    flex: 1 1 260px;
    max-width: 260px;
}

.board-section {
    padding-top: 3rem;
    background: var(--skv-light);
}

.board-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.board-main h2 {
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.board-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 860px;
    line-height: 1.55;
}

.board-wrapper {
    position: relative;
    width: 100%;
    padding: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.board-card {
    position: relative;
    width: 275px;
    height: 450px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
}

.board-poster {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: transparent;
}

.board-poster::before {
    content: '';
    position: absolute;
    bottom: -45%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 0.3s;
    background: linear-gradient(to top, rgb(0 0 0 / 85%), transparent 65%);
}

.board-card:hover .board-poster::before {
    bottom: 0;
}

.board-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.board-card:hover .board-poster img {
    transform: scale(1.1);
}

.board-details {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2% 7%;
    background: rgb(0 0 0 / 65%);
    backdrop-filter: blur(16px) saturate(120%);
    transition: 0.3s;
    color: #fff;
    text-align-last: left;
    z-index: 2;
}

.board-card:hover .board-details {
    bottom: 0;
}

.board-details h3,
.board-details h4 {
    font-weight: 700;
    margin-top: 0;
}

.board-details h3 {
    font-size: 1.35rem;
    margin-bottom: 5px;
}

.board-details h4 {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.board-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375em;
    margin-bottom: 0.875em;
    font-size: 0.85em;
}

.board-tags span {
    padding: 0.35rem 0.65rem;
    color: #fff;
    border: 1.5px solid rgb(255 255 255 / 40%);
    border-radius: 50px;
}

.board-desc {
    color: #fff;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1em;
    font-size: 0.95rem;
    text-align: left;
}

.board-social h5 {
    margin-bottom: 0.5em;
    margin-top: 0;
    font-size: 1rem;
}

.board-social ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    width: 100%;
    padding-left: 0;
    margin: 0;
}

.board-social li {
    list-style: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.5s ease;
}

.board-social a {
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.liFacebook:hover {
    background-color: #4267b2;
}

.liInstagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.liEmail:hover {
    background-color: #d93025;
}

.btn {
    display: inline-block;
    background: var(--skv-primary);
    color: #fff;
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
}

.btn[hidden] {
    display: none;
}

.footer {
    background: var(--skv-primary);
    color: #fff;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    gap: 0.5rem;
}

.footer-links {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.legal-page {
    min-height: 65vh;
    background: var(--skv-light);
}

.legal-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.13);
}


.downloads-page p,
.download-card,
.download-card h1,
.download-card h2,
.download-card h3,
.download-card h4,
.download-card h5,
.download-card h6,
.download-card p {
    text-align: left;
}

#downloads-list {
    margin-top: 1.5rem;
}

.download-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.download-card .btn {
    align-self: flex-start;
}

.hymne-stage {
    background: radial-gradient(circle at top, rgba(31, 78, 216, 0.2), rgba(31, 78, 216, 0.05) 45%, transparent 80%), var(--skv-light);
}

.hymne-layout {
    max-width: 860px;
    display: grid;
    gap: 1.25rem;
}

.hymne-hero-card,
.hymne-lyrics-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    padding: clamp(1.1rem, 2vw, 1.8rem);
    text-align: left;
}

.hymne-kicker {
    margin: 0;
    font-weight: 700;
    color: var(--skv-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.hymne-hero-card {
    text-align: center;
}

.hymne-hero-card h1 {
    text-align: center;
    margin: 0.5rem 0;
}

.hymne-intro {
    margin: 0 auto;
    color: #334155;
    max-width: 62ch;
    text-align: center;
}

.hymne-lyrics-card {
    display: grid;
    gap: 0.9rem;
}

.hymne-strophe {
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: #fff;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hymne-strophe h2 {
    text-align: left;
    margin: 0 0 0.45rem;
    font-size: 1rem;
    color: var(--skv-dark);
}

.hymne-strophe p {
    margin: 0;
    text-align: left;
    line-height: 1.75;
}

.hymne-strophe:hover,
.hymne-strophe:focus-within {
    background: linear-gradient(135deg, rgba(31, 78, 216, 0.12), rgba(20, 54, 143, 0.16));
    border-color: rgba(31, 78, 216, 0.5);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    nav {
        display: none;
    }

    .header-socials {
        display: none;
    }

    .mobile-nav .header-socials {
        display: flex;
        justify-content: center;
        gap: 0.7rem;
        padding: 1rem 4vw 1.2rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    #menu_button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav .main-menu {
        width: 100%;
        padding: 0.9rem 4vw 1.1rem;
        gap: 0.35rem;
    }

    .mobile-nav .main-menu > li {
        width: 100%;
    }

    .mobile-nav .main-menu > li > a {
        display: block;
        width: 100%;
        padding: 0.58rem 0.75rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-nav .has-submenu > a::after {
        float: right;
        margin-top: 0.2rem;
    }

    .mobile-nav .submenu {
        position: static;
        display: block;
        min-width: 0;
        margin: 0 0 0 0.75rem;
        padding: 0 0.55rem;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.06);
        border-left: 2px solid transparent;
        border-radius: 0 10px 10px 0;
        box-shadow: none;
        transform: none;
        transition: max-height 0.28s ease, opacity 0.25s ease, padding 0.25s ease, margin 0.25s ease, border-color 0.25s ease;
    }

    .mobile-nav .has-submenu.is-open > .submenu {
        margin-top: 0.3rem;
        padding: 0.2rem 0.55rem;
        max-height: 14rem;
        opacity: 1;
        border-left-color: rgba(255, 255, 255, 0.24);
    }

    .mobile-nav .submenu a {
        padding: 0.32rem 0.2rem;
        font-weight: 600;
        text-align: left;
    }

    .board-details {
        bottom: -100%;
    }

    .board-card.is-open .board-details {
        bottom: 0;
    }

    .board-card.is-open .board-poster::before {
        bottom: 0;
    }

    .royals-lightbox-dialog {
        width: min(92vw, 760px);
        margin: 3vh auto;
    }

    .royals-lightbox-image {
        max-height: calc(95vh - 13rem);
    }
}

@media (max-width: 640px) {
    #elferrat-grid {
        gap: 0.7rem;
    }

    #elferrat-grid .elferrat-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .elferrat-card {
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: center;
        text-align: left;
        column-gap: 0.75rem;
        row-gap: 0.1rem;
        padding: 0.7rem 0.8rem;
        border-radius: 14px;
    }

    .elferrat-image {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 76px;
        height: 76px;
        margin: 0;
        flex: 0 0 76px;
    }

    .elferrat-name {
        grid-column: 2;
        grid-row: 1;
        margin: 0 0 0.2rem;
        font-size: 1rem;
        line-height: 1.25;
    }

    .elferrat-role {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.92rem;
        line-height: 1.3;
    }

    .board-wrapper {
        padding: 0;
    }

    .royal-gallery-overlay {
        font-size: 0.74rem;
    }

    .royals-lightbox-dialog {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        max-height: 92vh;
    }

    .royals-lightbox-nav {
        width: 100%;
        height: 42px;
        font-size: 1.8rem;
        background: #f8fafc;
        border-top: 1px solid #e2e8f0;
    }

    .royals-lightbox-nav--prev {
        grid-row: 2;
        background: var(--skv-primary);
    }

    .royals-lightbox-nav--next {
        grid-row: 3;
        background: var(--skv-primary);
    }
}

.linktree-page {
    background: var(--skv-primary);
    min-height: 70vh;
    color: #fff;
}

.linktree-container {
    width: min(680px, 92vw);
}

.linktree-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 25%;
    background: #fff;
    padding: 0.5rem;
    box-shadow: none;
    margin-bottom: 1rem;
}

.linktree-links {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
}

.linktree-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 10px;
    background: #fff;
    color: var(--skv-dark);
    padding: 0.95rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: none;
    transition: opacity 0.2s ease;
}

.linktree-link:hover,
.linktree-link:focus-visible {
    opacity: 0.9;
}

.linktree-link:focus-visible {
    outline: 3px solid rgba(31, 78, 216, 0.3);
    outline-offset: 2px;
}

.linktree-link-icon {
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
}

.linktree-link-icon svg {
    width: 100%;
    height: 100%;
}
