/* Responsive Google Forms Embed */
.form-embed {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.form-embed iframe {
  width: 100%;
  min-width: 200px;
  max-width: 100%;
  border: none;
  height: 700px;
  background: transparent;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #111;
  margin: 0;
  padding: 0;
  color: #fff;
  min-height: 100vh;
  transition: background 0.6s;
}
.container {
  max-width: 900px;
  margin: 3rem auto;
  background: #181818;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 221, 51, 0.12);
  overflow: hidden;
  border: 2px solid #ffd900;
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1);
}
.header {
  text-align: center;
  padding: 2.5rem 2rem 1.5rem 2rem;
  background: linear-gradient(90deg, #ffd900 0%, #181818 100%);
  border-bottom: 2px solid #ffd900;
}
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 12px rgba(255,221,51,0.15);
  border: 3px solid #ffd900;
  object-fit: cover;
  background: #fff;
  transition: box-shadow 0.3s;
}
.avatar:hover {
  box-shadow: 0 4px 24px rgba(255,221,51,0.25);
}
.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0 0.2rem 0;
  letter-spacing: 1px;
  color: #ffd900;
}
.subtitle {
  color: #ffd900;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.nav {
  margin-top: 1.2rem;
}
.nav-link {
  display: inline-block;
  margin: 0 1.2rem;
  color: #ffd900;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ffd900;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav-link:hover {
  color: #fff200;
}
.nav-link:hover::after {
  width: 100%;
}
.main {
  padding: 2rem;
}
.card {
  background: #222;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(255,221,51,0.10);
  margin-bottom: 2.5rem;
  position: relative;
  overflow-x: hidden;
  padding: 2rem 1.5rem;
  border: 1.5px solid #ffd900;
.lines-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}
  transition: box-shadow 0.4s, transform 0.4s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255,221,51,0.18);
  transform: translateY(-4px) scale(1.02);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1.5px solid #ffd900;
  font-size: 1rem;
  background: #181818;
  color: #fff;
  transition: border 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #ffd900;
  outline: none;
}
.contact-form button {
  background: linear-gradient(90deg, #ffd900 60%, #181818 100%);
  color: #181818;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,221,51,0.10);
  transition: background 0.3s, color 0.3s;
}
.contact-form button:hover {
  background: #fff200;
  color: #111;
}
.footer {
  text-align: center;
  padding: 1.2rem;
  color: #ffd900;
  background: #181818;
  border-top: 2px solid #ffd900;
  font-size: 1rem;
}
