/* SysArabs Elite Luxury Login CSS */

/* Base Styles */
* {
  box-sizing: border-box;
}

/* Intro CSS with SysArabs Luxury Gradient */
#login_logo { 
  height: 70px; 
  filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.3));
}

#intro_top { 
  width: 100%; 
  height: 100%; 
  z-index: 1; 
  position: relative; 
  background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
  background-attachment: fixed;
  overflow: hidden;
}

#login_wrap { 
  width: 100%; 
  height: 100%; 
  min-height: 100vh;
}

#login_all { 
  width: 800px; 
  max-width: 94%; 
  border-radius: 20px; 
  display: block; 
  margin: 0 auto; 
  color: #fff; 
  position: relative;
  z-index: 10;
}

/* Floating Orbs Background */
.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  width: 128px;
  height: 128px;
  background: linear-gradient(45deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
  top: 5rem;
  left: 5rem;
  animation-delay: 0s;
}

.orb-2 {
  width: 192px;
  height: 192px;
  background: linear-gradient(45deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  bottom: 5rem;
  right: 5rem;
  animation-delay: 2s;
}

.orb-3 {
  width: 96px;
  height: 96px;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(14, 165, 233, 0.2));
  top: 50%;
  left: 25%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -10px) scale(1.05); }
  50% { transform: translate(-5px, -20px) scale(0.95); }
  75% { transform: translate(-10px, 5px) scale(1.02); }
}

/* Language Selector */
.luxury-lang-selector {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.luxury-lang-selector:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
}

/* Logo Container */
.luxury-logo-container {
  margin-bottom: 2rem;
}

.luxury-logo-wrapper {
  position: relative;
  display: inline-block;
}

.luxury-crown-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(45deg, #f59e0b, #f97316);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* Welcome Section */
.luxury-welcome {
  text-align: center;
  margin-bottom: 2rem;
}

.luxury-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.luxury-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin: 0;
}

/* Buttons Container */
.luxury-buttons-container {
  margin-bottom: 2rem;
}

.luxury-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.luxury-btn {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.luxury-btn:last-child {
  margin-bottom: 0;
}

.luxury-btn-primary {
  background: linear-gradient(45deg, #f59e0b, #f97316);
  color: white;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.luxury-btn-primary:hover {
  background: linear-gradient(45deg, #d97706, #ea580c);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.6);
}

.luxury-btn-secondary {
  background: transparent;
  color: #d1d5db;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.luxury-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

.btn-icon, .btn-arrow {
  transition: transform 0.3s ease;
}

.luxury-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Registration Section */
.luxury-registration {
  text-align: center;
}

.luxury-small-text {
  color: #9ca3af;
  font-size: 0.9rem;
  margin: 0;
}

.luxury-register-link {
  color: #fbbf24;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0;
}

.luxury-register-link:hover {
  color: #f59e0b;
  transform: translateY(-1px);
}

/* Features Section */
.luxury-features-section {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  padding: 4rem 0;
}

.luxury-features-container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.luxury-features-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.luxury-features-subtitle {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 3rem;
}

.luxury-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.luxury-feature-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.luxury-feature-card:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(45deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.luxury-feature-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.luxury-feature-card p {
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
}

/* Trust Indicator */
.luxury-trust-indicator {
  text-align: center;
}

.luxury-trust-indicator p {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.trust-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.trust-dot {
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.trust-dot:nth-child(2) { animation-delay: 0.2s; }
.trust-dot:nth-child(3) { animation-delay: 0.4s; }
.trust-dot:nth-child(4) { animation-delay: 0.6s; }
.trust-dot:nth-child(5) { animation-delay: 0.8s; }

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

/* Section CSS */
.section { 
  width: 100%; 
  height: auto; 
  margin: 0 auto; 
}

.section_content { 
  width: 100%; 
  max-width: 1100px; 
  margin: 0 auto; 
}

.section_inside { 
  margin: 0 auto; 
}

/* Responsive Design */
@media screen and (max-width: 1120px) {
  .section_inside { 
    width: 96%; 
  }
}

@media screen and (max-width: 768px) {
  .luxury-title {
    font-size: 2rem;
  }
  
  .luxury-features-title {
    font-size: 2rem;
  }
  
  .luxury-features-grid {
    grid-template-columns: 1fr;
  }
  
  .orb-1, .orb-2, .orb-3 {
    display: none;
  }
}

/* Utility Classes */
.login_not_member { 
  text-align: center; 
  padding-top: 5px; 
}

.centered_element {
  text-align: center;
}

.pad30 {
  padding: 30px;
}

.vpad20 {
  padding: 20px 0;
}

.vpad15 {
  padding: 15px 0;
}

.tpad20 {
  padding-top: 20px;
}

.tpad5 {
  padding-top: 5px;
}

.bpad10 {
  padding-bottom: 10px;
}

.clear {
  clear: both;
}

.btable {
  display: table;
  width: 100%;
  height: 100%;
}

.bcell_mid {
  display: table-cell;
  vertical-align: middle;
}

.bclick {
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

.text_xlarge {
  font-size: 1.5rem;
}

.text_med {
  font-size: 1rem;
}

.text_xsmall {
  font-size: 0.8rem;
}