@font-face {
  font-family: Blanka Regular;
  src: url("src/Blanka-Regular.otf") format("woff");
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #fff;
  overflow-x: hidden;
  background: #0a0a1a;
  line-height: 1.6;
}

#canvas-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.content {
  position: relative;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  font-size: 4.5rem;
  font-weight: 800;
  margin: 1rem 0 1.5rem;
  background: linear-gradient(45deg, #fc8608, #fc8608);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Blanka Regular';
}

.tagline {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #d3d3d3;
  max-width: 600px;
}

.mockup-container {
  margin-bottom: 4rem;
}

.mockup-container img {
  width: auto;
  height: 350px;
}

.button-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary {
  background: linear-gradient(45deg, #fc8608, #fc8608);
  color: white;
}

.secondary {
  background: transparent;
  border: 2px solid #fc8608;
  color: #fc8608;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(252, 134, 8, 0.4);
}

.footer {
  width: 100%;
  margin-top: auto;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.footer-menu {
  margin-top: auto;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu a {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-menu a:hover {
  color: #fc8608;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons a {
  color: #fc8608;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fc8608;
}

.copyright {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Policies Styles */
.text-content {
  position: relative;
  min-height: 100vh;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.policy-container {
  max-width: 800px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(0.5px);
  margin-bottom: 2rem;
}

h2 {
  color: #fc8608;
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

h3 {
  color: #fc8608;
  margin: 1.5rem 0 0.8rem;
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
  color: #d3d3d3;
}

ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: #fc8608;
  text-decoration: none;
}

/* Google Form Styles */
.google-form-content {
  position: relative;
  min-height: 100vh;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.google-form-container {
  max-width: 800px;
  width: 100%;
  height: 650px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(0.5px);
  margin-bottom: 2rem;
}

#google-form-iframe {
    position: relative;
    height: 100%;
    width: 100%; 
}