/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Container */
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  display: none;
}

/* Main content */
main {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.location-notice {
  background: #e3f2fd;
  border: 1px solid #2196f3;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 10px;
  text-align: center;
  font-size: 0.9rem;
  color: #1976d2;
}

.location-notice p {
  margin: 0;
}

.iframe-container {
  width: 100%;
  flex: 1;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  display: block;
}

/* Footer */
footer {
  display: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    height: 100vh;
  }

  .iframe-container {
    height: 100%;
  }

  iframe {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    height: 100vh;
  }

  .iframe-container {
    height: 100%;
  }

  iframe {
    height: 100%;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  iframe {
    image-rendering: -webkit-optimize-contrast;
  }
}
