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

/* Body and layout */
html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
}

body {
  background: linear-gradient(135deg, #1d1e20, #343a40);
  color: #fff;
  justify-content: space-between;
}

/* Header styling */
header {
  background-color: #2c2f33;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .logo h1 {
  font-size: 3rem;
  color: #ff4757;
  font-family: 'Arial Black', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Hero section */
#hero {
  text-align: center;
  padding: 3rem 1rem;
}

#hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ff4757;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#hero p {
  font-size: 1.3rem;
  margin: 1rem 0;
  color: #dcdde1;
}

.video-container {
  margin-top: 1.5rem;
}

.play-button {
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  background: #ff6347;
  color: #fff;
  border: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

.play-button:hover {
  background: #ff4500;
  transform: scale(1.05);
}

/* About section */
#about {
  padding: 2rem 1rem;
  text-align: center;
}

#about h2 {
  font-size: 2.5rem;
  color: #ff4757;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#about p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: #dcdde1;
}

/* Footer styling */
footer {
  background-color: #2c2f33;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: auto;
  color: #ff4757;
  font-size: 1rem;
  border-top: 2px solid #ff4757;
}

footer p {
  margin: 0;
  font-family: 'Arial Black', sans-serif;
}
