/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: #fff;
  line-height: 1.6;
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Hide scrollbars for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Allow vertical scrolling for elements that need it */
.scrollable-y {
  overflow-y: auto !important;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollable-y::-webkit-scrollbar {
  display: none;
}

.background {
  background-color: #0f0f1a;
  background-image: radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.1) 0%, transparent 20%),
    linear-gradient(rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.8));
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
}

.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Styles */
header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.logo svg {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo a:hover svg {
  transform: rotate(10deg);
}

.desktop-nav {
  display: flex;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.main-nav a:hover {
  color: #a78bfa;
}

.main-nav a i {
  margin-left: 5px;
  font-size: 12px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -100px;
  background: rgba(15, 15, 26, 0.95);
  border-radius: 16px;
  min-width: 350px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 100;
  padding: 20px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.dropdown-section ul li {
  margin-bottom: 15px;
}

.dropdown-section ul li a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}

.dropdown-section ul li a:hover {
  transform: translateX(5px);
}

.dropdown-section .icon {
  width: 40px;
  height: 40px;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
}

.dropdown-section .icon i {
  font-size: 18px;
}

.dropdown-section .text h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.dropdown-section .text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.auth-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-text {
  color: #fff;
}

.btn-text:hover {
  color: #a78bfa;
}

.btn-primary {
  background-color: transparent;
  border: 2px solid #a78bfa;
  color: #fff;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #a78bfa;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-primary:hover:before {
  width: 100%;
}

.btn-primary:hover {
  color: #0f0f1a;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.98);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mobile-menu::-webkit-scrollbar {
  display: none;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu nav {
  flex: 1;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu ul li a {
  font-size: 20px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
}

.mobile-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-header i {
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-header i {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  padding-left: 20px;
  margin-top: 10px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-dropdown-content li {
  margin-bottom: 10px;
}

.mobile-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px !important;
}

.mobile-dropdown-content i {
  color: #a78bfa;
}

.mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mobile-auth .btn {
  width: 100%;
  text-align: center;
}

/* Root Server Page Styles */
.root-server-section {
  padding: 60px 0;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.page-header .subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.root-server-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* Configuration Area */
.configuration-area {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.config-card {
  background: rgba(15, 15, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.config-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(167, 139, 250, 0.3);
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.os-option {
  position: relative;
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.os-option:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.5);
}

.os-option.selected {
  background: rgba(167, 139, 250, 0.1);
  border-color: #a78bfa;
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.2);
}

.os-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #a78bfa;
}

.os-name {
  font-weight: 500;
}

/* OS Versions */
.os-versions {
  background: rgba(15, 15, 26, 0.4);
  border-radius: 15px;
  padding: 20px;
  margin-top: 10px;
  animation: fadeIn 0.3s ease;
}

.os-versions h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #a78bfa;
}

.version-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.version-option {
  background: rgba(15, 15, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.version-option:hover {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.5);
}

.version-option.selected {
  background: rgba(167, 139, 250, 0.2);
  border-color: #a78bfa;
}

/* Hardware Configuration */
.slider-config {
  margin-bottom: 25px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.slider-header label {
  font-weight: 500;
}

.value-display {
  position: relative;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 8px;
  padding: 5px 12px;
  font-weight: 500;
  color: #a78bfa;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
  text-align: center;
  display: inline-block;
}

.value-display:hover {
  background: rgba(167, 139, 250, 0.2);
}

.value-display .unit {
  margin-left: 3px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
}

.custom-input {
  background: transparent;
  border: none;
  color: #a78bfa;
  font-weight: 500;
  width: 100%;
  outline: none;
  font-size: 14px;
  text-align: center;
  width: 100%;
  min-width: 40px;
  box-sizing: border-box;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin-bottom: 10px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #a78bfa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
}

.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #a78bfa;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Backup Options */
.backup-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.backup-option {
  position: relative;
}

.backup-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.backup-option label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.backup-option input[type="radio"]:checked + label {
  background: rgba(167, 139, 250, 0.1);
  border-color: #a78bfa;
}

.option-content {
  flex: 1;
}

.option-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.option-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.option-price {
  font-weight: 600;
  color: #a78bfa;
}

/* Server Details */
.server-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-weight: 500;
}

.input-group input {
  background: rgba(15, 15, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.2);
}

.password-input {
  position: relative;
  width: 100%;
}

.password-input input {
  padding-right: 40px; /* Make room for the icon */
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}

.toggle-password:hover {
  color: #a78bfa;
}

.password-strength {
  margin-top: 5px;
}

.strength-meter {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}

.strength-bar {
  height: 100%;
  width: 0;
  background: #f44336;
  transition: all 0.3s ease;
}

.strength-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Order Summary */
.order-summary {
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-summary.sticky {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.summary-card {
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.summary-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .order-summary {
    position: static;
    margin-top: 30px;
  }

  .summary-card:hover {
    transform: none;
  }
}

.summary-card h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #a78bfa;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-label {
  color: rgba(255, 255, 255, 0.7);
}

.item-value {
  font-weight: 500;
}

.price-summary {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(167, 139, 250, 0.3);
}

.setup-fee {
  font-size: 14px;
}

.total-price {
  margin-top: 20px;
  padding: 15px;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
}

.total-price .item-value {
  color: #a78bfa;
}

.btn-order {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  margin-top: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.3);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(167, 139, 250, 0.4);
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.guarantee i {
  color: #a78bfa;
}

/* Footer */
footer {
  background: #0d0d0f;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #a78bfa;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-col ul li a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #a78bfa;
  transition: width 0.3s ease;
}

.footer-col ul li a:hover:after {
  width: 100%;
}

.footer-col ul li a:hover {
  color: #a78bfa;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: #fff;
}

.social-icons a:hover {
  background: #a78bfa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(167, 139, 250, 0.3);
}

.social-icons i {
  font-size: 18px;
}

.copyright {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .root-server-content {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    margin-top: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .os-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .version-options {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 32px;
  }

  .os-grid {
    grid-template-columns: 1fr;
  }

  .config-card {
    padding: 20px;
  }

  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Add these styles at the end of the file */

/* Custom OS icons styles */
.os-custom-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.os-option.selected .os-custom-icon {
  filter: drop-shadow(0 0 5px rgba(167, 139, 250, 0.5));
  transform: scale(1.1);
}

.os-option:hover .os-custom-icon {
  transform: scale(1.1);
}

/* Value display with units */
.value-display {
  position: relative;
  display: inline-block;
  min-width: 80px;
}

.value-display .unit {
  margin-left: 3px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
}

.custom-input {
  width: 100%;
  min-width: 40px;
  box-sizing: border-box;
}

/* Animation for the sticky summary card */
.order-summary {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-summary.sticky {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Windows surcharge notice */
.windows-surcharge {
  display: none;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: #a78bfa;
  text-align: center;
}

/* OS option with price badge */
.price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(107, 99, 255, 0.8);
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* Password input styling */
.password-input {
  position: relative;
  width: 100%;
}

.password-input input {
  padding-right: 40px;
  width: 100%;
  height: 45px; /* Match the height of the text input above */
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}

.toggle-password:hover {
  color: #a78bfa;
}

/* Disabled CPU option styling */
.cpu-type-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border: 2px solid #f44336; /* Red ring around disabled option */
}

/* Add these styles for the new backup options */
.backup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.backup-option-card {
  position: relative;
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.backup-option-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.5);
}

.backup-option-card.selected {
  background: rgba(167, 139, 250, 0.1);
  border-color: #a78bfa;
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.2);
}

.backup-option-card.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  border: 2px solid #f44336; /* Red ring around disabled option */
}

.backup-option-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.backup-option-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  flex-grow: 1;
}

.backup-features {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.backup-feature {
  background: rgba(15, 15, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.backup-option-card.selected .backup-feature {
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.4);
}

@media (max-width: 768px) {
  .backup-grid {
    grid-template-columns: 1fr;
  }
}

/* Disabled backup notice */
.backup-disabled-notice {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 20px;
  color: #f44336;
  font-size: 14px;
  text-align: center;
}

/* Add these styles for the CPU type cards */
.cpu-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.cpu-type-card {
  position: relative;
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cpu-type-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.5);
}

.cpu-type-card.selected {
  background: rgba(167, 139, 250, 0.1);
  border-color: #a78bfa;
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.2);
}

.cpu-type-card.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  border: 2px solid #f44336; /* Red ring around disabled option */
}

.cpu-type-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.cpu-type-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.cpu-features {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.cpu-feature {
  background: rgba(15, 15, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.cpu-type-card.selected .cpu-feature {
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.4);
}

.price-increase-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(107, 99, 255, 0.8);
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cpu-type-grid {
    grid-template-columns: 1fr;
  }
}

/* Add these styles for the data center cards */
.datacenter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.datacenter-card {
  position: relative;
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.datacenter-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.5);
}

.datacenter-card.selected {
  background: rgba(167, 139, 250, 0.1);
  border-color: #a78bfa;
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.2);
}

.datacenter-card.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  border: 2px solid #f44336; /* Red ring around disabled option */
}

.datacenter-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.datacenter-card h3 img {
  width: 24px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.datacenter-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.datacenter-features {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.datacenter-feature {
  background: rgba(15, 15, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.datacenter-card.selected .datacenter-feature {
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.4);
}

@media (max-width: 768px) {
  .datacenter-grid {
    grid-template-columns: 1fr;
  }
}

/* HostPanel Homepage additions */
.features { padding: 60px 0 100px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 32px; text-align: center; transition: .2s; }
.feature-card:hover { border-color: rgba(167,139,250,.4); background: rgba(167,139,250,.06); }
.feature-icon { font-size: 2rem; color: #a78bfa; margin-bottom: 16px; }
.feature-card h3 { font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: #64748b; font-size: .9rem; line-height: 1.6; }
.hero { padding: 100px 0 60px; }
.hero-content { max-width: 700px; }
.hero-title { font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: #64748b; margin-bottom: 36px; max-width: 600px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-outline { background: transparent; border: 1px solid rgba(167,139,250,.4); color: #a78bfa; padding: 12px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; transition: .2s; }
.btn-outline:hover { background: rgba(167,139,250,.1); }
.footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,.06); text-align: center; color: #475569; font-size: .875rem; }
@media(max-width:768px) { .features-grid { grid-template-columns: 1fr; } .hero-title { font-size: 2rem; } }
