/* Authentication Page Styles */

.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  padding: 20px;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.auth-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.auth-header p {
  color: #666;
  font-size: 1.1rem;
}

.auth-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.auth-footer {
  text-align: center;
  color: #666;
}

.auth-footer p {
  margin-bottom: 10px;
}

.auth-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

.error-messages {
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.error-messages h4 {
  color: #c33;
  margin-bottom: 10px;
  font-size: 1rem;
}

.error-messages ul {
  list-style: none;
  padding: 0;
}

.error-messages li {
  color: #c33;
  margin-bottom: 5px;
}

/* Auth Visual Components */
.auth-visual {
  text-align: center;
  color: white;
}

.auth-visual h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  margin-top: 30px;
}

.auth-visual p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* VR Globe Animation */
.vr-globe {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.globe-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.ring-1 {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
}

.ring-2 {
  width: 150px;
  height: 150px;
  top: 25px;
  left: 25px;
  animation-duration: 8s;
  animation-direction: reverse;
}

.ring-3 {
  width: 100px;
  height: 100px;
  top: 50px;
  left: 50px;
  animation-duration: 6s;
}

.globe-core {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 75px;
  left: 75px;
  background: radial-gradient(circle, #fff, rgba(255, 255, 255, 0.5));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* VR Portal Animation */
.vr-portal {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.portal-ring {
  position: absolute;
  border: 3px solid;
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}

.ring-outer {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  border-color: rgba(255, 255, 255, 0.2);
}

.ring-middle {
  width: 140px;
  height: 140px;
  top: 30px;
  left: 30px;
  border-color: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

.ring-inner {
  width: 80px;
  height: 80px;
  top: 60px;
  left: 60px;
  border-color: rgba(255, 255, 255, 0.6);
  animation-delay: 1s;
}

.portal-center {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 80px;
  left: 80px;
  background: radial-gradient(circle, #667eea, #764ba2);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
  animation: glow 2s ease-in-out infinite alternate;
}

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

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@keyframes glow {
  from {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
  }
  to {
    box-shadow: 0 0 40px rgba(102, 126, 234, 1), 0 0 60px rgba(102, 126, 234, 0.5);
  }
}

/* Profile Page Styles */
.profile-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 40px 0;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.user-details h1 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.email {
  color: #666;
  margin-bottom: 10px;
}

.license-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.license-free {
  background: #e3f2fd;
  color: #1976d2;
}

.license-premium {
  background: #fff3e0;
  color: #f57c00;
}

.license-enterprise {
  background: #e8f5e8;
  color: #388e3c;
}

.profile-actions {
  display: flex;
  gap: 15px;
}

.profile-content {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.license-section {
  padding: 30px;
}

.license-section h2 {
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.license-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 30px;
}

.license-details h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.status-active {
  color: #28a745;
  font-weight: 600;
}

.status-expired {
  color: #dc3545;
  font-weight: 600;
}

.expiry-warning {
  color: #f57c00;
  font-weight: 600;
  background: #fff3e0;
  padding: 8px 12px;
  border-radius: 5px;
  margin-top: 10px;
}

.license-features h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.license-features ul {
  list-style: none;
  padding: 0;
}

.license-features li {
  padding: 5px 0;
  color: #28a745;
}

.upgrade-section {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.upgrade-section h3 {
  color: #2c3e50;
  margin-bottom: 25px;
  text-align: center;
}

.upgrade-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.upgrade-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #e9ecef;
  text-align: center;
  transition: all 0.3s ease;
}

.upgrade-card:hover {
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.upgrade-card h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 20px;
}

.upgrade-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.upgrade-card li {
  padding: 5px 0;
  color: #666;
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
  .auth-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .auth-form-card {
    padding: 30px 20px;
  }
  
  .auth-header h1 {
    font-size: 2rem;
  }
  
  .profile-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .profile-actions {
    justify-content: center;
  }
  
  .license-card {
    grid-template-columns: 1fr;
  }
  
  .upgrade-options {
    grid-template-columns: 1fr;
  }
}
/* NanoVR Landing Page Styles */

/* Navigation Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
}

.brand-icon {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.nav-user {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white !important;
}

.nav-user:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
  color: white !important;
}

.nav-logout {
  color: #dc3545 !important;
}

.nav-logout:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545 !important;
}

/* Flash Messages */
.flash-notice,
.flash-alert {
  padding: 15px 20px;
  margin: 0;
  text-align: center;
  font-weight: 500;
  position: fixed;
  top: 80px;
  left: 20px;
  right: 20px;
  z-index: 999;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  animation: slideDown 0.3s ease;
}

.flash-notice {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.flash-alert {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Adjust hero section for navbar */
.hero-section {
  padding-top: 80px;
}

/* Footer Styles */
.footer {
  background: #2c3e50;
  color: white;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}

.footer-brand p {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  margin: 0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-download {
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.8;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* VR Headset Animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vr-headset-animation {
  position: relative;
  width: 300px;
  height: 200px;
  animation: float 3s ease-in-out infinite;
}

.headset-body {
  width: 280px;
  height: 120px;
  background: linear-gradient(45deg, #2c3e50, #34495e);
  border-radius: 60px;
  position: absolute;
  top: 40px;
  left: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.headset-lens {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #3498db, #2980b9);
  border-radius: 50%;
  position: absolute;
  top: 70px;
  box-shadow: inset 0 5px 15px rgba(255, 255, 255, 0.3);
}

.headset-lens.left {
  left: 60px;
}

.headset-lens.right {
  right: 60px;
}

.headset-glow {
  position: absolute;
  top: 20px;
  left: -20px;
  right: -20px;
  bottom: 20px;
  background: radial-gradient(ellipse, rgba(52, 152, 219, 0.3), transparent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2c3e50;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Auth Section */
.auth-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

.auth-card h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.auth-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.auth-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Download Page Styles */
.download-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.download-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.download-subtitle {
  font-size: 1.2rem;
  text-align: center;
  opacity: 0.9;
  margin-bottom: 60px;
}

.download-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.app-details {
  display: flex;
  gap: 20px;
  align-items: center;
}

.app-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.app-meta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.app-meta p {
  opacity: 0.8;
  margin-bottom: 5px;
}

.download-actions {
  text-align: center;
}

.download-note {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.9rem;
}

.download-icon {
  font-size: 1.2rem;
}

/* Requirements Section */
.requirements-section {
  padding: 80px 0;
  background: white;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.requirement-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #667eea;
}

.requirement-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.requirement-card ul {
  list-style: none;
}

.requirement-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.requirement-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

/* Installation Section */
.installation-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.steps {
  display: grid;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

/* Instructions Page Styles */
.instructions-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.instructions-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.instructions-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.instructions-content {
  padding: 80px 0;
  background: white;
}

.instruction-sections {
  max-width: 900px;
  margin: 0 auto;
}

.instruction-section {
  margin-bottom: 80px;
}

.instruction-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.instruction-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.instruction-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.instruction-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.controls-grid {
  display: grid;
  gap: 30px;
}

.control-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.control-visual {
  font-size: 2rem;
  width: 60px;
  text-align: center;
}

.control-desc h4 {
  color: #2c3e50;
  margin-bottom: 8px;
}

.safety-tips {
  display: grid;
  gap: 20px;
}

.safety-tip {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: #fff3cd;
  border-radius: 10px;
  border-left: 4px solid #ffc107;
}

.tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-content h4 {
  color: #856404;
  margin-bottom: 8px;
}

.tip-content p {
  color: #856404;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.faq-item h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Support Section */
.support-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.support-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: white;
  max-width: 500px;
  margin: 0 auto;
}

.support-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.support-card p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.support-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .download-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .instruction-cards {
    grid-template-columns: 1fr;
  }
  
  .auth-buttons,
  .support-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .auth-card,
  .support-card {
    padding: 40px 20px;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
