:root {
    --accent: #00d9a5;
    --bg: #000;
    --glass: rgba(0, 0, 0, 0.65);
    --text: #ffffff;
    --muted: #b5b5b5;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}
html, body {
  margin: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: system-ui, sans-serif;

    color: var(--text);
}


#video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0;
  transition: opacity 1.5s ease;
}

#video-bg.loaded {
  opacity: 1;
}

#player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  #player {
    width: 100vw;
    height: 56.25vw;
  }
}

/* Overlay */
.overlay {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background: rgba(0,0,0,0.25);
}


/* HEADER / MENU */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent);
}

.menu {
    position: relative;
}

.menu button {
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
        color: #00d9a5;
    font-variant-emoji: text;   /* forces text-style emoji */
}

.dropdown {
    position: absolute;
    right: 0;
    top: 45px;
    background: var(--glass);
    border-radius: 10px;
    min-width: 180px;
    display: none;
    backdrop-filter: blur(12px);
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
}

.dropdown a:hover {
    background: rgba(255,255,255,0.05);
}

/* CONTENT PANEL */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 900px;
    background: var(--glass);
    padding: 40px;
    border-radius: 16px;
    z-index: 3;
    backdrop-filter: blur(14px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.content.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -55%);
}

.content h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.content h1 span {
    color: var(--accent);
}

.content h2 {
    font-size: 26px;
    margin: 20px 0 8px;
}
.content h2 span {
    color: var(--accent);
}

.content h3 {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 10px;
}

.content h3 span {
    color: var(--accent);
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.content p span {
    color: var(--accent);
}
.content ul {
    margin-top: 15px;
    padding-left: 18px;
}
.content ul span {
    color: var(--accent);
}

.content li {
    margin-bottom: 8px;
    color: #d5d5d5;
}
.content li span {
    color: var(--accent);
}

/* VIDEO CONTROLS */
.controls {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.controls button {
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--accent);
    color: var(--accent);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
        color: #00d9a5;
    font-variant-emoji: text;   /* forces text-style emoji */
}

.controls button:hover {
    background: var(--accent);
    color: #000;
}

/* TOGGLE CONTENT */
.toggle-content {
    position: fixed;
    bottom: 60px;
    right: 25px;
    background: var(--accent);
    color: #000;
    border: none;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    z-index: 4;
}

a:link {
    color: #ffffff;      /* normal */
}

a:visited {
    color: #66ffee;      /* visited */
}

a:hover {
    color: #00ffcc;      /* hover */
}

a:active {
    color: #00cc99;      /* click */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content {
        padding: 25px;
    }

    .content h1 {
        font-size: 30px;
    }

    .controls {
        bottom: 15px;
    }

    header {
        padding: 14px 20px;
    }
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 900px;
    max-height: 80vh;           /* restrict vertical height */
    background: var(--glass);
    padding: 40px;
    border-radius: 16px;
    z-index: 3;
    backdrop-filter: blur(14px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow-y: auto;           /* enable vertical scroll */
    overflow-x: hidden;         /* hide horizontal scroll if any */
}

/* Optional: elegant scrollbar */
.content::-webkit-scrollbar {
    width: 8px;
}

.content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
/* FORM WRAPPER */
.content form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* INPUTS & TEXTAREA */
.content input,
.content textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    transition: all 0.25s ease;
}

/* TEXTAREA */
.content textarea {
    min-height: 130px;
    resize: vertical;
}

/* PLACEHOLDER */
.content input::placeholder,
.content textarea::placeholder {
    color: #9fa3a8;
}

/* FOCUS STATE */
.content input:focus,
.content textarea:focus {
    border-color: #00d9a5;
    box-shadow: 0 0 0 1px rgba(0,217,165,0.35);
    background: rgba(255,255,255,0.06);
}

/* BUTTON */
.content button {
    margin-top: 10px;
    align-self: flex-start;
    background: linear-gradient(135deg, #00d9a5, #00b890);
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.content button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0,217,165,0.35);
}

/* BUTTON ACTIVE */
.content button:active {
    transform: scale(0.98);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .content form {
        gap: 14px;
    }

    .content button {
        width: 100%;
        text-align: center;
    }
}
/* Demo */
.demo-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-list li a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.demo-list li a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.demo-badge {
    min-width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00d9b3,#026553);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-badge.festive {
    background: linear-gradient(135deg, #ff7a7a, #ffb347);
}

.demo-text h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}

.demo-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

/* Mobile */
@media (max-width: 768px) {
    .demo-list li a {
        flex-direction: column;
        gap: 12px;
    }

    .demo-badge {
        width: 100%;
        height: 44px;
        border-radius: 10px;
    }
}
.email-btn {
    display: inline-block;
    background: #00ffcc;
    color: #000;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.email-btn:hover {
    background: #00d9b3;
}

.demo-link {
    display: inline-block;
    background: #026652;
    /* background: #00ffcc; */
    color: #000;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.demo-link:hover {
    background: #00d9b3;
    transform: scale(1.05);
}

/* Downloads */
.downloads a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.downloads a:hover {
    background: rgba(0,230,189,0.08);
    border-color: var(--accent);
}
.panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}
    .video-switcher button {
  margin: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}