body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #111;
    color: #fff;
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-content {
    z-index: 2;
}
.cta-button {
    background: #00d1b2;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    display: inline-block;
}
section {
    padding: 60px 20px;
    background: #222;
    text-align: center;
}
section:nth-child(even) {
    background: #1a1a1a;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin: 10px 0;
    font-size: 1.1em;
}
.theme-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
}
.theme-tile {
    background: #333;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 0 10px #000;
}
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #aaa;
}


/* Sticky navbar */
nav {
    position: sticky;
    top: 0;
    background: #000;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}
nav a {
    color: #00d1b2;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay animations slightly for effect */
section:nth-child(odd) {
    animation-delay: 0.1s;
}
section:nth-child(even) {
    animation-delay: 0.2s;
}


.hover-themes .theme-tile {
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}
.hover-themes .theme-tile:hover {
    background: #00d1b2;
    color: #111;
}
.theme-desc {
    display: block;
    font-size: 0.85em;
    margin-top: 8px;
    color: #aaa;
}
.hover-themes .theme-tile:hover .theme-desc {
    color: #111;
}

form#signup-form {
    margin-top: 20px;
}
form#signup-form input[type="email"] {
    padding: 10px;
    width: 240px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}
form#signup-form button {
    padding: 10px 16px;
    background: #00d1b2;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
form#signup-form button:hover {
    background: #00b29f;
}
.form-note {
    margin-top: 10px;
    font-size: 0.85em;
    color: #aaa;
}


/* Theme Launcher Styles */
#theme-launcher {
  background: #111;
  color: #fff;
  padding: 3em 1em;
  text-align: center;
}
#theme-launcher h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
#theme-launcher .subtext {
  font-size: 1em;
  opacity: 0.8;
  margin-bottom: 2em;
}
.theme-launch {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 700px;
  margin: 0 auto;
}
.theme-box {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.5em;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.theme-box span {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.button-row {
  display: flex;
  justify-content: center;
  gap: 1em;
}
.button-row button,
.button-row a {
  background: #333;
  color: #fff;
  padding: 0.5em 1em;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}
.button-row button:hover,
.button-row a:hover {
  background: #555;
}


#prompt-debug {
  color: #ccc;
  font-weight: 500;
  margin-top: 1.5em;
  font-size: 0.95em;
}

.achievements-section {
  padding: 60px 20px;
  background: #1a1a1a;
  text-align: center;
  color: #fff;
}

.achievements-section h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.achievements-section .subtext {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #ccc;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.badge {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
}

.badge img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.badge.locked {
  opacity: 0.5;
  filter: grayscale(100%);
}

.locked-title {
  font-style: italic;
  color: #888;
}

.creator-section {
  padding: 60px 20px;
  background: #121212;
  color: #f0f0f0;
  text-align: center;
}

.creator-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.creator-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.creator-text {
  flex: 1 1 300px;
}

.creator-text p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.creator-quote {
  font-style: italic;
  font-size: 1em;
  color: #ccc;
  border-left: 4px solid #00bcd4;
  padding-left: 16px;
  margin-top: 30px;
}

.creator-photo {
  flex: 0 0 200px;
  align-self: center;
}

.creator-photo img {
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.vision-section {
  padding: 60px 20px;
  background: #101010;
  color: #f0f0f0;
  text-align: center;
}

.vision-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.vision-block {
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.vision-block h3 {
  font-size: 1.8em;
  color: #00bcd4;
  margin-bottom: 15px;
}

.vision-block ul {
  list-style: none;
  padding: 0;
}

.vision-block ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.5;
}

.vision-block p {
  font-size: 1.2em;
  line-height: 1.7;
  color: #ccc;
}

html {
  scroll-behavior: smooth;
}

.vision-block ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.5;
  padding-left: 5px;
}

.emoji {
  display: inline-block;
  width: 1.8em;
}

.theme-identities {
  padding: 60px 20px;
  background: #161616;
  color: #f0f0f0;
  text-align: center;
}

.theme-identities h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.persona-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.persona-card {
  background: #262626;
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.persona-card:hover {
  transform: scale(1.05);
}

.persona-card h3 {
  color: #00bcd4;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.persona-card p {
  font-size: 1.05em;
  margin: 6px 0;
}
