:root {
    --panel: rgba(17, 24, 39, 0.04);
    --text: white;
    --border: rgba(17, 24, 39, 0.12);
    --shadow: 0 20px 60px rgba(17, 24, 39, 0.15);
}


* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background-color: black;
}

.initialLoader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.initialLoader[hidden] {
    display: none;
}

.spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.95);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 14px 14px 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.subtitle {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.35;
}

.card {
    border: 1px solid var(--border);
    background: var(--panel);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    height: calc(100vh - 86px);
}

.revealWrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);
}

.reveal {
    height: 100%;
}

.reveal .slides {
    height: 100%;
}

.reveal .slides section {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	height: 89vh !important;
}

.videoGrid {
    width: min(1200px, 96%);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    justify-items: center;
    max-height: 74vh;
}

@media (min-width: 980px) {
    .videoGrid {
        grid-template-columns: 1fr 1fr;
    }
}

.reveal h3 {
    text-transform: none;
    letter-spacing: 0.2px;
}

.reveal h3.slideTitle {
    font-size: 18px;
    margin: 0 0 5px;
    color: #b6ff00;
    background: #000;
    display: inline-block;
    letter-spacing: 0.6px;
}

.reveal p.slideSubtitle { 
    margin: 0 0 15px; 
    font-size: 13px;
}

.slideMedia {
    max-width: 100%;
    max-height: 4vh;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    object-fit: contain;
}

 .videoGrid .slideMedia {
    max-height: 34vh;
 }

/*.buttons {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}*/