/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #f8e248;
  --deep-red: #c03442;
  --blue: #2ba7e5;
  --dark-shade: #241620;
  --dark-blue: #254771;
  --orange: #f9874c;
  --text-color: #ffffff;
  --background-color: #241620;
  --accent-color-1: #2ba7e5;
  --accent-color-2: #f8e248;
  --button-hover: #f9874c;
  --error-color: #c03442;
}

/* Body Styling with Background Image */
body, html {
  height: 100%;
  overflow: hidden;
  font-family: 'Roboto Mono', monospace;
  color: var(--text-color);
}

/* Background Overlay Styling */
.background {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}


.background::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('your-background-image.jpg') no-repeat center center fixed;
  background-size: cover;
  filter: brightness(1.1);
  z-index: -1;
  animation: backgroundPulse 10s infinite alternate;
}

@keyframes backgroundPulse {
  0% {
    filter: brightness(1) hue-rotate(0deg);
  }
  50% {
    filter: brightness(1.3) hue-rotate(10deg);
  }
  100% {
    filter: brightness(1) hue-rotate(0deg);
  }
}

.neon-sign {
  position: absolute;
  background: rgba(255, 0, 0, 0.5); /* Adjust color and opacity */
  mix-blend-mode: screen;
  animation: neonFlicker 2s infinite;
}

/* Position each neon sign overlay */
.neon-1 {
  top: 2%;
  left: 3%;
  width: 50px;
  height: 50px;
}

.neon-2 {
  top: 6%;
  left: 55%;
  width: 11vw;
  height: 0.7vh;
}

.neon-3 {
  top: 13%;
  left: 55%;
  width: 11vw;
  height: 0.7vh;
}

.neon-4 {
  top: 3%;
  left: 60%;
  width: 11vw;
  height: 0.7vh;
}

@keyframes neonFlicker {
  0%, 100% {
    opacity: 1;
    filter: brightness(1.5);
  }
  50% {
    opacity: 0.8;
    filter: brightness(0.8);
  }
}


@keyframes neonFlicker {
  0%, 100% {
    opacity: 1;
    filter: brightness(1.5);
  }
  50% {
    opacity: 0.8;
    filter: brightness(0.8);
  }
}

/* Screen Containers */
.screen {
  position: absolute;
  top: 42.5vh;
  left: 51.1vw;
  transform: translate(-50%, -50%);
  width: 860px; /* Match this with .monitor's width */
  height: 500px; /* Match this with .monitor's height */
  display: none; /* Hidden by default */
border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden; /* Prevent content from overflowing */
}


/* Monitor Styling */
.monitor {
  width: 860px;
  height: 500px;
  
  perspective: 1000px;
  z-index: 2;
}


@media screen and (max-width: 768px) {
  .monitor {
    width: 90vw;
    height: 56.25vw; /* Maintains 16:9 aspect ratio */
  }
}

/* Monitor Border */
.monitor-border {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-shade), var(--dark-blue), var(--deep-red));
  border-radius: 20px;
  box-shadow: 0 0 30px var(--blue), inset 0 0 10px var(--blue);
  padding: 20px;
  position: relative;
  animation: borderPulse 5s infinite;
}

@keyframes borderPulse {
  0%, 100% { box-shadow: 0 0 30px var(--blue), inset 0 0 10px var(--blue); }
  50% { box-shadow: 0 0 50px var(--orange), inset 0 0 20px var(--orange); }
}

/* Monitor Screen (Terminal) */
.monitor-screen {
  width: 100%;
  height: 100%;
  background: rgba(36, 22, 32, 0.95);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.5s ease;
}

/* Terminal Header */
.terminal-header {
  background: rgba(36, 22, 32, 0.95);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--blue);
}

.terminal-buttons {
  display: flex;
  gap: 10px;
}

.button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  animation: blink 3s infinite;
}

.button.red {
  background: var(--deep-red);
  box-shadow: 0 0 5px var(--deep-red);
}

.button.yellow {
  background: var(--yellow);
  box-shadow: 0 0 5px var(--yellow);
}

.button.green {
  background: var(--blue);
  box-shadow: 0 0 5px var(--blue);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.terminal-title {
  position: relative;
  color: var(--blue);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4em;
  display: flex;
  align-items: center;
  margin-left: 20px;
  overflow: hidden;
}

.terminal-title i {
  margin-right: 10px;
}

/* Glitch Effect for Terminal Title */
.terminal-title::before,
.terminal-title::after {
  content: 'Memecoin Analyzer';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
}

.terminal-title::before {
  left: 2px;
  text-shadow: -2px 0 var(--deep-red);
  animation: glitch 2s infinite linear alternate-reverse;
}

.terminal-title::after {
  left: -2px;
  text-shadow: -2px 0 var(--orange);
  animation: glitch 3s infinite linear alternate-reverse;
}

@keyframes glitch {
  0% {
    clip: rect(42px, 9999px, 44px, 0);
    transform: skew(0.5deg);
  }
  5% {
    clip: rect(85px, 9999px, 94px, 0);
    transform: skew(0.5deg);
  }
  10% {
    clip: rect(12px, 9999px, 56px, 0);
    transform: skew(0.5deg);
  }
  15% {
    clip: rect(77px, 9999px, 45px, 0);
    transform: skew(0.5deg);
  }
  /* Add more keyframes as desired */
}

/* Terminal Body */
.terminal-body {
  padding: 20px;
  color: var(--text-color);
  flex: 1;
  overflow-y: auto;
  position: relative;
  background: rgba(36, 22, 32, 0.85);
  border-top: 2px solid var(--blue);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: inset 0 0 10px var(--blue);
  transition: background 0.5s ease, color 0.5s ease;
}

/* Start Screen Specific Styling */
.start-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.start-content h1 {
  margin-bottom: 10px;
  font-size: 2em;
  color: var(--yellow);
}

.start-content p {
  margin-bottom: 30px;
  font-size: 1.2em;
  color: var(--text-color);
}

.start-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.start-buttons .navigate-button {
  width: 200px;
  justify-content: center;
}

/* Drop Zone Styling */
.drop-zone {
  aspect-ratio: 1;
  width: 90%; /* Reduced from 100% to give margins */
  margin: 0 auto; /* Center the drop zone */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 2px dashed var(--blue);
  border-radius: 10px;
  background: rgba(36, 22, 32, 0.5);
  color: var(--blue);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drop-zone.hover {
  background: rgba(36, 22, 32, 0.8);
  border-color: var(--orange);
  transform: scale(1.02);
}

.drop-zone i {
  font-size: 2em;
  margin-bottom: 10px;
}

.drop-zone p {
  margin: 0;
  font-size: 1em;
  pointer-events: none;
}

/* Image Preview Styling */
#drop-zone img {
  max-width: 100%;
  max-height: 200px;
  margin-top: 10px;
  border-radius: 5px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Upload Form Styling */
#upload-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

#image-input {
  display: none; /* Hide the default file input */
}

button[type="submit"], .navigate-button {
  padding: 12px 24px;
  background: linear-gradient(45deg, var(--orange), var(--blue));
  border: none;
  border-radius: 8px;
  color: var(--dark-shade);
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  display: flex;
  align-items: center;

  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 10px var(--orange), 0 0 20px var(--blue);
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

button[type="submit"]::before,
.navigate-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--blue), var(--orange), var(--blue));
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 10px;
}

button[type="submit"]:hover::before,
.navigate-button:hover::before {
  opacity: 1;
}

#response {
  flex: 1;
  background: rgba(36, 22, 32, 0.75);
  padding: 15px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  width: 100%;

  overflow-y: auto;

  font-family: 'Roboto Mono', monospace;
  color: var(--text-color);
  box-shadow: inset 0 0 10px var(--blue);
}


/* Scrollbar Styling */
.terminal-body::-webkit-scrollbar {
  width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.terminal-body::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 4px;
}

/* Loader Styling */
.loader {
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top: 8px solid var(--blue);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

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

.error {
  background: rgba(192, 52, 66, 0.2);
  padding: 10px;
  border-left: 4px solid var(--deep-red);
  border-radius: 4px;
  color: var(--error-color);
}

/* Glitch Effect */
@keyframes glitch {
  0% {
    clip: rect(42px, 9999px, 44px, 0);
    transform: skew(0.5deg);
  }
  5% {
    clip: rect(85px, 9999px, 94px, 0);
    transform: skew(0.5deg);
  }
  10% {
    clip: rect(12px, 9999px, 56px, 0);
    transform: skew(0.5deg);
  }
  15% {
    clip: rect(77px, 9999px, 45px, 0);
    transform: skew(0.5deg);
  }
  /* Add more keyframes as desired */
}

/* Additional Button Effects */
button[type="submit"], .navigate-button {
  position: relative;
  z-index: 1;
}

button[type="submit"]::before, .navigate-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--blue), var(--orange), var(--blue));
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 10px;
}

button[type="submit"]:hover::before, .navigate-button:hover::before {
  opacity: 1;
}

/* Neon Glowing Input Fields */
#image-input:focus + .upload-label,
#image-input:not(:placeholder-shown) + .upload-label {
  box-shadow: 0 0 15px var(--yellow), 0 0 30px var(--blue);
}

/* Smooth Transition for Terminal Body */
.terminal-body {
  transition: background 0.5s ease, color 0.5s ease;
}

/* Enhanced Loader Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error Message Styling */
.error {
  background: rgba(192, 52, 66, 0.2);
  padding: 10px;
  border-left: 4px solid var(--deep-red);
  border-radius: 4px;
  color: var(--error-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .monitor {
    width: 95%;
    height: 90%;
  }

  .terminal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .terminal-title {
    margin-left: 0;
    margin-top: 10px;
  }

  .terminal-title::before,
  .terminal-title::after {
    content: 'Memecoin Analyzer';
    /* Adjust as needed for smaller screens */
  }

  /* Adjust Drop Zone for smaller screens */
  .drop-zone {
    padding: 20px;
  }

  #drop-zone img {
    max-height: 150px;
  }

  /* Start Buttons Styling */
  .start-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .start-buttons .navigate-button {
    width: 80%;
    justify-content: center;
  }

  /* Top Coins List Styling for Small Screens */
  .top-coins-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .coin-item {
    flex-direction: column;
    align-items: center;
  }

  .coin-analysis {
    text-align: center;
  }
}

/* Top Coins List Styling */
.top-coins-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Coin Item Styling */
.coin-item {
  display: flex;
  align-items: center;
  background: rgba(36, 22, 32, 0.7);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--blue);
  transition: background 0.3s, transform 0.3s;
}

.coin-item:hover {
  background: rgba(36, 22, 32, 0.9);
  transform: translateY(-5px);
}

.coin-image {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  margin-right: 20px;
  object-fit: cover;
  box-shadow: 0 0 10px var(--blue);
}

.coin-analysis {
  flex: 1;
}

.coin-analysis h3 {
  margin-bottom: 10px;
  color: var(--yellow);
}

.coin-analysis p {
  color: var(--text-color);
}

.buy {
  color: #06fb06; /* Light green for BUY */
  font-weight: bold;
  text-transform: uppercase;
}

.sell {
  color: #ff0707; /* Dark red for SELL */
  font-weight: bold;
  text-transform: uppercase;
}

/* Update terminal body layout */
.terminal-body {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  height: 100%;
  position: relative;
}

/* Left section styling */
.upload-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 45%;
  padding: 20px;
}

/* Right section styling */
/* Analysis Section */
/* Analysis Section */
.analysis-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(36, 22, 32, 0.75);
  border: 1px solid var(--blue);
  border-radius: 8px;

  overflow-y: auto;
  box-shadow: inset 0 0 10px var(--blue);
}

/* Response Div */


/* Analysis Result Styling */
.analysis-result {
  width: 100%;
  height: 100%;
}

/* Optional: Style the analysis content */
.analysis-result h1,
.analysis-result h2,
.analysis-result h3 {
  color: var(--yellow);
}

.analysis-result p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-color);
}

/* Update drop zone styling */
.drop-zone {
  aspect-ratio: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 2px dashed var(--blue);
  border-radius: 10px;
  background: rgba(36, 22, 32, 0.5);
  color: var(--blue);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drop-zone:hover {
  background: rgba(36, 22, 32, 0.8);
  border-color: var(--orange);
  transform: scale(1.02);
}

.drop-zone i {
  font-size: 3em;
  margin-bottom: 15px;
}

/* Update analyze button styling */

.analyze-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--orange), 0 0 25px var(--blue);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .terminal-body {
    flex-direction: column;
  }
  
  .upload-section {
    max-width: 100%;
  }
  
  .drop-zone {
    aspect-ratio: auto;
    height: 200px;
  }
  
  .back-button {
    display: inline-flex;
    width:auto;
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
  }
}
/* Update uploaded image container styling */
.uploaded-image-container {
  aspect-ratio: 1;
  width: 50%;
  height: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(36, 22, 32, 0.8);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--blue);
  position: relative;
}

.uploaded-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

#remove-image-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(192, 52, 66, 0.8);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

#remove-image-button:hover {
  background: rgba(192, 52, 66, 1);
}



.upload-section {
  flex: 1;
  display: flex;
  flex-direction: column !important; /* Force column layout */
  gap: 20px;
  max-width: 45%;
  padding: 20px;
  align-items: center;
}

#upload-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

/* New loading animation styles */
.loading-container {
  width: 100%;
  text-align: center;
  padding: 20px;
}

.loading-text {
  color: #4ade80;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Roboto Mono', monospace;
}

.loading-bar {
  background-color: rgba(22, 78, 22, 0.5);
  height: 24px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 15px 0;
}

.progress {
  width: 0%;
  height: 100%;
  background-color: #4ade80;
  border-radius: 12px;
  transition: width 50ms linear;
  box-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80;
}

.percentage {
  color: #4ade80;
  margin-top: 10px;
  font-family: 'Roboto Mono', monospace;
}

/* Upload Section Styling */
.upload-section {
  flex: 1;
  display: flex;
  flex-direction: column; /* Ensure column layout */
  gap: 20px;
  max-width: 45%;
  padding: 20px;
  align-items: center;
}




/* Uploaded Image Container Styling */
.uploaded-image-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(36, 22, 32, 0.8);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--blue);
  position: relative;
}

.uploaded-image-container img {
  max-width: 100%;

  object-fit: contain;
  border-radius: 5px;
}

#remove-image-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(192, 52, 66, 0.8);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

#remove-image-button:hover {
  background: rgba(192, 52, 66, 1);
}

/* Drop Zone Styling */
#drop-zone {
  width: 100%;
}

/* Analyze Button Styling */


.analyze-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--orange), 0 0 25px var(--blue);
}


/* Buttons Container */
.buttons-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  width: 100%;
  
}

/* Back Button *
/* Make buttons equal width */
.back-button {

  max-width: 200px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .buttons-container {
    flex-direction: column;
    align-items: stretch;
  }

  .back-button,
  .analyze-button {
    max-width: none;
  }
}

/* Analyze Button Styling */
.analyze-button {
  /* Remove width: 100%; */
  padding: 15px;
  background: linear-gradient(45deg, var(--orange), var(--blue));
  border: none;
  border-radius: 8px;
  color: var(--dark-shade);
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--orange), 0 0 20px var(--blue);
  /* Remove margin: 0 auto; */
  /* Remove any conflicting properties */
}


/* Style for the first line */
.first-line {
  font-size: 2em;
  color: var(--yellow);
  text-shadow: 0 0 10px var(--blue), 0 0 20px var(--blue);
  margin-bottom: 20px;
}

/* General Markdown content styling */
.analysis-result h1,
.analysis-result h2,
.analysis-result h3 {
  color: var(--yellow);
}

.analysis-result p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* General Markdown content styling */
.analysis-result h1,
.analysis-result h2,
.analysis-result h3 {
  color: var(--yellow);
}

.analysis-result p {
  line-height: 1.6;
  margin-bottom: 15px;
}
.loading-container {
  width: 100%;
  text-align: center;
  padding: 20px;
}

.loading-text {
  color: var(--yellow);
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Roboto Mono', monospace;
}

.loading-bar {
  width: 100%;
  height: 24px;
  background-color: rgba(22, 78, 22, 0.5);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 10px var(--blue);
}

.progress {
  width: 0%;
  height: 100%;
  background-color: #4ade80;
  border-radius: 12px;
  transition: width 50ms linear;
  box-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 12px;
  animation: loadingAnimation 5s linear forwards;
  box-shadow: 0 0 10px var(--orange), 0 0 20px var(--blue);
}

@keyframes loadingAnimation {
  0% { width: 0%; }
  100% { width: 100%; }
}

.percentage {
  color: #4ade80;
  margin-top: 10px;
  font-family: 'Roboto Mono', monospace;
}

/* Decision Styling */
.decision-container {
  text-align: center;
  margin-bottom: 20px;
}
.decision {
  font-size: 3em;
  font-weight: bold;
  color: var(--decision-color, #ffff00); /* Use CSS variable */
  text-shadow:
    0 0 5px var(--decision-color, #00ffff),
    0 0 10px var(--decision-color, #00ffff),
    0 0 20px var(--decision-color, #00ffff),
    0 0 40px var(--decision-color, #00ffff),
    0 0 80px var(--decision-color, #00ffff);
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0% {
    opacity: 1;
    text-shadow:
      0 0 5px #00ffff,
      0 0 10px #00ffff,
      0 0 20px #00ffff,
      0 0 40px #00ffff,
      0 0 80px #00ffff;
  }
  50% {
    opacity: 0.8;
    text-shadow:
      0 0 3px #00ffff,
      0 0 6px #00ffff,
      0 0 12px #00ffff,
      0 0 24px #00ffff,
      0 0 48px #00ffff;
  }
  100% {
    opacity: 1;
    text-shadow:
      0 0 5px #00ffff,
      0 0 10px #00ffff,
      0 0 20px #00ffff,
      0 0 40px #00ffff,
      0 0 80px #00ffff;
  }
}

/* Reasons List Styling */
.reasons {
  list-style-type: disc;
  padding-left: 20px;
}

.reasons li {
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: 1.2em;
}

/* Position terminal body relatively */
#topcoins-screen .terminal-body {
  position: relative;
}

/* Style the back button */
#topcoins-screen .back-button {
  position: fixed;
  bottom: 31px;
  left: 36px;
  z-index: 1;
}

.monitor {
  width: 100%;
  height: 100%;
  perspective: 1000px;
  z-index: 2;
}

.monitor-border,
.monitor-screen,
.terminal-body {
  width: 100%;
  height: 100%;
}
.uploaded-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* Add these styles to your existing CSS */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.social-link {
  color: var(--text-color);
  font-size: 1.5em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(36, 22, 32, 0.7);
  border: 1px solid var(--blue);
}

.social-link:hover {
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--blue);
  background: rgba(36, 22, 32, 0.9);
}

.social-link i {
  font-size: 1.2em;
}
/* Share button container */
#share-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 10px;
}

.share-button {
  padding: 12px 24px;
  background: linear-gradient(45deg, var(--orange), var(--blue));
  border: none;
  border-radius: 8px;
  color: var(--dark-shade);
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--orange), 0 0 20px var(--blue);
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--orange), 0 0 25px var(--blue);
}

.share-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}