* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.crypto-icon img,
.crypto-icon svg {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    display: block;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Background Animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
}

#particles-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo svg {
  height: 40px;
}

.navigation {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #8A2BE2;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8A2BE2;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-link {
  color: #888888;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.action-link:hover {
  color: #8A2BE2;
}

.language {
  color: #888888;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.login-button {
  background: #8A2BE2;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-button:hover {
  background: #7B1FA2;
  transform: translateY(-1px);
}

.cart-button {
  background: transparent;
  color: #888888;
  border: 1px solid #333333;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.cart-button:hover {
  border-color: #8A2BE2;
  color: #8A2BE2;
}

/* Main Content */
.main-content {
  padding-top: 80px;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.highlight-text {
  color: #8A2BE2;
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 48px;
  font-weight: 400;
}

.cta-button {
  background: linear-gradient(135deg, #8A2BE2 0%, #9932CC 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.4);
}

.arrow {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

.services-section {
  padding: 120px 0;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 80px;
  color: #ffffff;
}

.services-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 8px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.tab-button {
  flex: 1;
  background: transparent;
  color: #888888;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button.active {
  background: linear-gradient(135deg, #8A2BE2, #9932CC);
  color: white;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.tab-button:hover:not(.active) {
  color: #8A2BE2;
  background: rgba(138, 43, 226, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.location-info {
  text-align: center;
  margin-bottom: 60px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  color: #8A2BE2;
  font-weight: 500;
}

.location-icon {
  font-size: 1.2em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8A2BE2, #9932CC);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: 0 25px 50px rgba(138, 43, 226, 0.2);
}

.pricing-card.popular {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
}

.pricing-card.enterprise {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
}

.pricing-card.premium {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.popular-badge,
.enterprise-badge,
.premium-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, #8A2BE2, #9932CC);
  color: white;
  padding: 6px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enterprise-badge {
  background: linear-gradient(135deg, #8a2be2, #9932cc);
}

.premium-badge {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #000;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8A2BE2;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.plan-price span {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
}

.plan-specs {
  margin-bottom: 32px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-icon {
  font-size: 1.2em;
  width: 24px;
  text-align: center;
}

.spec-text {
  color: #cccccc;
  font-size: 0.95rem;
}

.order-button {
  width: 100%;
  background: linear-gradient(135deg, #8A2BE2, #9932CC);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.domain-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.domain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.domain-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #8A2BE2;
  margin-bottom: 16px;
}

.domain-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.domain-price span {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
}

.domain-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.domain-features li {
  padding: 8px 0;
  color: #cccccc;
  position: relative;
  padding-left: 24px;
}

.domain-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8A2BE2;
  font-weight: bold;
}

.crypto-section {
  padding: 120px 0;
  background: rgba(5, 5, 5, 0.95);
}

.crypto-description {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 60px;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.crypto-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.crypto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.crypto-card:hover::before {
  opacity: 1;
}

.crypto-card:hover {
  transform: translateY(-8px) rotateY(5deg);
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.crypto-icon {
  font-size: 3rem;
  font-weight: bold;
  color: #8A2BE2;
  margin-bottom: 16px;
  display: block;
}

.crypto-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.crypto-card p {
  color: #888888;
  font-size: 0.9rem;
  font-weight: 500;
}

.hosting-info-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%);
}

.advantages-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(25, 25, 25, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
}

.advantages-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.advantages-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #ffffff;
}

.advantage-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.advantage-icon {
  font-size: 2rem;
  color: #8A2BE2;
  flex-shrink: 0;
}

.advantage-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.advantage-content p {
  color: #cccccc;
  line-height: 1.6;
}

.advantages-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.server-visualization {
  position: relative;
}

.server-rack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 2px solid rgba(138, 43, 226, 0.3);
}

.server-unit {
  width: 200px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.server-unit.active {
  background: linear-gradient(90deg, #8A2BE2, #9932CC);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.server-unit::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff00;
  animation: pulse 2s infinite;
}

.use-cases-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.use-case-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8A2BE2, #9932CC);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.use-case-card:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 43, 226, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}

.use-case-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #8A2BE2;
}

.use-case-card p {
  color: #cccccc;
  line-height: 1.6;
}

.features-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.98) 100%);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 43, 226, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #8A2BE2;
}

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

.footer {
  background: rgba(5, 5, 5, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0 40px;
}

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

.footer-section h4 {
  color: #8A2BE2;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  color: #888888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #8A2BE2;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #888888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8A2BE2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info p {
  color: #888888;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #888888;
  font-size: 14px;
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.payment-icons span {
  font-size: 1.2em;
}

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

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-slide-up {
  animation: slideInUp 0.8s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}
.pricing-card:nth-child(4) {
  animation-delay: 0.4s;
}
.pricing-card:nth-child(5) {
  animation-delay: 0.5s;
}
.pricing-card:nth-child(6) {
  animation-delay: 0.6s;
}
.pricing-card:nth-child(7) {
  animation-delay: 0.7s;
}
.pricing-card:nth-child(8) {
  animation-delay: 0.8s;
}
.pricing-card:nth-child(9) {
  animation-delay: 0.9s;
}

.crypto-card:nth-child(1) {
  animation-delay: 0.1s;
}
.crypto-card:nth-child(2) {
  animation-delay: 0.2s;
}
.crypto-card:nth-child(3) {
  animation-delay: 0.3s;
}
.crypto-card:nth-child(4) {
  animation-delay: 0.4s;
}
.crypto-card:nth-child(5) {
  animation-delay: 0.5s;
}
.crypto-card:nth-child(6) {
  animation-delay: 0.6s;
}

@media (max-width: 1024px) {
  .header-content {
    flex-wrap: wrap;
    gap: 20px;
  }

  .navigation {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .advantages-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .navigation {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .services-tabs {
    max-width: 100%;
  }

  .tab-button {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.popular {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
  }

  .crypto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-title {
    font-size: 2rem;
  }

  .server-rack {
    transform: scale(0.8);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 1rem;
  }

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

  .plan-price {
    font-size: 2rem;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8A2BE2;
}


::selection {
  background: #8A2BE2;
  color: #ffffff;
}

::-moz-selection {
  background: #8A2BE2;
  color: #ffffff;
}