@font-face {
  font-family: 'Turkeyes';
  src: url('../fonts/Turkeyes.otf') format('opentype');
  font-display: swap;
}
:root {
  --green: #28ff4a;
  --dark: #0b0f0c;
  --light: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(180deg, #0b0f0c 0%, #0f1a14 100%);
  color: var(--light);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: right;
}
.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  width: 100%;
  padding: 20px;
}
.text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.logo {
  width: 180px;
  height: auto;
  border-radius: 14px;
}
.brand {
  font-family: 'Turkeyes', sans-serif;
  font-size: 2rem;
  color: var(--green);
}
.headline {
  font-size: 2.2rem;
  color: var(--green);
}
.sub {
  font-size: 1.2rem;
  color: #a9ffba;
}
.follow-btn {
  margin-top: 18px;
  background: rgba(40, 255, 74, 0.08);
  color: var(--light);
  border: 1px solid var(--green);
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all .3s ease;
}
.follow-btn:hover {
  background: rgba(40, 255, 74, 0.18);
  box-shadow: 0 0 15px rgba(40, 255, 74, 0.5);
  transform: translateY(-2px);
}
.car img {
  width: 380px;
  max-width: 40vw;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, .5));
}
footer {
  position: fixed;
  bottom: 10px;
  color: #ccc;
  font-size: .9rem;
}
@media(max-width: 800px) {
  .container { flex-direction: column-reverse; text-align: center; }
  .text { align-items: center; }
  .car img { width: 80vw; }
}