@font-face {
    font-family: 'BN Pooly Rounded';
    src: url('fonts/BNPoolyRounded.woff2') format('woff2'),
        url('fonts/BNPoolyRounded.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'BN Pooly Rounded', Arial, sans-serif;
    color: #5B1914;
}

body {
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #fff 0%, #4BAEFF 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.main-content {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding-bottom: 10vh;
}

.logo {
    width: 33vw;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10vh;
}

@media (max-width: 1000px) {
    .logo {
        width: 40vw;
    }
}

@media (max-width: 800px) {
    .logo {
        width: 60vw;
    }
}

@media (max-width: 450px) {
    .logo {
        width: 75vw;
    }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 500;
    font-family: 'BN Pooly Rounded', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.email-form {
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: center;
}

.email-input {
    padding: 16px 48px 16px 18px;
    margin-right: -24px;
    font-size: 1rem;
    border: 4px solid #5B1914;
    border-radius: 100px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    outline: none;
    min-width: 220px;
}

.email-btn {
    padding: 16px 24px;
    font-size: 1rem;
    border: 4px solid #5B1914;
    border-radius: 100px;
    background: #FFE754;
    color: #5B1914;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 600;
    font-family: 'BN Pooly Rounded', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.email-btn:hover {
    background: #f0d106;
}

.clouds {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: auto;
    pointer-events: none;
    display: block;
}

.cloud1 {
    z-index: 1;
}
.cloud2 {
    z-index: 2;
}
.cloud3 {
    z-index: 3;
}

@media (max-width: 1000px) {
    .cloud {
        width: 126%;
        left: -13%;
    }
}
@media (max-width: 600px) {
    .cloud {
        width: 200%;
        left: -50%;
    }
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

button:hover {
    background: #d8bc09;
}

#message {
    margin-top: 20px;
    color: #28a745;
    font-weight: bold;
}

@media (max-width: 550px) {
    .main-content {
        width: 90%;
        margin: 0 auto;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .email-form {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .email-input {
        width: 100%;
        box-sizing: border-box;
        padding-left: 16px;
        padding-right: 16px;
        margin: 0;
        border-bottom-right-radius: 100px;
        border-top-right-radius: 100px;
        text-align: center;
        min-width: unset;
    }

    .email-btn {
        width: 100%;
    }
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  padding: 40px 32px 32px 32px;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  text-align: center;
  min-width: 320px;
  max-width: 90vw;
  position: relative;
}
.modal-content h2 {
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 8px;
}
.modal-subhead {
  font-size: 1.25rem;
  color: #4BAEFF;
  margin-bottom: 24px;
  font-weight: 600;
}
.modal-input {
  display: block;
  width: 100%;
  margin: 0 auto 18px auto;
  padding: 16px 18px;
  font-size: 1rem;
  border: 4px solid #5B1914;
  border-radius: 100px;
  outline: none;
  box-sizing: border-box;
  font-family: 'BN Pooly Rounded', Arial, sans-serif;
}
.modal-btn {
  width: 100%;
  margin-top: 8px;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #5B1914;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #4BAEFF;
}
@media (max-width: 500px) {
  .modal-content {
    padding: 48px 8px 32px 8px;
    min-width: unset;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .modal-close {
    top: 18px;
    right: 18px;
  }
}

.preordered-text {
  display: inline-block;
  font-size: 0.95rem;
  color: #5B1914;
  margin-top: 16px;
  font-family: 'BN Pooly Rounded', Arial, sans-serif;
  opacity: 0.8;
  letter-spacing: 0.03em;
} 