<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
* {
  box-sizing: border-box;
  max-width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #001f2f;
  color: #eee;
  line-height: 1.6;
  padding: 15px;
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
}

/* Layout Components */
.main-wrapper {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow-x: hidden;
  padding: 0 10px;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.main-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
}

.content-wrapper {
  margin-bottom: 15px;
}

.media-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.avatar-wrapper {
  margin: 0;
}

.avatar-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.title-block {
  margin: 0;
  padding: 0 10px;
  width: 100%;
}

.main-title {
  font-size: 18px;
  color: #FFD700;
  margin: 0;
  font-weight: bold;
  line-height: 1.4;
  word-wrap: break-word;
}

.media-section {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 8px;
}

.media-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.media-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.content-title {
  font-size: 18px;
  color: #FFD700;
  margin: 0 0 8px;
  font-weight: bold;
  line-height: 1.4;
}

.content-text {
  font-size: 14px;
  color: #fff;
  margin: 6px 0;
  line-height: 1.5;
}

.highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Form Elements */
.analysis-form {
  margin: 15px auto;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.stock-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid #FFD700;
  background: #001f2f;
  color: #eee;
  font-size: 13px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}

.stock-input:focus {
  outline: none;
  border-color: #f4b400;
}

.stock-input.error {
  border-color: #ff6b6b;
  animation: shake 0.5s ease-in-out;
}

.stock-input.error::placeholder {
  color: #ff6b6b;
}

.analyze-button {
  width: 100%;
  padding: 12px 25px;
  background: #FFD700;
  color: #001f2f;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse-effect 2s ease-in-out infinite;
}

.analyze-button:hover {
  background: #e6c100;
  transform: scale(1.05);
}

.error-message {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
  min-height: 20px;
}

/* Footer */
.page-footer {
  margin-top: 40px;
  padding: 0 20px;
}

.footer-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-text {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}

.footer-nav {
  margin-top: 20px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-link {
  color: #0d6efd;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Modal Overlays */
.overlay-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: #001f2f;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 380px;
  text-align: left;
}

.modal-center {
  text-align: center;
}

.modal-title {
  color: #ff9900;
  margin: 0 0 20px;
  font-size: 20px;
}

/* Progress Bars */
.progress-item {
  margin-bottom: 12px;
}

.progress-text {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.progress-track {
  width: 100%;
  background: #333;
  border-radius: 20px;
  overflow: hidden;
  height: 10px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #FFD700;
  border-radius: 20px;
  transition: width 0.4s ease;
}

/* Result Modal */
.result-title {
  font-size: 20px;
  color: #ffb800;
  font-weight: bold;
  margin: 0 0 15px;
  line-height: 1.4;
}

.result-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 25px;
  padding: 0 10px;
}

.highlight-text {
  color: #ffb800;
  font-weight: bold;
  font-size: 15px;
  display: inline;
}

.action-button {
  display: inline-block;
  padding: 14px 30px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: float 3s ease-in-out infinite;
}

.action-button:hover {
  background: #22c55e;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation: none;
}

/* Animations */
@keyframes pulse-effect {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-wrapper {
    width: 95%;
    padding: 0 5px;
  }

  .main-container {
    padding: 15px;
  }

  .media-section {
    max-width: 100%;
  }

  .video-wrapper {
    padding: 6px;
  }

  .media-image {
    border-radius: 10px;
  }

  .media-info {
    padding: 10px;
  }

  .main-title {
    font-size: 16px;
  }

  .content-title {
    font-size: 16px;
  }

  .content-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .main-wrapper {
    width: 100%;
    padding: 0;
  }

  .main-container {
    padding: 10px;
    margin: 10px 0;
  }

  .avatar-image {
    width: 80px;
    height: 80px;
  }

  .video-wrapper {
    padding: 5px;
  }

  .media-image {
    border-radius: 8px;
  }

  .media-info {
    padding: 8px;
  }

  .main-title {
    font-size: 15px;
  }

  .content-title {
    font-size: 15px;
  }

  .content-text {
    font-size: 12px;
  }
}

/* iOS Specific Styles */
@supports (-webkit-touch-callout: none) {
  body {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .main-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stock-input {
    position: relative;
    z-index: 1;
  }

  .analyze-button {
    position: relative;
    z-index: 1;
  }
}

/* Android and Desktop Styles */
@supports not (-webkit-touch-callout: none) {
  body {
    position: relative;
    min-height: 100vh;
  }

  .main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .avatar-image {
    width: 120px;
    height: 120px;
  }
  
  .main-title {
    font-size: 18px;
  }
  
  .stock-input {
    padding: 12px 15px;
    font-size: 14px;
  }
}

.highlight {
  color: #f4b400;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  margin: 0 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.content-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Content Dialog */
.content-dialog {
  margin: 15px auto;
  max-width: 500px;
  width: 95%;
  overflow-x: hidden;
}

.dialog-content {
  background: linear-gradient(145deg, #0b1a2d, #0d2135);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.15);
  width: 100%;
  max-width: 500px;
  margin: auto;
}

/* Dialog Styles */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

/* iOS Specific Styles */
@supports (-webkit-touch-callout: none) {
  .stock-input {
    position: relative;
    z-index: 1;
  }
}

/* Android and Desktop Styles */
@supports not (-webkit-touch-callout: none) {
  .main-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
  }
  
  .avatar-image {
    width: 120px;
    height: 120px;
  }
  
  .main-title {
    font-size: 18px;
  }
  
  .stock-input {
    padding: 12px 15px;
    font-size: 14px;
  }
}

</pre></body></html>