/* ============================================
   LOGIN PAGE SPECIFIC STYLES
   ============================================ */

/* Page container with background */
.login-page-container {
  min-height: 100vh;
  height: 100vh;
  background-color: transparent;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Override window-app positioning for login page */
.login-page-container .window-app.common-box {
  position: fixed !important;
  top: 90px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 999 !important;
  max-width: 800px;
  width: 90%;
}

/* Login Banner - Fixed overlay at top */
.login-banner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(23, 23, 23, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.25rem 0.25rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  border-bottom: 1px solid rgba(233, 226, 218, 0.2);
}

.login-banner-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.login-banner-logo {
  flex-shrink: 0;
  margin-right: auto;
}

.login-banner-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.local-login-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

.local-login-banner form {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
}

.local-login-banner input[type="text"],
.local-login-banner input[type="password"],
.local-login-banner input[type="hidden"] {
  color-scheme: light;
  background-color: rgba(255, 255, 255, 0.15);
  color: #e9e2da;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(233, 226, 218, 0.3);
  font-size: 0.9rem;
  flex: 0 1 180px;
  transition: all 0.3s;
  margin-bottom: 0px;
}

.local-login-banner input[type="text"]:focus,
.local-login-banner input[type="password"]:focus {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(233, 226, 218, 0.6);
  outline: none;
}

.local-login-banner input::placeholder {
  color: rgba(233, 226, 218, 0.6);
}

.local-login-banner .show-password-toggle {
  color: #e9e2da;
  cursor: pointer;
  margin-left: -2.5rem;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.local-login-banner .show-password-toggle:hover {
  opacity: 1;
}

.login-buttons-row-banner {
  display: flex;
  gap: 0.5rem;
}

.login-buttons-row-banner button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background-color: rgba(62, 7, 6, 0.9);
  color: #e9e2da;
  border: 1px solid rgba(233, 226, 218, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  margin-bottom: 0px;
}

.login-buttons-row-banner button:hover {
  background-color: rgba(94, 26, 25, 1);
  border-color: rgba(233, 226, 218, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.forgot-password-div-banner {
  margin-left: auto;
}

.forgot-password-div-banner a {
  color: #e9e2da;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.forgot-password-div-banner a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  background: transparent;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  margin: 0 auto;
  padding-top: 12vh;
  width: 90%;
  max-width: 1000px;
  z-index: 10;
  box-sizing: border-box;
}

.hero-content {
  background-color: rgba(23, 23, 23, 1.00);
  backdrop-filter: blur(15px);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(233, 226, 218, 0.1);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.2rem;
  font-weight: bold;
  color: #f3eadb;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #e9e2da;
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-button-primary {
  background-color: #e3743a;
  color: #1c1c20;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(227, 116, 58, 0.4);
}

.hero-button-primary:hover {
  background-color: #f08347;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 116, 58, 0.6);
}

.hero-button-secondary {
  background-color: transparent;
  color: #e9e2da;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 3px solid #3e4857;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.hero-button-secondary:hover {
  border-color: #5e6877;
  background-color: rgba(62, 72, 87, 0.2);
  transform: translateY(-2px);
}

/* Modal Overlay */
.patreon-modal-overlay,
.register-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.patreon-modal-overlay.active,
.register-modal-overlay.active {
  display: flex;
}

.patreon-modal-content,
.register-modal-content {
  background-color: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(233, 226, 218, 0.3);
  border-radius: 16px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  position: relative;
  margin: 2rem auto;
}

.patreon-modal-close,
.register-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #e9e2da;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0.5rem;
  line-height: 1;
}

.patreon-modal-close:hover,
.register-modal-close:hover {
  opacity: 1;
}

.patreon-modal-content h2,
.register-modal-content h2 {
  color: #e3743a;
  font-size: 2rem;
  margin: 0 0 2rem 0;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.patreon-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.patreon-modal-button {
  background-color: #e3743a;
  color: #1c1c20;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(227, 116, 58, 0.4);
}

.patreon-modal-button:hover {
  background-color: #f08347;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 116, 58, 0.6);
}

.patreon-modal-button i {
  margin-right: 0.75rem;
}

/* Register Modal Specific Styles */
.register-modal-content {
  max-width: 550px;
}

.register-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-modal-form input[type="text"],
.register-modal-form input[type="password"] {
  color-scheme: light;
  background-color: rgba(255, 255, 255, 0.15);
  color: #e9e2da;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(233, 226, 218, 0.3);
  font-size: 1rem;
  transition: all 0.3s;
  width: 100%;
  box-sizing: border-box;
}

.register-modal-form input[type="text"]:focus,
.register-modal-form input[type="password"]:focus {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(233, 226, 218, 0.6);
  outline: none;
}

.register-modal-form input::placeholder {
  color: rgba(233, 226, 218, 0.6);
}

.register-modal-form .show-password-toggle {
  text-align: right;
  color: #e9e2da;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  margin-top: -0.5rem;
}

.register-modal-form .show-password-toggle:hover {
  opacity: 1;
}

.register-modal-form .register-account-box {
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
}

.register-modal-form .register-account-box span {
  display: block;
  color: #e9e2da;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.register-modal-form .register-account-box input[type="checkbox"] {
  margin-right: 0.5rem;
  cursor: pointer;
  width: auto;
}

.register-modal-form .register-account-box a {
  color: #ffc107;
  text-decoration: underline;
}

.register-modal-form .register-account-box a:hover {
  color: #ffca28;
}

.register-modal-form button[type="submit"] {
  background-color: #e3743a;
  color: #1c1c20;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(227, 116, 58, 0.4);
  margin-top: 0.5rem;
}

.register-modal-form button[type="submit"]:hover:not(:disabled) {
  background-color: #f08347;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 116, 58, 0.6);
}

.register-modal-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Main Content Section */
.main-content-section {
  background-color: transparent;
  padding: 2rem;
  width: 100%;
  position: relative;
}

.info-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background-color: rgba(23, 23, 23, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(233, 226, 218, 0.15);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  background-color: rgba(23, 23, 23, 0.85);
  border-color: rgba(233, 226, 218, 0.25);
}

.info-card i {
  font-size: 3rem;
  color: #e9e2da;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(62, 7, 6, 0.5);
}

.info-card h3 {
  color: #e9e2da;
  margin: 1rem 0;
  font-size: 1.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.info-card p {
  color: rgba(233, 226, 218, 0.9);
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Info and Error boxes on login page */
.login-page-container .info-box,
.login-page-container .error-box {
  background-color: rgba(23, 23, 23, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(233, 226, 218, 0.2);
  margin: 0;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 90%;
  padding-top: 2.5rem;
}

.info-box-close,
.error-box-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: #e9e2da;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  z-index: 10;
}

.info-box-close:hover,
.error-box-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.login-page-container .info-box h2,
.login-page-container .error-box h2 {
  color: #e9e2da;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.login-page-container .info-box span,
.login-page-container .error-box span {
  color: rgba(233, 226, 218, 0.9);
}

.login-page-container .error-box {
  border-color: rgba(220, 53, 69, 0.5);
  background-color: rgba(40, 15, 17, 0.75);
}

.login-page-container .info-box {
  border-color: rgba(255, 193, 7, 0.5);
  background-color: rgba(40, 35, 15, 0.75);
}

/* Login Container - Centered layout */
.login-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 4rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Login Panel */
.login-panel {
  background-color: rgba(233, 226, 218, 0.95);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  min-width: 400px;
  max-width: 450px;
}

.login-panel .local-login-compact {
  padding: 0;
}

.login-panel .local-login-compact h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  color: #3e0706;
  text-align: center;
}

.login-panel .login-title-box-compact {
  margin-bottom: 2rem;
}

.login-panel .login-title-box-compact h2 {
  margin: 0;
  font-size: 2rem;
  color: #3e0706;
  text-align: center;
}

.login-panel input {
  color-scheme: light;
  background-color: white;
  color: black;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.login-panel .show-password-toggle {
  display: block;
  text-align: right;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  color: #3e0706;
}

.login-panel .login-buttons-row-compact {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.login-panel .login-buttons-row-compact button {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #3e0706;
  color: white;
  border: 1px solid #3e0706;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-panel .login-buttons-row-compact button:hover {
  background-color: #5e1a19;
}

.login-panel .forgot-password-div-compact {
  margin-top: 1rem;
  text-align: center;
}

.login-panel .forgot-password-div-compact a {
  color: #3e0706;
  font-size: 0.9em;
  cursor: pointer;
  text-decoration: none;
}

.login-panel .forgot-password-div-compact a:hover {
  text-decoration: underline;
}

.login-panel .login-info-box-compact {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(62, 7, 6, 0.3);
  background-color: rgba(62, 7, 6, 0.1);
  text-align: center;
}

.login-panel .login-info-box-compact p {
  color: #2e2a2a;
  margin: 0.5rem 0;
}

.login-panel .login-info-box-compact a {
  color: #3e0706;
  text-decoration: none;
  font-weight: bold;
}

.login-panel .login-info-box-compact a:hover {
  text-decoration: underline;
}

.login-panel .register-account-box-compact {
  margin: 1rem 0;
  padding: 1rem;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.login-panel .register-account-box-compact span {
  display: block;
  margin-bottom: 0.5rem;
  color: #2e2a2a;
  font-size: 0.9em;
}

.login-panel .register-account-box-compact a {
  color: #3e0706;
  text-decoration: underline;
}

/* Browse Information Panel */
.browse-info-panel {
  background-color: rgba(233, 226, 218, 0.95);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  min-width: 500px;
  max-width: 600px;
}

.browse-info-panel h2 {
  color: #3e0706;
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
  text-align: center;
}

.browse-info-panel>p {
  color: #2e2a2a;
  text-align: center;
  margin-bottom: 2rem;
}

.browse-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.browse-info-item {
  text-align: center;
  padding: 1rem;
  background-color: rgba(62, 7, 6, 0.05);
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.browse-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.browse-info-item i {
  font-size: 2.5rem;
  color: #3e0706;
  margin-bottom: 0.5rem;
}

.browse-info-item h3 {
  color: #3e0706;
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.browse-info-item p {
  color: #666;
  margin: 0;
  font-size: 0.9em;
}

.browse-links {
  border-top: 1px solid rgba(62, 7, 6, 0.2);
  padding-top: 1.5rem;
}

.browse-links h3 {
  color: #3e0706;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.browse-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.browse-links li {
  margin: 0.5rem 0;
}

.browse-links a {
  color: #3e0706;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.2s;
}

.browse-links a:hover {
  color: #5e1a19;
  text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 1200px) {
  .login-container {
    flex-direction: column;
    gap: 2rem;
  }

  .login-panel,
  .browse-info-panel {
    min-width: unset;
    max-width: 600px;
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

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

  .login-panel,
  .browse-info-panel {
    padding: 1.5rem;
  }

  .browse-info-grid {
    grid-template-columns: 1fr;
  }

  .login-panel .login-buttons-row-compact {
    flex-direction: column;
  }

  .login-banner-overlay {
    padding: 0.5rem 0.5rem;
  }

  .hero-section {
    padding-top: 10vh;
    padding-bottom: 5vh;
    width: 95%;
  }

  .login-banner-content {
    flex-direction: column;
    gap: 1rem;
  }

  .login-banner-logo {
    text-align: center;
  }

  .login-banner-logo img {
    height: 32px;
  }

  .local-login-banner {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .local-login-banner form {
    flex-direction: column;
    width: 100%;
  }

  .local-login-banner input[type="text"],
  .local-login-banner input[type="password"] {
    flex: 1 1 auto;
    width: 100%;
  }

  .login-buttons-row-banner {
    width: 100%;
    flex-direction: column;
  }

  .login-buttons-row-banner button {
    width: 100%;
  }

  .forgot-password-div-banner {
    margin-left: 0;
    text-align: center;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-button-primary {
    font-size: 24px;
    padding: 0.875rem 2rem;
  }

  .hero-button-secondary {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  .patreon-modal-content,
  .register-modal-content {
    padding: 2rem;
  }

  .patreon-modal-content h2,
  .register-modal-content h2 {
    font-size: 1.5rem;
  }

  .patreon-modal-button {
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
  }

  .register-modal-form input[type="text"],
  .register-modal-form input[type="password"] {
    font-size: 0.95rem;
    padding: 0.65rem 0.85rem;
  }

  .register-modal-form button[type="submit"] {
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
  }

  .login-page-container .info-box,
  .login-page-container .error-box {
    width: 95%;
    top: 120px;
  }

  .main-content-section {
    padding: 2rem 1rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .guest-asset-type-selector {
    gap: 0.5rem;
  }

  .guest-type-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   GUEST SEARCH ENGINE SECTION
   ============================================ */

.guest-search-section {
  background-color: transparent;
  padding: 2rem;
  width: 90%;
  max-width: 1000px;
  position: relative;
  margin: 2rem auto;
  padding-bottom: 4rem;
  box-sizing: border-box;
}

.guest-search-header {
  max-width: 100%;
  margin: 0 auto 2.5rem;
  text-align: center;
  background-color: rgba(23, 23, 23, 1.00);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(233, 226, 218, 0.15);
  border-radius: 12px;
  padding: 1rem;
  font-family: Monsterrat, sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.guest-search-subtitle {
  font-family: Monsterrat, sans-serif;
}

.guest-search-header h2 {
  color: #e9e2da;
  margin: 0 0 0.75rem 0;
  font-size: 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.guest-search-subtitle {
  color: rgba(233, 226, 218, 0.85);
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.guest-search-container {
  max-width: 100%;
  margin: 0 auto;
  background-color: rgba(23, 23, 23, 1.00) !important;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(233, 226, 218, 0.15) !important;
  border-radius: 12px;
  padding: 2rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  z-index: 10;
  align-items: center;
}

.guest-search-container #beneos-search-ui,
.guest-search-container #beneos-search-result {
  width: 100%;
  text-align: center;
}

/* Force centering of fixed-width elements */
.guest-search-container #beneos-search-ui>*,
.guest-search-container #beneos-search-result>* {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Asset Type Selector Buttons */
.guest-asset-type-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.guest-type-button {
  background-color: rgba(62, 7, 6, 0.7);
  color: #e9e2da;
  border: 2px solid rgba(233, 226, 218, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.guest-type-button:hover {
  background-color: rgba(94, 26, 25, 0.9);
  border-color: rgba(233, 226, 218, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.guest-type-button.selected {
  background-color: rgba(94, 26, 25, 1);
  border-color: rgba(233, 226, 218, 0.7);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.guest-type-button i {
  margin-right: 0.5rem;
}

/* Overlay message for guest users on asset hover/click */
.guest-search-container .asset-block,
.guest-search-container .item-container {
  position: relative;
}

.guest-search-container .asset-block::after,
.guest-search-container .item-container::after {
  content: "🔒 Join to Download";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(62, 7, 6, 0.95);
  color: #e9e2da;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0;
  pointer-events: all;
  transition: opacity 0.3s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  z-index: 100;
  cursor: pointer;
}

.guest-search-container .asset-block:hover::after,
.guest-search-container .item-container:hover::after {
  opacity: 1;
}

/* Disable download buttons in guest mode */
.guest-search-container .download-token,
.guest-search-container .download-item,
.guest-search-container .download-spell {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.guest-search-container .select-checkbox-download {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* Responsive adjustments for guest search */
@media (max-width: 768px) {
  .guest-search-section {
    padding: 1rem;
  }

  .guest-search-header {
    padding: 1.5rem;
  }

  .guest-search-header h2 {
    font-size: 1.5rem;
  }

  .guest-search-subtitle {
    font-size: 1rem;
  }

  .guest-search-container {
    padding: 1rem !important;
  }
}

/* ============================================
   SEO FOOTER SECTION
   ============================================ */

.seo-footer-section {
  background-color: #171719;
  padding: 4rem 2rem;
  width: 100%;
  position: relative;
  margin-top: 4rem;
  text-align: center;
}

.seo-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-footer-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #f3eadb;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  line-height: 1.2;
}

.seo-footer-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #bfc5ce;
  margin: 0;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive adjustments for SEO footer */
@media (max-width: 1200px) {
  .seo-footer-headline {
    font-size: 70px;
  }

  .seo-footer-text {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .seo-footer-section {
    padding: 3rem 1.5rem;
  }

  .seo-footer-headline {
    font-size: 48px;
  }

  .seo-footer-text {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .seo-footer-section {
    padding: 2rem 1rem;
  }

  .seo-footer-headline {
    font-size: 36px;
  }

  .seo-footer-text {
    font-size: 18px;
  }
}