html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at 50% 20%, #0c001f 0%, #000 80%);
    color: #ffffff;
    overflow: visible;
    height: 100%;
}

body {
    position: relative;
    z-index: 0;
}

.glow {
    color: #00fff7;
    text-shadow: 0 0 5px #00fff7, 0 0 10px #00fff7, 0 0 20px #00fff7;
}

h1 {
    text-align: center;
    margin-top: 1rem;
    font-size: 2.8rem;
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0% {
        opacity: 0.8;
        text-shadow: 0 0 5px #00fff7;
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 20px #00fff7;
    }
}

.controls {
    text-align: center;
    margin-top: 2rem;
    animation: fadeIn 1.5s ease-out forwards;
}

button {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    margin: 0.5rem;
    background: #1c1c2b;
    color: #00fff7;
    border: 1px solid #00fff7;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

button:hover {
  background: #00fff7;
  color: #000;
  cursor: pointer;
  transform: scale(1.1);
}

.output {
    text-align: center;
    margin: 2.5rem auto 0;
    max-width: 700px;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.3);
    backdrop-filter: blur(12px);
}

.output > div {
    opacity: 0;
    transform: scale(0.95);
    animation: fadeZoom 0.6s ease-out forwards;
}

.output > .startup-name {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ff44ff;
    text-shadow: 0 0 10px #ff44ff;
    animation-delay: 0.1s;
}

.output > .pitch {
    font-size: 1.5rem;
    color: #ffffffcc;
    margin-bottom: 1rem;
    min-height: 3rem;
    animation-delay: 0.2s;
}

.output > .description {
    font-size: 1.2rem;
    color: #ffffffaa;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    white-space: normal;
    word-break: break-word;
    animation-delay: 0.3s;
}

.output > .category {
    font-size: 1rem;
    opacity: 0.6;
    color: #999;
    animation-delay: 0.4s;
}

.output > .review {
    font-style: italic;
    color: #ccc;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    animation-delay: 0.5s;
}

.output > .extras {
    margin-top: 1rem;
    animation-delay: 0.6s;
}

@keyframes fadeZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#loader {
    display: none;
    margin: 2rem auto;
    border: 4px solid rgba(0, 255, 247, 0.2);
    border-top: 4px solid #00fff7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#bgvid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.16;
    pointer-events: none;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

.content {
  max-width: 700px;
  margin: 2.5rem auto;
  padding: 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.content h2, .content h3 {
  color: #00fff7;
  margin-top: 2rem;
}

.content p {
  margin-top: 0.8rem;
  font-family: 'Inter', sans-serif
}

.footer {
    text-align: center;
    color: #bbb;
    font-size: 0.8rem;
    padding: 2rem;
}

.extras button {
    background: transparent;
    border: 1px dashed #00fff7;
    color: #00fff7;
    font-family: 'Inter', sans-serif;
    padding: 0.6rem 1.2rem;
    margin: 0.3rem;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.extras button:hover {
    background: #00fff7;
    color: #000;
    border-style: solid;
    cursor: pointer;
}

.social-share button {
  background: transparent;
  border: 1px dashed #00fff7;
  color: #00fff7;
  font-family: 'Inter', sans-serif;
  padding: 0.6rem 1.2rem;
  margin: 0.3rem;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.social-share button:hover {
  background: #00fff7;
  color: #000;
  border-style: solid;
  cursor: pointer;
}

.sound-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #00fff7;
    cursor: pointer;
}