/* FC Mobile Style Design CSS */

/* Font declarations */
@font-face {
  font-family: Lovelo;
  src: url(../fonts/ArchivoBlack-Regular.woff2) format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1,
.header-title,
.section-title,
.data h2,
.diamonds-options h2,
.verification-container h2 {
  font-family: 'Lovelo', Arial, sans-serif;
}

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

body {
  font-family: Arial, sans-serif;
  background-color: #060a06; /* Near-black */
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* Background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #060a06 25%, #0e1a0e 25%, #0e1a0e 50%, #060a06 50%, #060a06 75%, #0e1a0e 75%, #0e1a0e 100%);
  background-size: 100px 100px;
  opacity: 0.4;
  z-index: -1;
}

/* Container styles */
.container {
  width: 100%;
  max-width: 480px;
  background-color: #0b0f0b; /* Near-black panel */
  border-radius: 0;
  overflow: hidden;
  padding: 0 0 20px 0;
  position: relative;
  box-shadow: 0 0 40px rgba(186, 255, 41, 0.08);
}

/* Header styles */
.header-container {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.header-background {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background-color: #0b0f0b;
}

.header-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 15px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
}

.header-icon {
  width: 60px;
  height: 60px;
  border-radius: 0;
  object-fit: contain;
}

.header-text {
  margin-left: 15px;
}

.header-title {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-subtitle {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 0;
}

.header-icon-svg {
  margin-right: 5px;
  color: #baff29; /* Lime green accent */
}

/* Stepper Navigation */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #0b0f0b;
  padding: 15px 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(186, 255, 41, 0.15);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0b0f0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 5px;
}

.step-label {
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.step.active .step-number {
  background-color: #baff29; /* Lime for active step */
  color: #060a06;
  box-shadow: 0 0 10px rgba(186, 255, 41, 0.7);
}

.step.active .step-label {
  color: #baff29; /* Lime for active step label */
}

.step-connector {
  height: 2px;
  background-color: #ffffff;
  width: 40px;
  margin: 0 10px;
  margin-bottom: 20px;
}

/* Main heading */
h1 {
  color: #baff29; /* Lime accent color */
  text-align: center;
  margin: 20px 0;
  padding: 0 15px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Section headings */
.section-title {
  color: #baff29; /* Lime accent color */
  text-align: center;
  margin: 30px 0 20px;
  padding: 0 15px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Form styles */
form {
  padding: 0 20px;
  margin-bottom: 20px;
}

input, button {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 2px solid #baff29; /* Lime border */
  border-radius: 0;
  font-size: 16px;
}

input {
  background-color: #ffffff;
  color: #000000;
}

input:focus {
  outline: none;
  border-color: #baff29; /* Lime accent color */
}

input::placeholder {
  color: #666666;
}

button {
  background-color: #baff29; /* Lime accent color */
  color: #060a06; /* Near-black text on lime background */
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}

button:hover, button:focus {
  background-color: #a3e620; /* Slightly darker lime on hover */
  outline: none;
}

/* Loading styles */
.loading {
  display: none;
  padding: 20px;
  text-align: center;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(186, 255, 41, 0.2);
  border-top-color: #baff29;
  border-radius: 50%;
  margin-bottom: 15px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
}

/* Data display styles */
.data {
  padding: 0 20px;
  margin-bottom: 20px;
  background-color: rgba(16, 36, 15, 0.7); /* Semi-transparent dark green */
  border-left: 4px solid #baff29; /* Lime accent border */
}

.data h2 {
  color: #baff29; /* Lime accent color */
  margin-bottom: 15px;
  font-size: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(186, 255, 41, 0.3); /* Semi-transparent lime */
  padding-bottom: 8px;
  text-transform: uppercase;
}

.data p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  padding: 8px 0;
}

.highlight {
  color: #baff29; /* Lime accent color */
}

.usernecolor {
  color: #baff29; /* Lime accent color */
}

/* Diamond options styles */
.diamonds-options {
  padding: 0 20px;
  background-color: rgba(16, 36, 15, 0.7); /* Semi-transparent dark green */
  margin: 0 20px 20px;
}

.diamonds-options h2 {
  color: #baff29; /* Lime accent color */
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
  padding: 15px 0;
  text-transform: uppercase;
  font-weight: bold;
}

.diamonds-selection {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.diamond-option {
  position: relative;
}

.diamond-option input[type="radio"] {
  display: none;
}

.diamond-option label {
  display: flex;
  align-items: center;
  padding: 12px;
  background-color: #ffffff;
  border: 2px solid transparent;
  cursor: pointer;
}

.diamond-option img {
  width: 30px;
  height: auto;
  margin-right: 15px;
}

.diamond-option span {
  color: #000000;
  font-size: 16px;
}

.diamond-option input[type="radio"]:checked + label {
  background-color: #baff29; /* Lime background */
  border-color: #baff29; /* Lime accent color */
}

/* Send button styles */
.send-button {
  background-color: #baff29; /* Lime accent color */
  color: #060a06; /* Near-black text on lime background */
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px;
  border: none;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.send-button:hover, .send-button:focus {
  background-color: #a3e620; /* Slightly darker lime on hover */
  outline: none;
}

/* Second loading spinner */
.second-loading {
  text-align: center;
  padding: 30px 20px;
}

.second-loading .spinner {
  margin: 0 auto 15px;
}

/* Status messages */
.status-messages {
  padding: 0 20px;
  margin-top: 15px;
}

.error-message {
  background-color: rgba(255, 0, 0, 0.2);
  border-left: 3px solid #ff0000;
  padding: 10px 15px;
  color: #ffffff;
}

.success-message {
  background-color: rgba(186, 255, 41, 0.15);
  border-left: 3px solid #baff29;
  padding: 10px 15px;
  color: #ffffff;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Verification container */
.verification-container {
  padding: 20px;
  text-align: center;
  background-color: rgba(16, 36, 15, 0.7); /* Semi-transparent dark green */
  margin: 0 20px;
}

.verification-container h2 {
  color: #baff29; /* Lime accent color */
  margin-bottom: 15px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.verification-container p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}

#verify-button {
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

/* Human verification offer list */
.offer-loader {
  display: flex;
  justify-content: center;
  padding: 10px 0 20px;
}

.spinner.small {
  width: 16px;
  height: 16px;
  border-width: 2px;
  margin-bottom: 0;
}

#offerContainer {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.offers {
  text-decoration: none;
  display: block;
}

.offerplace {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #baff29; /* Lime accent color */
  color: #060a06; /* Near-black text on lime background */
  padding: 12px;
  text-align: center;
}

.offerplace:hover {
  background-color: #a3e620; /* Slightly darker lime on hover */
}

.offer-details {
  flex: 1;
}

.offer-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.offer-desc {
  font-size: 12px;
  margin-top: 2px;
}

hr {
  border: none;
  border-top: 1px solid rgba(186, 255, 41, 0.3); /* Semi-transparent lime */
  margin: 15px 0;
}

#small-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #cccccc;
}

/* Content blocks */
.content-block {
  background-color: rgba(16, 36, 15, 0.7); /* Semi-transparent dark green */
  margin: 20px;
  padding: 15px;
  border: 1px solid rgba(186, 255, 41, 0.3); /* Semi-transparent lime */
}

.content-block-title {
  color: #baff29; /* Lime accent color */
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.pagination-button {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  background-color: #0b0f0b;
  color: #ffffff;
  border: 1px solid #baff29; /* Lime accent color */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pagination-button.active {
  background-color: #baff29; /* Lime accent color */
  color: #060a06; /* Near-black text on lime background */
}

/* Responsive adjustments */
@media (min-width: 481px) {
  .container {
    border-radius: 0;
  }

  h1 {
    font-size: 32px;
  }

  .header-icon {
    width: 70px;
    height: 70px;
  }

  .header-title {
    font-size: 26px;
  }

  .diamonds-selection {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile optimizations */
@media (max-width: 480px) {
  body {
    padding: 0;
  }

  .container {
    max-width: 100%;
    min-height: 100vh;
  }

  .header-banner {
    height: 100px;
  }

  .header-icon {
    width: 50px;
    height: 50px;
  }

  .header-title {
    font-size: 18px;
  }

  .header-subtitle {
    font-size: 12px;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  input, button, .send-button {
    padding: 10px;
  }

  .data h2, .diamonds-options h2 {
    font-size: 18px;
  }

  .data p {
    font-size: 14px;
  }

  .diamond-option label {
    padding: 10px;
  }

  .diamond-option span {
    font-size: 14px;
  }
}
