/* Steam Verification Styles */
/* Add these to your existing CSS files */

/* ===== STEAM VERIFICATION CARD (Profile Page) ===== */
.steam-verification-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.steam-verification-card:hover {
  border-color: rgba(100, 255, 218, 0.5);
  box-shadow: 0 4px 20px rgba(100, 255, 218, 0.1);
}

.steam-verification-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.steam-verification-card h3 i {
  color: #66c0f4;
}

/* Not Connected State */
.steam-not-connected p {
  color: #ccc;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.steam-not-connected ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.steam-not-connected li {
  color: #64ffda;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.btn-connect-steam {
  background: linear-gradient(135deg, #171a21 0%, #1b2838 100%);
  border: 2px solid #66c0f4;
  color: #66c0f4;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-connect-steam:hover {
  background: #171a21;
  box-shadow: 0 0 20px rgba(102, 192, 244, 0.5);
  transform: translateY(-2px);
}

.btn-connect-steam i {
  font-size: 1.3rem;
}

.btn-later {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-later:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Connected State */
.steam-connected {
  animation: fadeIn 0.5s ease;
}

.steam-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.steam-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #64ffda;
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.steam-info h4 {
  color: #64ffda;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.steam-info p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.steam-info a {
  color: #66c0f4;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s ease;
}

.steam-info a:hover {
  color: #64ffda;
}

/* ===== STEAM CONNECTION PROMPT MODAL ===== */
.steam-prompt-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.steam-prompt-modal.show {
  display: flex !important;
  animation: fadeIn 0.3s ease;
}

.steam-prompt-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1419 100%);
  border: 2px solid rgba(100, 255, 218, 0.3);
  border-radius: 16px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  position: relative;
}

.steam-prompt-content h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.steam-prompt-content p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.steam-prompt-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.btn-steam-now {
  background: linear-gradient(135deg, #171a21 0%, #1b2838 100%);
  border: 2px solid #66c0f4;
  color: #66c0f4;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-steam-now:hover {
  background: #171a21;
  box-shadow: 0 0 20px rgba(102, 192, 244, 0.5);
  transform: translateY(-2px);
}

.btn-steam-later {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ccc;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-steam-later:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.steam-prompt-note {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* ===== REGISTRATION INFO MESSAGE ===== */
.auth-info-message {
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.auth-info-message i {
  color: #64ffda;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.auth-info-message p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== STEAM VERIFICATION INDICATORS ===== */
/* Navigation indicator */
.nav-link .fa-check-circle {
  color: #64ffda;
  margin-left: 5px;
}

.nav-link .fa-exclamation-circle {
  color: #ff9800;
  margin-left: 5px;
}

/* Feature lock indicator */
.feature-locked {
  position: relative;
  opacity: 0.7;
}

.feature-locked::after {
  content: '\f023'; /* Font Awesome lock icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #ff9800;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .steam-verification-card {
    padding: 1.5rem;
  }

  .steam-profile {
    flex-direction: column;
    text-align: center;
  }

  .steam-prompt-content {
    padding: 2rem;
  }

  .steam-prompt-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-steam-now,
  .btn-steam-later {
    width: 100%;
  }
}

/* Steam prompt additions */
.steam-prompt-icon {
  font-size: 4rem;
  color: #66c0f4;
  margin-bottom: 1rem;
  text-align: center;
}

.steam-prompt-benefits {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.steam-prompt-benefits h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #4a90e2;
}

.steam-prompt-benefits ul {
  list-style: none;
  padding: 0;
}

.steam-prompt-benefits li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.steam-prompt-benefits li i {
  color: #4a90e2;
  width: 20px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  color: #ffffff;
}

/* Utility classes */
.hidden {
  display: none !important;
}
