* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e6e6e6;
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

/* =====================
   GREETING SECTION
   ===================== */
#greeting {
  text-align: center;
  margin: 1rem auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.6s ease-out;
  position: relative;
}

.game-title {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  background: linear-gradient(45deg, #a8a5e6, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.greeting-text {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #a8a5e6;
  font-weight: 500;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.greeting-animation {
  width: clamp(50px, 8vw, 70px) !important;
  height: clamp(50px, 8vw, 70px) !important;
  display: inline-block;
  vertical-align: middle;
}

.greeting-name {
  font-weight: 600;
  background: linear-gradient(135deg, #9333EA, #FCD34D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-subtitle {
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  color: #7ec8e3;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* =====================
   INFO ICON - CORNER
   ===================== */
.info-corner {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 1000;
  filter: drop-shadow(0 4px 12px rgba(108, 92, 231, 0.4));
  animation: infoPulse 2s ease-in-out infinite;
}

.info-corner:hover {
  animation: infoPulseHover 0.8s ease-in-out infinite;
}

@keyframes infoPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes infoPulseHover {

  0%,
  100% {
    transform: scale(1.14);
  }

  50% {
    transform: scale(1.25);
  }
}

/* =====================
   RULES MODAL STYLES
   ===================== */
.rules-text {
  text-align: left;
}

.rules-text h3 {
  color: var(--game-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.rules-text ul,
.rules-text ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.rules-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.win-amount {
  color: var(--game-success);
}

.loss-amount {
  color: var(--game-danger);
}

.good-luck {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--game-primary);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.game-content {
  display: none;
}

.outer-div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-wrapper {
  background: rgba(22, 33, 62, 0.9);
  border-radius: 12px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Prize Info Container */
.prize-info-container {
  display: flex;
  gap: clamp(0.3rem, 1.5vw, 0.75rem);
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}

.prize-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(0.4rem, 1.5vw, 0.75rem) clamp(0.5rem, 2vw, 1rem);
  border-radius: clamp(6px, 1.5vw, 10px);
  backdrop-filter: blur(12px);
  border: 2px solid;
  flex: 1;
  min-width: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prize-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.6s;
  pointer-events: none;
}

.prize-info:hover::before {
  left: 100%;
}

.win-info {
  background: linear-gradient(145deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.1));
  border-color: rgba(46, 204, 113, 0.4);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.2);
}

.win-info:hover {
  border-color: #2ecc71;
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.4);
  transform: translateY(-3px);
}

.lose-info {
  background: linear-gradient(145deg, rgba(231, 76, 60, 0.2), rgba(231, 76, 60, 0.1));
  border-color: rgba(231, 76, 60, 0.4);
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.2);
}

.lose-info:hover {
  border-color: #e74c3c;
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
  transform: translateY(-3px);
}

.prize-icon {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  margin-bottom: clamp(0.15rem, 0.5vw, 0.25rem);
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.prize-label {
  font-size: clamp(0.5rem, 1.2vw, 0.65rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: clamp(0.15rem, 0.5vw, 0.2rem);
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.prize-amount {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.win-amount {
  color: #2ecc71;
  text-shadow: 0 2px 8px rgba(46, 204, 113, 0.5);
}

.lose-amount {
  color: #e74c3c;
  text-shadow: 0 2px 8px rgba(231, 76, 60, 0.5);
}

/* Question Container */
#question-container {
  padding: clamp(1rem, 3vw, 1.75rem);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: visible;
  min-height: 120px;
}

#question {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

#answer-asteriks {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  letter-spacing: clamp(4px, 1.5vw, 8px);
  text-align: center;
  font-family: monospace;
  word-wrap: break-word;
  color: #ff7f50;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  clear: both;
}

/* Answer Input Section - Unified Container */
#answer-container {
  margin: 2rem 0;
  position: relative;
  display: block;
  width: 100%;
}

#answer-input {
  width: 100%;
  text-align: center;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  padding-right: clamp(55px, 12vw, 70px);
  padding-left: clamp(55px, 12vw, 70px);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  border: 2px solid #4ecdc4;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  color: #ffd700;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#answer-input:focus {
  outline: none;
  border-color: #00ff9d;
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
  background: rgba(0, 0, 0, 0.5);
}

#answer-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.85rem, 2.2vw, 1rem);
}

#submit-answer {
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  font-size: 0;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border: 2px solid #4ecdc4;
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

#submit-answer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 9px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#submit-answer::after {
  content: '';
  position: relative;
  width: 60%;
  height: 60%;
  background-image: url('/images/icons/send-btn-icon_s.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  display: block;
  filter: brightness(0) invert(1);
}

#submit-answer:hover {
  background: linear-gradient(145deg, #4ecdc4, #45b7af);
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.5);
}

#submit-answer:hover::before {
  opacity: 1;
}

#submit-answer:hover::after {
  animation: sendIconFly 0.6s ease-in-out infinite;
}

@keyframes sendIconFly {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(3px, 0) scale(1.1);
  }
}

#submit-answer:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

#submit-answer:disabled {
  background: linear-gradient(145deg, #555, #666);
  cursor: not-allowed;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#submit-answer:disabled::after {
  opacity: 0.4;
  animation: none;
}

/* Messages Styling */
/* Add this to your CSS */
.hidden {
  display: none !important;
  animation: fadeOut 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(20px);
    opacity: 0;
  }
}

#winning-message,
#negative-message,
.message-success,
.message-error {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  margin: 1.2rem 0;
  border-radius: 8px;
  font-size: clamp(0.9rem, 2.3vw, 1.05rem);
  text-align: center;
  animation: slideIn 0.5s ease-out;
  transition: all 0.3s ease-out;
  line-height: 1.5;
}

#winning-message,
.message-success {
  background: rgba(46, 204, 113, 0.15);
  border: 2px solid #2ecc71;
  color: #2ecc71;
}

#negative-message,
.message-error {
  background: rgba(231, 76, 60, 0.15);
  border: 2px solid #e74c3c;
  color: #e74c3c;
}

.message-close {
  text-align: center;
  color: #a8a5e6;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  margin: 1rem 0;
  opacity: 0.8;
}

.correct-answer-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #7ec8e3;
  margin: 1.2rem 0;
  font-weight: 600;
  line-height: 1.4;
}

/* Close Button */
.close-Btn {
  padding: clamp(0.85rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.close-Btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* =====================
   TIMER COMPONENT (Positioned in top-right of question container)
   ===================== */
.timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  float: right;
  padding: clamp(0.35rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  background: linear-gradient(145deg, rgba(252, 211, 77, 0.25), rgba(245, 158, 11, 0.2));
  border: 2px solid rgba(252, 211, 77, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
  backdrop-filter: blur(10px);
  min-width: 85px;
  margin: 0 0 0.75rem 1rem;
  position: relative;
  z-index: 10;
}

.timer-container:hover {
  background: linear-gradient(145deg, rgba(252, 211, 77, 0.35), rgba(245, 158, 11, 0.3));
  border-color: rgba(252, 211, 77, 0.7);
  box-shadow: 0 6px 20px rgba(252, 211, 77, 0.5);
  transform: scale(1.05);
}

.timer-display {
  font-size: clamp(0.7rem, 1.6vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffd700;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 6px rgba(252, 211, 77, 0.5);
  white-space: nowrap;
}

.timer-warning-text {
  font-size: clamp(0.5rem, 1.1vw, 0.6rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.9;
  white-space: nowrap;
}

/* Timer States */
.timer-container.warning {
  background: linear-gradient(145deg, rgba(255, 140, 0, 0.35), rgba(237, 125, 49, 0.25));
  border-color: rgba(255, 140, 0, 0.7);
  animation: pulseOrange 1.5s infinite;
}

.timer-container.warning .timer-display {
  color: #ff8c00;
  text-shadow: 0 2px 8px rgba(255, 140, 0, 0.6);
}

.timer-container.critical {
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.4), rgba(220, 38, 38, 0.3));
  border-color: rgba(220, 38, 38, 0.8);
  animation: pulseRed 1s infinite;
}

.timer-container.critical .timer-display {
  color: #ff6b6b;
  text-shadow: 0 2px 8px rgba(220, 38, 38, 0.7);
}

.timer-container.timeout {
  background: linear-gradient(145deg, rgba(107, 114, 128, 0.25), rgba(107, 114, 128, 0.15));
  border-color: rgba(107, 114, 128, 0.5);
  animation: none;
  opacity: 0.7;
}

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

#timeout-modal-content {
  background: #16213e;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #e74c3c;
  animation: modalEntry 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#timeout-modal h3 {
  color: #e74c3c;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

#correct-answer {
  font-size: 1.4rem;
  color: #7ec8e3;
  margin: 1.5rem 0;
}

/*// Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pulseYellow {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

@keyframes pulseOrange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.75);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 140, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}

@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.8);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalEntry {
  from {
    transform: scale(0) rotate(-15deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*// Responsive Design */
@media (max-width: 400px) {
  .prize-info-container {
    gap: clamp(0.25rem, 1vw, 0.4rem);
    margin-bottom: 0.75rem;
  }

  .prize-info {
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.4rem, 1.5vw, 0.5rem);
    border-width: 1px;
  }

  .prize-icon {
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    margin-bottom: 0.1rem;
  }

  .prize-label {
    font-size: clamp(0.45rem, 1vw, 0.55rem);
    margin-bottom: 0.1rem;
    letter-spacing: 0.2px;
  }

  .prize-amount {
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    letter-spacing: 0.3px;
  }

  /* Smaller timer on very small screens */
  .timer-container {
    min-width: 70px;
    padding: 0.3rem 0.5rem;
    margin: 0 0 0.5rem 0.75rem;
  }

  .timer-display {
    font-size: 0.65rem;
    margin-bottom: 0.1rem;
  }

  .timer-warning-text {
    font-size: 0.45rem;
  }
}

@media (min-width: 400px) and (max-width: 767px) {
  .prize-info-container {
    gap: clamp(0.4rem, 1.5vw, 0.6rem);
  }

  .prize-info {
    padding: clamp(0.4rem, 1.5vw, 0.6rem) clamp(0.6rem, 2vw, 0.8rem);
  }

  .prize-icon {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }

  .prize-label {
    font-size: clamp(0.5rem, 1.2vw, 0.65rem);
  }

  .prize-amount {
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  }

  /* Moderate timer size on medium screens */
  .timer-container {
    min-width: 80px;
    padding: 0.35rem 0.6rem;
    margin: 0 0 0.6rem 0.85rem;
  }

  .timer-display {
    font-size: 0.75rem;
  }

  .timer-warning-text {
    font-size: 0.5rem;
  }
}

@media (min-width: 600px) {
  .timer-container {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  #greeting {
    max-width: 95%;
    margin: 1.5rem auto;
    padding: clamp(1.2rem, 3vw, 1.8rem);
  }

  #timeout-modal-content {
    width: 90%;
  }

  .info-corner {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0.5rem;
  }

  #greeting {
    max-width: 100%;
    margin: .5rem;
    padding: clamp(1rem, 4vw, 1.5rem);
  }

  .game-title {
    margin-bottom: 1rem;
  }

  .game-subtitle {
    margin-top: 0.75rem;
  }

  .outer-div {
    padding: 1.5rem 0.5rem;
  }

  .content-wrapper {
    padding: 1rem;
  }

  .info-corner {
    width: 36px;
    height: 36px;
    bottom: 6px;
    right: 6px;
  }
}

/* Advanced Hover Effects */
#question-container:hover {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #4ecdc4;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00ff9d;
}

/* Form Element States */
#answer-input:disabled {
  background: rgba(0, 0, 0, 0.2);
  border-color: #666;
  cursor: not-allowed;
}

#submit-answer:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Text Selection Styling */
::selection {
  background: #4ecdc4;
  color: white;
}

/* Loading State */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Additional Decorative Elements */
.container::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
  z-index: -1;
}

.container::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, transparent 70%);
  z-index: -1;
}

/* Answer Reveal Animation */
.reveal-letter {
  animation: letterReveal 0.6s ease-out;
}

@keyframes letterReveal {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  80% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 3D Effect Enhancements */
.content-wrapper {
  transform: translateZ(20px);
}

/* Gradient Borders */
.gradient-border {
  position: relative;
  background: linear-gradient(45deg, #4ecdc4, #00ff9d);
  padding: 3px;
  border-radius: 12px;
}

.gradient-border>div {
  background: #16213e;
  border-radius: 10px;
  padding: 2rem;
}