﻿body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d1929;
  color: #fff;
  text-align: center;
}
header {
  padding: 40px 20px;
}
header h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #00d4ff;
}
.hosts {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hosts img {
  width: 200px;
  border-radius: 10px;
  border: 2px solid #1a365d;
}
.alert-button {
  margin-top: 20px;
  background: linear-gradient(135deg, #00bfff, #1a365d);
  padding: 12px 24px;
  border: none;
  color: white;
  font-size: 1em;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.alert-button:hover {
  background: linear-gradient(135deg, #00d4ff, #00bfff);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.feature {
  width: 250px;
  background-color: #1a365d;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00bfff;
}
.feature-icon {
  font-size: 2em;
  margin-bottom: 10px;
  color: #00d4ff;
}
audio {
  margin: 20px 0;
  width: 80%;
  max-width: 500px;
}
form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #1a365d;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #00bfff;
}
input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #00bfff;
  background-color: #0d1929;
  color: #fff;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}
input::placeholder, textarea::placeholder {
  color: #a0aec0;
}
.submit-btn {
  background: linear-gradient(135deg, #00bfff, #1a365d);
  color: white;
  padding: 12px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: linear-gradient(135deg, #00d4ff, #00bfff);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  font-size: 1.1em;
}
.nav-links a {
  color: #00bfff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}
.nav-links a:hover {
  color: #00d4ff;
  background-color: rgba(26, 54, 93, 0.5);
}

.team-photo {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 10px;
  border: 2px solid #1a365d;
}

.guest-profile {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  text-align: left;
  background-color: #1a365d;
  border-radius: 10px;
  border: 1px solid #00bfff;
  margin-bottom: 20px;
}
.guest-profile img {
  float: left;
  width: 200px;
  margin: 0 20px 20px 0;
  border-radius: 10px;
  border: 2px solid #00bfff;
}
.guest-profile h2 {
  color: #00d4ff;
  margin-top: 0;
}
.guest-profile h3 {
  color: #00bfff;
}
.clear {
  clear: both;
}