
  :root {
    --primary: #ff6700;
    --secondary: #2b2b2b;
    --accent: #4a89dc;
    --light: #f4f4f4;
    --dark: #121212;
    --text: #333333;
    --text-light: #ffffff;
    --border: #e0e0e0;
    --success: #28a745;
    --error: #dc3545;
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  }

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

  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
  }

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

  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.2rem;
  }

  a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--primary);
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
  }

  .btn:hover {
    background-color: #e55c00;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    overflow: hidden;
  }

  .hero-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
  }

  .hero-section .content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

  /* Intro Section */
  .intro-section {
    padding: 4rem 0;
    background-color: var(--light);
  }

  .info-box {
    background-color: rgba(74, 137, 220, 0.1);
    border-left: 4px solid var(--accent);
    padding: 15px 20px;
    margin: 2rem 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
  }

  .info-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-right: 15px;
  }

  .info-box p {
    margin-bottom: 0;
  }

  /* Cases Price Section */
  .cases-price-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }

  .case-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }

  .case-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .case-item h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--dark);
  }

  .case-item p {
    padding: 0 1rem 1rem;
    margin-bottom: 0.5rem;
  }

  .case-item .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
  }

  /* Skins Price Section */
  .skins-price-section {
    position: relative;
    padding: 4rem 0;
    color: var(--text-light);
  }

  .skins-price-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3);
  }

  .skins-price-section .container {
    position: relative;
    z-index: 1;
  }

  .skins-price-section h2 {
    color: var(--text-light);
  }

  .skins-price-section h2::after {
    background-color: var(--text-light);
  }

  .skins-table {
    overflow-x: auto;
    margin: 2rem 0;
  }

  .skins-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    overflow: hidden;
  }

  .skins-table th,
  .skins-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .skins-table th {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .skins-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .info-note {
    display: flex;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 1.5rem;
  }

  .info-note i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
  }

  .info-note p {
    margin-bottom: 0;
  }

  /* Factors Section */
  .factors-section {
    padding: 4rem 0;
    background-color: var(--light);
  }

  .factors-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }

  .factor-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }

  .factor-item:hover {
    transform: translateY(-5px);
  }

  .factor-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .factor-item h3 {
    margin-bottom: 1rem;
    color: var(--dark);
  }

  .factor-item p {
    color: var(--text);
    margin-bottom: 0;
  }

  /* FAQ Section */
  .faq-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
  }

  .faq-item {
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-item h3 {
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
  }

  .faq-item p {
    margin-bottom: 0;
  }

  /* Newsletter Section */
  .newsletter-section {
    padding: 4rem 0;
    background-color: var(--secondary);
    color: var(--text-light);
    text-align: center;
  }

  .newsletter-section h2 {
    color: var(--text-light);
  }

  .newsletter-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .newsletter-form {
    max-width: 600px;
    margin: 2rem auto;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 600;
  }

  .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
  }

  .disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
  }

  /* Responsive Styles */
  @media (min-width: 768px) {
    .cases-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .factors-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section h1 {
      font-size: 3.5rem;
    }
  }

  @media (min-width: 1024px) {
    .cases-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .factors-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-section {
      height: 500px;
    }
    
    .hero-section h1 {
      font-size: 4rem;
    }
  }

  /* Accessibility Helper */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  .floating-button {
  position: fixed;
  left: 0; 
  top: 50%; 
  transform: translateY(-50%);
  z-index: 999; 
}

.floating-button img {
  width: 160px; 
  height: auto;
  cursor: pointer;
}

 @media (max-width: 768px) {
 .floating-button img {
  width: 100px; 
}
 }
 
 
 .vox-block {
  background-image: url('../img/rectangle-back.jpg');
  background-size: cover;
  background-position: center;
  height: 350px; 
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-left: 5%;
  color: white;
  position: relative;
}

.vox-pretitle {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight:600;
  color:#fff;
  margin-bottom: 10px;
  display: inline-block;
  padding:5px 15px;
  border-radius:10px;
  background: #8C8C8C80;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.vox-title {
  font-size: 48px;
  margin: 0 0 20px 0;
  font-weight: 900;
}

.vox-cta-button {
  display: inline-block;
  background: #CF7723;
  box-shadow: 0px 4px 4px 0px #00000040;
  color: #fff!important;
  font-size:24px;
  text-decoration: none;
  padding: 10px 48px;
  border-radius: 28px;
  text-decoration:none!important;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.vox-cta-button:hover {
  background-color: #e64a19;
}

.link-wrapper {
  position: relative;
  overflow: hidden;
}

.vox-block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.vox-block-content {
  position: relative;
  z-index: 0; 
}

 @media (max-width: 768px) {
  .vox-block {
  align-items: center;
}
.vox-pretitle {
  font-size: 14px;
  letter-spacing: 0px;
} 
.vox-title {
  font-size: 36px;
}
.vox-cta-button {
  font-size:21px;
}
 }
 
 .vox-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.vox-popup {
  position: relative;
  background-image: url('../img/popup-back.png');
  background-size: cover;
  background-position: center;
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  min-height: 500px;
  width: 100%;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  text-align: center;
   display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.vox-popup-content {
  flex-grow: 1;
}

.vox-popup-footer {
  margin-top: auto;
}

.vox-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  font-size: 21px;
  width: 28px;
  height: 28px;
  color: #FF7700;
  cursor: pointer;
  border-radius:50%;
  border:2px solid #FF7700;
  display:none;
  align-items: center;
  justify-content: center;
    opacity: 0;
transition: opacity 0.5s ease;

}

.vox-popup-close.visible {
  opacity: 1;
  display: flex;
}

.vox-popup-title {
  font-size: 48px;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
}

.vox-popup-subtitle {
  font-size: 24px;
  font-weight: bold;
}

.vox-popup-button {
  display: inline-block;
  background: linear-gradient(180deg, #FF9500 0%, #FF4D00 100%);
  box-shadow: 0px 0px 15.8px 3px #FF8401B0;
  border: 1px solid #FFFFFF;
  color: #fff!important;
  text-decoration: none!important;
  padding: 12px 24px;
  border-radius: 27px;
  font-weight: bold;
  font-size:36px;
  transition: all 0.3s ease;
}


.vox-popup-button:hover {
  background-color: #e64a19;
}

.vox-countdown-timer {
  font-size: 48px;
  font-weight: 900;
  margin-top: 10px;
  color: #fff; 
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}


 @media (max-width: 768px) {
 
 .vox-popup {
  max-width: 600px;
  min-height: 400px;
}

.vox-popup-title {
  font-size: 36px;
}

.vox-popup-button {
  font-size: 24px;
}
}

.btn-pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
