/* ========================================
   Enhanced Pages Styles - High Contrast
   ======================================== */

/* Hero Page Section */
.hero-page {
  background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../css/images/bg.jpg") center / cover;
  opacity: 0.1;
  z-index: 0;
}

.hero-downloads {
  background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 50%, #2563eb 100%);
}

.hero-page-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-page-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff7496 0%, #ff5370 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(255, 116, 150, 0.4);
}

.hero-page-icon i {
  font-size: 3rem;
  color: #fff;
}

.hero-page h1 {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-page p {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.6;
}

/* Page Section */
.page-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1a2e 100%);
  min-height: calc(100vh - 400px);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-intro h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
}

.section-intro p {
  font-size: 1.1rem;
  color: #b0b0b0;
  line-height: 1.6;
}

/* Content Cards */
.content-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-card h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.content-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 25px;
}

.card-header {
  margin-bottom: 35px;
}

.card-header p {
  font-size: 1.05rem;
  color: #b0b0b0;
  margin: 8px 0 0;
  line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Modern Form */
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.form-field label i {
  color: #ff7496;
  font-size: 1.1rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #ff7496;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 116, 150, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.6;
}

/* Form Buttons */
.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-primary-large {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ff7496 0%, #ff5370 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 116, 150, 0.4);
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 116, 150, 0.6);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #ff7496;
}

.contact-item-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ff7496 0%, #ff5370 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-text strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.contact-item-text span {
  font-size: 0.95rem;
  color: #b0b0b0;
}

/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-card:hover {
  background: rgba(255, 116, 150, 0.1);
  border-color: #ff7496;
  transform: translateY(-3px);
}

.social-card i {
  font-size: 2rem;
  color: #ff7496;
}

.social-card span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Downloads Grid */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.download-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(255, 116, 150, 0.2);
  border-color: rgba(255, 116, 150, 0.3);
}

.download-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff7496 0%, #ff5370 100%);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.download-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-icon i {
  font-size: 2rem;
  color: #fff;
}

.download-title-group h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
}

.download-title-group p {
  font-size: 1rem;
  color: #b0b0b0;
  margin: 0;
}

.download-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.info-item i {
  font-size: 1.5rem;
  color: #ff7496;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-item strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.info-item span {
  font-size: 0.85rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ff7496 0%, #ff5370 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 116, 150, 0.4);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 116, 150, 0.6);
}

.download-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px;
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
}

.download-note i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.download-note span {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Installation Guide */
.guide-card {
  margin-bottom: 50px;
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.guide-header i {
  font-size: 2rem;
  color: #ff7496;
}

.guide-header h2 {
  margin: 0;
}

.installation-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step {
  display: flex;
  gap: 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #ff7496;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff7496 0%, #ff5370 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.step-content p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Help Banner */
.help-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
}

.help-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.help-text {
  flex: 1;
}

.help-text h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.help-text p {
  font-size: 1.05rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

.help-buttons {
  display: flex;
  gap: 15px;
}

.btn-outline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff7496;
  color: #ff7496;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-page {
    padding: 100px 0 60px;
  }

  .hero-page h1 {
    font-size: 2.5rem;
  }

  .hero-page p {
    font-size: 1.1rem;
  }

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

  .content-card {
    padding: 30px 25px;
  }

  .form-buttons {
    flex-direction: column;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .help-banner {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

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

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

@media (max-width: 480px) {
  .hero-page-icon {
    width: 80px;
    height: 80px;
  }

  .hero-page-icon i {
    font-size: 2.5rem;
  }

  .hero-page h1 {
    font-size: 2rem;
  }

  .content-card {
    padding: 25px 20px;
  }

  .download-card {
    padding: 30px 20px;
  }

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

  .social-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Server Info Page Styles
   ======================================== */

/* Server Info Grid */
.server-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Info Cards */
.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 116, 150, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.info-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff7496 0%, #ff5370 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.info-card .card-icon i {
  font-size: 2rem;
  color: #fff;
}

.info-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

/* Status Card */
.status-card {
  grid-column: span 2;
}

.status-indicator {
  margin-top: 25px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.status-badge.online {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
}

.status-badge.offline {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
}

.pulse-dot {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.status-message {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin: 15px 0 0;
  line-height: 1.6;
}

/* Server Details */
.server-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.detail-row:hover {
  background: rgba(0, 0, 0, 0.4);
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #b0b0b0;
}

.detail-label i {
  color: #ff7496;
  font-size: 1.1rem;
}

.detail-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  font-family: "Courier New", monospace;
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff7496;
  margin-bottom: 8px;
  font-family: "Courier New", monospace;
}

.stat-label {
  font-size: 0.95rem;
  color: #b0b0b0;
  text-align: center;
  line-height: 1.3;
}

/* Action Buttons */
.actions-card {
  grid-column: span 2;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: rgba(255, 116, 150, 0.15);
  border-color: #ff7496;
  transform: translateX(5px);
}

.action-btn i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff7496 0%, #ff5370 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Server Page Responsive */
@media (max-width: 1024px) {
  .server-info-grid {
    grid-template-columns: 1fr;
  }

  .status-card,
  .actions-card {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .quick-stats {
    grid-template-columns: 1fr;
  }

  .detail-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .info-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .status-badge {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .action-btn {
    padding: 18px 20px;
  }
}
