/* Additional styles for internal pages */

.page-content {
  min-height: 100vh;
}

.page-hero {
  background: linear-gradient(135deg, rgba(155, 77, 255, 0.3), rgba(0, 212, 255, 0.3));
  padding: 100px 0 60px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 20px;
  color: var(--text-gray);
}

.content-section {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 32px;
  margin: 40px 0 20px;
  color: var(--accent-color);
}

.content-wrapper h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--primary-color);
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-gray);
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 20px 0 20px 30px;
  line-height: 1.8;
  color: var(--text-gray);
}

.content-wrapper li {
  margin-bottom: 10px;
}

.cta-box,
.warning-box,
.info-box,
.contact-box {
  background: rgba(155, 77, 255, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}

.warning-box {
  border-color: var(--secondary-color);
  background: rgba(255, 20, 147, 0.1);
}

.info-box {
  border-color: var(--accent-color);
  background: rgba(0, 212, 255, 0.1);
}

.cta-box h3,
.warning-box h3,
.info-box h3 {
  margin: 0 0 15px 0;
}

/* Contact Page Styles */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-methods {
  margin: 40px 0;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(155, 77, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(155, 77, 255, 0.3);
}

.method-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.contact-method p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.response-time {
  font-size: 14px;
  color: var(--text-gray);
}

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

.contact-form-wrapper {
  background: rgba(26, 10, 46, 0.6);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(10, 10, 31, 0.8);
  border: 2px solid rgba(155, 77, 255, 0.3);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.faq-preview {
  padding: 80px 0;
  background: rgba(26, 10, 46, 0.6);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: rgba(10, 10, 31, 0.8);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(155, 77, 255, 0.3);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Login Page Styles */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 60px;
}

.login-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
}

.login-box {
  background: rgba(26, 10, 46, 0.8);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 40px rgba(155, 77, 255, 0.3);
}

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

.login-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.login-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-header p {
  color: var(--text-gray);
}

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

.login-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
  font-weight: 500;
}

.login-form input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(10, 10, 31, 0.8);
  border: 2px solid rgba(155, 77, 255, 0.3);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.login-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.form-check input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.form-check label {
  margin: 0;
  cursor: pointer;
  font-weight: normal;
}

.form-footer {
  text-align: center;
  margin: 20px 0;
}

.forgot-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: var(--primary-color);
}

.form-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.form-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(155, 77, 255, 0.3);
}

.form-divider span {
  position: relative;
  background: rgba(26, 10, 46, 0.8);
  padding: 0 15px;
  color: var(--text-gray);
}

.terms-check {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 20px;
}

.terms-check input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.terms-check label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-gray);
}

.terms-check label a {
  color: var(--accent-color);
  text-decoration: none;
}

.terms-check label a:hover {
  color: var(--primary-color);
}

.login-features h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item-login {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(155, 77, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(155, 77, 255, 0.3);
}

.feature-icon-login {
  font-size: 36px;
  flex-shrink: 0;
}

.feature-item-login h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.feature-item-login p {
  color: var(--text-gray);
  font-size: 14px;
}

/* App Pages Styles */
.app-page {
  min-height: 100vh;
}

.app-hero {
  background: linear-gradient(135deg, rgba(155, 77, 255, 0.3), rgba(0, 212, 255, 0.3));
  padding: 100px 0 80px;
}

.app-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-subtitle {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 20px;
}

.app-hero-content p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.app-requirements {
  margin-top: 20px;
}

.app-requirements p {
  font-size: 14px;
  color: var(--text-gray);
}

.app-hero-image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 10px 40px rgba(155, 77, 255, 0.5));
}

.app-features {
  padding: 80px 0;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.app-feature-card {
  background: rgba(26, 10, 46, 0.6);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(155, 77, 255, 0.3);
  transition: all 0.3s ease;
}

.app-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(155, 77, 255, 0.4);
}

.app-feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.app-feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.app-feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.app-installation {
  padding: 80px 0;
  background: rgba(26, 10, 46, 0.6);
}

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

.installation-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.step-content p {
  color: var(--text-gray);
  line-height: 1.6;
}

.device-compatibility {
  padding: 80px 0;
}

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

.device-card {
  background: rgba(26, 10, 46, 0.6);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(155, 77, 255, 0.3);
}

.device-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.device-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.device-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.app-screenshots {
  padding: 80px 0;
  background: rgba(26, 10, 46, 0.6);
}

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

.screenshot-card {
  text-align: center;
}

.screenshot-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgba(155, 77, 255, 0.3);
}

.screenshot-card p {
  color: var(--text-gray);
  font-size: 16px;
}

.app-faq {
  padding: 80px 0;
}

.app-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(155, 77, 255, 0.2), rgba(0, 212, 255, 0.2));
}

/* Responsive Design for Pages */
@media (max-width: 968px) {
  .contact-grid,
  .login-container,
  .app-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .content-wrapper h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .app-hero-content h1 {
    font-size: 32px;
  }

  .app-subtitle {
    font-size: 18px;
  }
}
