/* ================================
   SCYBUD GLOBAL SYSTEM
   ================================ */

:root {
  /* Colors */
  --bg-dark: #0a0f1a;          /* deeper, modern navy */
  --bg-mid: #111b2e;           /* smoother mid‑tone */
  --bg-glass: rgba(255, 255, 255, 0.08);

  --primary: #3b82f6;          /* clean, modern blue */
  --primary-light: #93c5fd;    /* softer highlight blue */

  --accent: #facc15;           /* refined warm yellow */
  --accent-soft: rgba(250, 204, 21, 0.25);

  --text-light: #e8eeff;       /* softer, less harsh white */
  --text-dim: #9aa7c7;         /* balanced dim text */

  /* FX */
  --radius: 14px;
  --radius-round: 50px;
  --shadow: 0 0 22px rgba(0, 0, 0, 0.28);
  --glow-accent: 0 0 18px rgba(250, 204, 21, 0.35);

  /* Layout */
  --max-width: 100%;
  --section-gap: 40px;

  /* Animation */
  --transition: 0.3s ease;
}


/* ================================
   BASE ELEMENTS
   ================================ */

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  width: var(--max-width);
  line-height: 1.7;
  font-family: "Open Sans", sans-serif;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
  text-shadow: var(--glow-accent);
}

/* ================================
   NAVIGATION
   ================================ */

/* ================================
   DESKTOP HEADER (fixed)
   ================================ */
header {
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
nav a {
  text-decoration: none;
  margin: 0 10px;
  font-size: larger;
  color: white;
  font-weight: 600;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #ffe600;
  text-shadow: 0 0 10px #ffe600;
}
nav > ul > li {
  display: inline;
}
#welcome-message {
  width: fit-content;
  display: block;
  border-bottom: 2px solid #ffffff;
  text-align: center;
  margin: 10px auto;
  text-align: center;
  text-wrap: nowrap;
  overflow: hidden;
  font-size: clamp(1.2rem, 2.5vw, 2.8rem);
  animation: typing 3s steps(30) forwards;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* ================================
   CONTAINERS
   ================================ */
#scyflix-video-preview {
  margin: 30px auto;
  display: flex;
  justify-content: center;
}
#scyflix-video-preview iframe {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
main {
  padding-top: 70px;
  margin: auto;
  max-width: var(--max-width);
}

.container {
  max-width: var(--max-width);
  width: 90%;
  margin: var(--section-gap) auto;
  padding: 10px;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ================================
   HERO
   ================================ */

#hero {
  text-align: center;
  padding: 50px 10px;
  margin: 10px auto;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 15px rgba(79, 78, 78, 0.2);
  backdrop-filter: blur(100px);
  border-radius: var(--radius);
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
blockquote img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
  vertical-align: middle;
}

/* ================================
   BUTTONS
   ================================ */

.btn,
.button {
  display: inline;
  padding: 10px 25px;

  background: linear-gradient(145deg, #00bbff, yellow);
  color: var(--bg-dark);

  border-radius: var(--radius);
  font-weight: bold;
  font-size: 1.2rem;
  margin: 22px 0;
  box-shadow: var(--glow-accent);
  transition: all var(--transition);
}

.btn:hover,
.button:hover {
  background: linear-gradient(145deg, yellow, #00bbff);
  color: var(--bg-dark);
  transform: scale(1.05);
}

/* ================================
   FORMS
   ================================ */

form {
  background: var(--bg-dark);
  padding: 10px 5px;
  border-radius: var(--radius);
  margin: 0 auto;
  width: var(--max-width);
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  width: 90%;
  padding: 12px;
  background: #fafafa;
  border-radius: var(--radius);
  border: none;
  outline: none;
  transition: var(--transition);
}

input:hover,
textarea:hover {
  box-shadow: 0 0 12px var(--primary-light);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--primary-light);
  box-shadow: 0 0 16px var(--primary);
}

#formbtn {
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  height: 40px;
  font-size: 18px;
  border-radius: var(--radius-round);
  transition: var(--transition);
}

#formbtn:hover {
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
}

footer {
  text-align: center;
  max-width: var(--max-width);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#scybudApps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
#scybudApps a {
  text-decoration: none;
}
#scybudApps .appcontainer {
  display: flex;
  flex-direction: column; /* FIXED HERE */
  align-items: center;
  justify-content: center;
}
#scybudApps a span {
  margin-top: 5px;
  color: #f1f1f1;
  font-size: 12px;
}
#scybudApps .appcontainer img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: contain;
  background-color: whitesmoke;
}
