/* Base Styles */
:root {
  --primary-color: #000000;
  --secondary-color: #d20a0a;
  --accent-color: #0066cc;
  --light-color: #ffffff;
  --dark-color: #111111;
  --gray-color: #333333;
  --light-gray: #f5f5f5;
}

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

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--light-color);
  background-color: var(--primary-color);
}

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

.red-text {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--light-color);
  border: 2px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 10px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
}

.btn-secondary:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Navigation */
.navbar {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--secondary-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}

.logo-text {
  color: var(--light-color);
}

.vpn-text {
  color: var(--secondary-color);
  margin-left: 5px;
  font-size: 18px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.btn-download {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: #b30808 solid 2px;
}

.btn-download:hover {
  background-color: #000000;
  color: var(--light-color);
  border: #b30808 solid 2px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--light-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #cccccc;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

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

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--dark-color);
}

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

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

.feature-card {
  background-color: var(--gray-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  border-bottom: 3px solid var(--secondary-color);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  background-color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

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

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: var(--primary-color);
}

.pricing h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

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

.pricing-card {
  background-color: var(--dark-color);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #444;
}

.pricing-card.featured {
  border: 2px solid var(--secondary-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.price span {
  font-size: 16px;
  color: #cccccc;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
}

.features-list i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.btn-pricing {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background-color: var(--secondary-color);
  color: var(--light-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-pricing:hover {
  background-color: #b30808;
}

/* Download Section */
.download {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/download-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.download h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.download-subtitle {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.download-btn {
  display: flex;
  align-items: center;
  background-color: var(--dark-color);
  padding: 15px 25px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #444;
}

.download-btn i {
  font-size: 24px;
  margin-right: 10px;
}

.download-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  padding: 60px 0 20px;
  border-top: 1px solid var(--secondary-color);
}

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

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #cccccc;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
      flex-direction: column;
  }
  
  .hero-content {
      padding-right: 0;
      margin-bottom: 50px;
      text-align: center;
  }
  
  .cta-buttons {
      justify-content: center;
  }
  
  .hero-image {
      margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      background-color: var(--dark-color);
      width: 100%;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      transition: left 0.3s ease;
      border-top: 1px solid var(--secondary-color);
  }
  
  .nav-menu.active {
      left: 0;
  }
  
  .nav-menu li {
      margin: 15px 0;
  }
  
  .hero h1 {
      font-size: 36px;
  }
  
  .hero-subtitle {
      font-size: 16px;
  }
  
  .features h2, .pricing h2, .download h2 {
      font-size: 30px;
  }
  
  .price {
      font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero {
      padding: 150px 0 80px;
  }
  
  .hero h1 {
      font-size: 30px;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .btn {
      width: 100%;
      text-align: center;
  }
  
  .download-btn {
      width: 100%;
  }
}

.pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
            }
            70% {
                transform: scale(1.02);
                box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
            }
        }

.icon-o {
  color: #ff0000;
}

.container2 {
  padding: 20px;
  max-width: 1440px;
  margin: auto;
}
