body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(to bottom right, #0a1d2c, #132e4c);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('https://i.imgur.com/hzC95xs.png');
  background-size: cover;
  background-position: center;
}

.box {
  background-color: rgba(0,0,0,0.75);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,255,150,0.15);
  max-width: 500px;
  width: 90%;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 30px;
}

button {
  background: linear-gradient(to right, #00cba9, #0078f0);
  border: none;
  color: white;
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px #00cba9;
}

button:hover {
  background: linear-gradient(to left, #00cba9, #0078f0);
  box-shadow: 0 0 20px #00cba9;
}

.icon {
  font-size: 50px;
  color: #00cba9;
  margin-bottom: 10px;
}

.stats {
  margin-top: 20px;
  font-size: 18px;
  color: #aad3ff;
}

.today-tweet {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px;
  margin-top: 25px;
  border-radius: 12px;
  color: #e1f5fe;
}

@media (max-width: 500px) {
  h1 { font-size: 22px; }
  p, .stats, .today-tweet { font-size: 16px; }
}
