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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111827;
  color: #ffffff;
  line-height: 1.6;
  direction: rtl;
}

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

/* Header */
.header {
  background-color: #1f2937;
  border-bottom: 1px solid #374151;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #60a5fa;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-outline {
  background-color: transparent;
  color: #60a5fa;
  border: 1px solid #60a5fa;
}

.btn-outline:hover {
  background-color: #60a5fa;
  color: #000000;
}

.btn-danger {
  background-color: #dc2626;
  color: #ffffff;
}

.btn-danger:hover {
  background-color: #b91c1c;
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.btn-sushi {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #000000;
  font-weight: bold;
  animation: pulse 1s infinite;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  color: #60a5fa;
}

.hero-text p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.stats-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-item i {
  font-size: 3rem;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: rgba(31, 41, 55, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #d1d5db;
}

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

.service-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: #60a5fa;
  transform: translateY(-5px);
}

.service-card i {
  font-size: 3rem;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.ddos-card i {
  color: #ef4444;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.service-card p {
  color: #d1d5db;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
}

.fire-badge {
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: bold;
  margin-bottom: 2rem;
  display: inline-block;
}

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

.pricing-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: #60a5fa;
  transform: translateY(-5px);
}

.pricing-card.popular {
  border-color: #60a5fa;
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background-color: #60a5fa;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: bold;
}

.card-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.price {
  margin-bottom: 1rem;
}

.amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #60a5fa;
}

.period {
  color: #9ca3af;
  font-size: 1rem;
}

.card-content {
  padding: 0 2rem 2rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #374151;
}

.spec-item:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.spec-item i {
  color: #60a5fa;
  margin-left: 0.5rem;
}

/* DDoS Protection Section */
.ddos-protection {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
  border-top: 1px solid rgba(239, 68, 68, 0.3);
  border-bottom: 1px solid rgba(239, 68, 68, 0.3);
}

.ddos-badge {
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: bold;
  margin-bottom: 2rem;
  display: inline-block;
}

.ddos-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.ddos-feature {
  background-color: #1f2937;
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.ddos-feature i {
  font-size: 3rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.ddos-feature h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.ddos-feature p {
  color: #d1d5db;
}

.ddos-cta {
  text-align: center;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: rgba(31, 41, 55, 0.5);
}

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

.feature-item {
  text-align: center;
}

.feature-item i {
  font-size: 4rem;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #d1d5db;
}

/* Footer */
.footer {
  background-color: #111827;
  border-top: 1px solid #374151;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.footer-domain {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Sushi Popup */
.sushi-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.sushi-popup.hidden {
  display: none;
}

.popup-content {
  background: linear-gradient(45deg, #ec4899, #ef4444, #f59e0b);
  border: 4px solid #fbbf24;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 90vw;
  width: 600px;
  position: relative;
  animation: rainbow 2s linear infinite, popupPulse 1s ease-in-out infinite alternate;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #dc2626;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
}

.popup-close:hover {
  background-color: #b91c1c;
}

.popup-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sushi-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.sushi-icon i {
  font-size: 5rem;
  color: #ffffff;
  animation: bounce 1s infinite;
}

.ping-effect {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fbbf24;
  border-radius: 50%;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.popup-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: pulse 1s infinite;
}

.popup-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-box {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 2px solid #fde047;
  margin-bottom: 1.5rem;
}

.features-title {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.feature {
  color: #ffffff;
  font-weight: 500;
}

.popup-website {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: bounce 1s infinite;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.attempts-message {
  color: #fde047;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  animation: bounce 1s infinite;
}

.attempts-message.hidden {
  display: none;
}

.popup-disclaimer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Animations */
@keyframes rainbow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes popupPulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.02);
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

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

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stats-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

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

  .popup-content {
    margin: 1rem;
    padding: 1.5rem;
  }

  .popup-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .popup-content {
    width: 95vw;
    padding: 1rem;
  }

  .sushi-icon i {
    font-size: 3rem;
  }

  .popup-header h2 {
    font-size: 1.25rem;
  }

  .popup-subtitle {
    font-size: 1.125rem;
  }
}
