@charset "utf-8";

/* ============================================
   HEROES WORLD ONLINE - MODERN DARK THEME
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --bg: #000000;
    --fg: #ffffff;
    --card-bg: #1a1a1a80;
    --card-fg: #ffffff;
    --primary: #800080;
    --primary-hover: #6a006a;
    --primary-fg: #ffffff;
    --secondary: #6b6b6b;
    --secondary-fg: #ffffff;
    --muted: #333333;
    --muted-fg: #cccccc;
    --accent: #FFA500;
    --accent-fg: #ffffff;
    --destructive: #ff4444;
    --border: #333333;
    --input: #333333;
    --ring: #FFA500;
    --discord: #5865F2;
    --instagram: #E4405F;
    --home: #76c412;
    --gradient-start: #800080;
    --gradient-end: #a020f0;
    --sidebar-width: 260px;
    --content-max-width: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fauna One', Georgia, serif;
    background-color: var(--bg);
    color: #d4c0a1;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', 'Times New Roman', serif;
    color: var(--fg);
}

a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffcc55;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-end);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    mix-blend-mode: multiply;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-glow {
    position: absolute;
    z-index: 0;
    width: 72rem;
    aspect-ratio: 1155/678;
    opacity: 0.15;
    pointer-events: none;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    filter: blur(60px);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-glow-top {
    top: -20%;
    left: 50%;
    transform: translateX(-50%) rotate(30deg);
}

.hero-glow-bottom {
    bottom: -20%;
    right: 0;
}

@keyframes glowPulse {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.22;
    }
}

/* ---------- NAVBAR ---------- */
.heroes-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.heroes-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-fg);
    text-decoration: none;
    transition: color 0.3s;
    padding: 4px 8px;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--accent);
    text-decoration: none;
    background: rgba(255, 165, 0, 0.08);
}

.nav-link-discord:hover {
    color: var(--discord);
    background: rgba(88, 101, 242, 0.08);
}

.nav-link-instagram:hover {
    color: var(--instagram);
    background: rgba(228, 64, 95, 0.08);
}

.nav-link-home:hover {
    color: var(--home);
    background: rgba(83, 228, 64, 0.08);
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ---------- HERO CONTENT ---------- */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    padding: 140px 24px 80px;
    margin: 0 auto;
}

.hero-logo-wrapper {
    margin-bottom: 24px;
}

.hero-logo {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(128, 0, 128, 0.4));
    /* animation: logoFloat 15s ease-in-out infinite; */
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--fg);
    text-shadow: 0 2px 20px rgba(219, 219, 219, 0.6);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--muted-fg);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 24px;
}

/* ---------- SERVER STATUS ---------- */
.hero-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-online {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-offline {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot-online {
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: dotPulse 2s ease-in-out infinite;
}

.status-dot-offline {
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.status-players {
    color: var(--muted-fg);
    font-weight: normal;
    font-size: 13px;
    text-decoration: none;
}

.status-players:hover {
    color: var(--fg);
    text-decoration: none;
}

.status-players-count {
    color: var(--fg);
    font-weight: 700;
}

.status-players-max {
    color: var(--muted-fg);
}

/* ---------- HERO BUTTONS ---------- */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: var(--primary-fg);
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(128, 0, 128, 0.35);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--primary-fg);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(128, 0, 128, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--fg);
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--fg);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================
   VOCATIONS SECTION
   ============================================ */
.vocations-section {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 96px 24px 80px;
}

.vocations-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60rem;
    height: 30rem;
    opacity: 0.12;
    pointer-events: none;
    background: radial-gradient(ellipse at center, var(--gradient-start), var(--gradient-end), transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out infinite alternate;
}

.vocations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vocations-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.vocations-title {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--fg);
    line-height: 1.15;
    margin-bottom: 12px;
}

.vocations-subtitle {
    font-size: 17px;
    color: var(--muted-fg);
    line-height: 1.7;
}

.vocations-image-wrapper {
    display: flex;
    justify-content: center;
    animation: vocationsFadeIn 1s ease-out;
}

.vocations-image {
    width: 100%;
    max-width: 1100px;
    border-radius: var(--radius);
    box-shadow:
        0 0 40px rgba(128, 0, 128, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(128, 0, 128, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.vocations-image:hover {
    transform: scale(1.015);
    box-shadow:
        0 0 60px rgba(128, 0, 128, 0.3),
        0 12px 48px rgba(0, 0, 0, 0.6);
}

@keyframes vocationsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.heroes-main-wrapper {
    background: transparent;
    padding: 40px 24px;
}

.heroes-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* ---------- SIDEBAR ---------- */
.heroes-sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sidebar-box:hover {
    border-color: rgba(128, 0, 128, 0.3);
}

.sidebar-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.15), rgba(160, 32, 240, 0.08));
    border-bottom: 1px solid var(--border);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    letter-spacing: 0.02em;
}

.sidebar-box-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.sidebar-box-body {
    padding: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-fg);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    color: var(--fg);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.sidebar-link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.sidebar-link:hover .sidebar-link-icon {
    color: var(--accent);
}

.sidebar-link-account {
    color: #90EE90;
}

.sidebar-link-account:hover {
    color: #b0ffb0;
}

.sidebar-link-logout {
    color: var(--muted-fg);
}

.sidebar-link-admin {
    color: #ff6b6b;
}

.sidebar-link-admin:hover {
    color: #ff4444;
}

.sidebar-link-login {
    color: #22c55e;
}

.sidebar-link-login:hover {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.08);
}

/* ---------- CONTENT ---------- */
.heroes-content {
    flex: 1;
    min-width: 0;
}

.content-inner {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    min-height: 300px;
}

.content-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: var(--muted-fg);
}

/* ---------- TABLE STYLING  ---------- */
table {
    font-size: 13px;
    color: #d4c0a1;
    margin: 10px 0 0 0;
    border-spacing: 1px;
    width: 100%;
}

.odd,
.Odd {
    background-color: rgba(255, 255, 255, 0.03) !important;
    padding: 6px 8px;
    color: #d4c0a1 !important;
}

.even,
.Even {
    background-color: rgba(255, 255, 255, 0.06) !important;
    padding: 6px 8px;
    color: #d4c0a1 !important;
}

th,
.LabelH,
.LabelH td {
    background-color: rgba(128, 0, 128, 0.25) !important;
    color: var(--fg) !important;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

td {
    padding: 4px 8px;
}

/* ---------- TABLE CONTAINER (MyAAC) ---------- */
.TableContainer {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    width: 100%;
    font-size: 13px;
    margin-bottom: 16px;
    background: transparent;
}

.TableContainer .CaptionContainer {
    background-color: rgba(128, 0, 128, 0.25) !important;
}

.TableContainer .CaptionContainer .CaptionInnerContainer {
    background-color: rgba(128, 0, 128, 0.25) !important;
}

.TableContainer .CaptionContainer .Text {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    padding-left: 12px;
}

.TableContentContainer {
    border-color: var(--border);
    background: transparent;
}

.TableContent {
    width: 100%;
    border-collapse: collapse;
}

.TableContainer .Table1,
.TableContainer .Table2,
.TableContainer .Table3,
.TableContainer .Table4,
.TableContainer .Table5 {
    background-color: transparent;
    border-color: var(--border);
}

/* Hide legacy Tibia table shadow and border images */
.TableShadowContainerRightTop,
.TableShadowRightTop,
.TableShadowContainer,
.TableBottomShadow,
.TableBottomLeftShadow,
.TableBottomRightShadow,
.CaptionEdgeLeftTop,
.CaptionEdgeRightTop,
.CaptionBorderTop,
.CaptionVerticalLeft,
.CaptionVerticalRight,
.CaptionBorderBottom,
.CaptionEdgeLeftBottom,
.CaptionEdgeRightBottom {
    background-image: none !important;
    display: none !important;
}

.TableContentAndRightShadow {
    background-image: none !important;
}

/* ---------- NEWS ---------- */
#news {
    width: 100%;
    margin-bottom: 16px;
}

.zheadline {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.3), rgba(160, 32, 240, 0.15)) !important;
    color: var(--fg) !important;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    padding: 10px 14px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.znewsbody {
    background-color: transparent !important;
    color: #d4c0a1 !important;
    padding: 16px 14px 10px;
    text-align: justify;
    line-height: 1.7;
}

.znewsdate {
    background-color: transparent !important;
    color: var(--muted-fg) !important;
    font-size: 11px;
}

.znewsauthor {
    font-size: 11px;
    color: var(--muted-fg);
}

/* ---------- FORM ELEMENTS ---------- */
input,
select,
textarea {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--fg);
    outline: none;
    font-family: 'Fauna One', serif;
    font-size: 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.15);
}

option {
    background-color: var(--bg);
    color: var(--fg);
}

/* ---------- ACCOUNT PANEL ---------- */
.vertical-menu a {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--fg) !important;
    border: 1px solid var(--border);
    margin-bottom: 2px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.vertical-menu a:hover {
    background-color: rgba(128, 0, 128, 0.2) !important;
    color: var(--accent) !important;
    border-color: rgba(128, 0, 128, 0.4);
}

input[type="submit"],
input[type="button"],
.button {
    font-family: 'Cinzel', serif !important;
    background: var(--primary);
    color: var(--primary-fg);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

input[type="submit"]:hover,
input[type="button"]:hover,
.button:hover {
    background: var(--primary-hover);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(128, 0, 128, 0.3);
}

/* ---------- SKILL BAR ---------- */
.skill-bar {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    max-width: 202px;
    min-width: 202px;
    width: 202px;
    height: 6px;
}

.skill-bar .progress {
    background: linear-gradient(90deg, var(--primary), var(--gradient-end));
    border: none;
    height: 100%;
    border-radius: 4px;
}

/* ---------- ALERTS ---------- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin: 10px 0;
}

.alert-warning {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: var(--accent);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ---------- SMALLBOX MESSAGES ---------- */
.SmallBox .ErrorMessage {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ff6b6b;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
}

.SmallBox .Message {
    background-color: rgba(255, 255, 255, 0.05);
    color: #252525;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.heroes-footer {
    background: transparent;
    border-top: 1px solid var(--border);
    padding: 48px 24px 24px;
}

.global-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.footer-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted-fg);
    font-size: 13px;
    font-weight: normal;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--fg);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   GALLERY
   ============================================ */
.galleryImage {
    max-width: 80%;
    height: auto;
    border-radius: var(--radius-sm);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 16px;
}

.pagination a,
.pagination span {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--muted-fg);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.pagination a:hover {
    background: rgba(128, 0, 128, 0.15);
    color: var(--fg);
    text-decoration: none;
}

.pagination .current {
    background: var(--primary);
    color: var(--fg);
    border-color: var(--primary);
}

/* ============================================
   RULES
   ============================================ */
.rules-list {
    list-style: none;
    padding: 10px 0 0 10px;
}

.rules-list-item {
    margin-top: 5px;
    color: #d4c0a1;
}

.rules-title {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .heroes-container {
        flex-direction: column;
    }

    .heroes-sidebar {
        width: 100%;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .heroes-sidebar .sidebar-box {
        flex: 1;
        min-width: 200px;
    }

    .hero-title {
        font-size: 32px;
    }

    .vocations-section {
        padding: 64px 20px 56px;
    }

    .vocations-title {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .heroes-nav {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 12px;
    }

    .hero-content {
        padding: 80px 16px 40px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .vocations-section {
        padding: 48px 16px 40px;
    }

    .vocations-title {
        font-size: 26px;
    }

    .vocations-header {
        margin-bottom: 32px;
    }

    .vocations-subtitle {
        font-size: 15px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.white,
.whites {
    color: #FFFFFF;
}

/* Compatibility with existing table structure  */
table.transborder tr td {
    background-color: transparent !important;
    color: #d4c0a1 !important;
    font-weight: normal !important;
    text-align: center !important;
}

table.footertable tr td {
    background-color: transparent !important;
    border-spacing: 0;
}

.input-middle {
    width: 300px;
}

/* YouTube embeds */
div.youtube {
    width: 100%;
    max-width: 560px;
}

div.aspectratio {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
}

div.aspectratio>iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
}

/* FormFieldError */
.FormFieldError {
    font-size: 12px;
    color: #ff6b6b;
}

/* ---------- FIREFLIES EFFECT ---------- */
#fireflies-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}