@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#0b0b0f;
  color:white;
  font-family:'Inter',sans-serif;
  min-height:100vh;
  padding:40px 20px;
}

.container{
  max-width:900px;
  margin:auto;
}

h1{
  font-size:52px;
  text-align:center;
  margin-bottom:15px;
  font-weight:700;
}

.tagline{
  text-align:center;
  color:#b3b3b3;
  font-size:18px;
  margin-bottom:40px;
}

.card,
.results{
  background:#15151d;
  border:1px solid #2a2a35;
  border-radius:20px;
  padding:30px;
  margin-bottom:30px;
}

h2{
  margin-bottom:20px;
  font-size:28px;
}

input[type="file"]{
  width:100%;
  margin-bottom:20px;
  color:white;
}

textarea{
  width:100%;
  height:140px;
  background:#0f0f15;
  border:1px solid #2a2a35;
  border-radius:14px;
  padding:18px;
  color:white;
  font-size:16px;
  resize:none;
  margin-bottom:20px;
  font-family:'Inter',sans-serif;
}

textarea:focus{
  outline:none;
  border-color:#ff3b3b;
}

button{
  background:#ff3b3b;
  color:white;
  border:none;
  padding:16px 24px;
  border-radius:14px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.2s;
}

button:hover{
  background:#ff2020;
}

.vibe-box{
  background:#1d1d28;
  border:1px solid #ff3b3b;
  padding:18px;
  border-radius:14px;
  margin-bottom:30px;
  font-weight:600;
  color:#ffb3b3;
}

h3{
  margin-bottom:15px;
  margin-top:25px;
}

ul{
  padding-left:20px;
}

li{
  margin-bottom:12px;
  color:#d4d4d4;
}

.keywords{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.keywords span{
  background:#ff3b3b22;
  border:1px solid #ff3b3b;
  padding:10px 16px;
  border-radius:999px;
  color:#ffb3b3;
  font-size:14px;
}

.resources{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}

.resource-card{
  background:#1d1d28;
  border:1px solid #2a2a35;
  border-radius:18px;
  padding:24px;
  text-decoration:none;
  color:white;
  transition:0.2s;
}

.resource-card:hover{
  border-color:#ff3b3b;
  transform:translateY(-3px);
}

.resource-card h3{
  margin-bottom:12px;
  color:white;
}

.resource-card p{
  color:#b3b3b3;
  line-height:1.6;
}

.alt-vibes{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.alt-card{
  background:#1d1d28;
  border:1px solid #2a2a35;
  border-radius:18px;
  padding:22px;
}

.alt-card p{
  color:#b3b3b3;
  line-height:1.6;
}

.hub-button{
  text-align:center;
  margin-top:30px;
}

.logo{
    width:120px;
    display:block;
    margin:0 auto 20px;
}