/* Setup Page Styles - Modern Dark Theme with Subtle Green Highlights */

body {
  background: #080808;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Override default link colors */
a {
  color: #b0b0b0;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

.setup-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #ffffff;
}

.header-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #2a2a2a;
}

.branding-logo {
  width: 32px;
  height: 32px;
  display: block;
}

.branding-text {
  color: #DFFF26;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.setup-container h1 {
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  border-bottom: 2px solid #2a2a2a;
  padding-bottom: 1rem;
  letter-spacing: -0.02em;
}

.setup-section {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); */
}

.setup-section h2 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.setup-section p {
  margin-bottom: 1rem;
  color: #b0b0b0;
  font-size: 1rem;
}

/* Download Section */
.download-section {
  text-align: center;
  padding: 2rem;
  background: #000000;
  border-radius: 8px;
  border: 2px solid #1a1a1a;
  transition: border-color 0.3s ease;
}

.download-section:hover {
  border-color: #DFFF26;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #1a1a1a;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  border: 1px solid #2a2a2a;
}

.btn-download:hover {
  background: #2a2a2a;
  border-color: #DFFF26;
  box-shadow: 0 0 20px rgba(223, 255, 38, 0.2);
  transform: translateY(-1px);
}

.download-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask: url('/images/download_icon.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask: url('/images/download_icon.svg') no-repeat center;
  mask-size: contain;
  transition: background-color 0.3s ease;
}

.btn-download:hover .download-icon {
  background-color: #DFFF26;
}

.filename {
  margin-top: 0.75rem;
  font-family: 'Consolas', 'Monaco', monospace;
  color: #DFFF26;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Instructions Section */
.instructions {
  background: #000000;
  padding: 1.5rem;
  /* border-radius: 8px; */
  border-left: 3px solid #DFFF26;
}

.file-path {
  background: #0a0a0a;
  color: #DFFF26;
  padding: 1.25rem;
  border-radius: 6px;
  margin: 1.25rem 0;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 11px;
  overflow-x: auto;
  border: 1px solid #1a1a1a;
}

.file-path code {
  color: #DFFF26;
  white-space: pre;
}

.notes-section {
  background: rgba(223, 255, 38, 0.05);
  border: 1px solid rgba(223, 255, 38, 0.2);
  border-radius: 6px;
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.notes-section h3 {
  color: #DFFF26;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.notes-list {
  margin: 0;
  padding-left: 1.5rem;
  color: #DFFF26;
  font-size: 0.95rem;
  line-height: 1.8;
}

.notes-list li {
  margin-bottom: 0.5rem;
}

.notes-list li:last-child {
  margin-bottom: 0;
}

/* Verification Section */
.verification-section {
  background: #0a0a0a;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid #1a1a1a;
}

.verification-section.waiting {
  background: #ff98000d;
  border-color: #ff9800;
}

.verification-section.verified {
  background: #0a0a0a;
  border-color: #DFFF26;
}

.verification-section.error {
  background: #0a0a0a;
  border-color: #f44336;
}

.status-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-svg {
  width: 48px;
  height: 48px;
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.icon-hourglass {
  -webkit-mask-image: url('/images/hourglass_icon.svg');
  mask-image: url('/images/hourglass_icon.svg');
}

.icon-check {
  -webkit-mask-image: url('/images/check_icon.svg');
  mask-image: url('/images/check_icon.svg');
}

.verification-section.waiting .icon-svg {
  background-color: #ff9800;
  animation: spin 2.5s ease-in-out infinite;
}

.verification-section.verified .icon-svg {
  background-color: #DFFF26;
}

.verification-section.error .icon-svg {
  background-color: #f44336;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

.status-message {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.verification-section.waiting .status-message {
  color: #ff9800;
}

.verification-section.verified .status-message {
  color: #DFFF26;
}

.verification-section.error .status-message {
  color: #f44336;
}

.status-details {
  font-size: 1rem;
  color: #b0b0b0;
  margin-top: 0.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.verification-section.waiting .status-details {
  color: #ff9800;
  opacity: 0.9;
}

.verification-section.verified .status-details {
  color: #DFFF26;
  opacity: 0.9;
}

.verification-section.error .status-details {
  color: #f44336;
  opacity: 0.9;
}

.ip-list {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  text-align: left;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.9rem;
  border: 1px solid #1a1a1a;
}

.ip-list strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #f44336;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .setup-container {
    padding: 2rem 1rem;
  }

  .setup-container h1 {
    font-size: 2rem;
  }

  .setup-section {
    padding: 1.5rem;
  }

  .file-path {
    font-size: 0.8rem;
    padding: 1rem;
  }

  .status-icon .icon-svg {
    width: 40px;
    height: 40px;
  }

  .status-message {
    font-size: 1.25rem;
  }

  .btn-download {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}


a.btn-download:hover {
	color: #dfff26;
}

/* Branding Link Styles */
.branding-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.branding-link:hover {
  opacity: 0.8;
}

.branding-link:hover .branding-text {
  color: #DFFF26;
}

/* Footer Branding Styles */
.footer-branding {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #2a2a2a;
  text-align: center;
}

.footer-link {
  color: #DFFF26;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
  color: #DFFF26;
}

/* Index Page - Centered Minimalistic Layout */
.index-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.index-container .centered-branding {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  justify-content: center;
}

.index-container .branding-logo {
  width: 48px;
  height: 48px;
}

.index-container .branding-text {
  font-size: 1rem;
}

.index-container .read-more-section {
  margin-top: 2rem;
  text-align: center;
}

.read-more-button {
  display: inline-block;
  background: transparent;
  color: #DFFF26;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid #DFFF26;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.read-more-button:hover {
  background: #DFFF26;
  color: #000000;
  box-shadow: 0 0 20px rgba(223, 255, 38, 0.3);
  transform: translateY(-1px);
}

.index-container .footer-branding {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}