/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0f172a;
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header .brand {
  font-size: 1.2rem;
  font-weight: bold;
  color: #38bdf8;
}

.header .nav a {
  margin-left: 20px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.header .nav a:hover {
  color: #38bdf8;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/banner.jpg') center/cover no-repeat;
  opacity: 0.3;
  filter: blur(4px);
  z-index: -1;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  animation: float 4s ease-in-out infinite;
}

.logo {
  width: 150px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Hero Tagline */
.hero-tagline {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.highlight {
  color: #38bdf8;
  font-weight: bold;
}

.bad-dream {
  color: #f87171;
  font-weight: bold;
}

.millionaire {
  color: #facc15;
  font-weight: bold;
}

/* Buttons */
.btn-area {
  margin-top: 20px;
}

.trailer-btn {
  background: transparent;
  border: 2px solid #38bdf8;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 1rem;
  color: #38bdf8;
  cursor: pointer;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.trailer-btn:hover {
  background: #38bdf8;
  color: #0f172a;
}

.cta {
  background: #2563eb;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(37, 99, 235, 1);
}

/* Roadmap Section */
.roadmap {
  background: #1e293b;
  padding: 100px 20px;
  text-align: center;
}

.roadmap h2 {
  font-size: 2rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.roadmap-sub {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 40px;
}

.roadmap-img img {
  max-width: 900px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
}
