body {
  background-color: #000;
  /* Hetman's Fleet - Naval Command colour */
  background: radial-gradient(ellipse at bottom, #1a1332 0%, #141827 100%);
  font-family: 'Noto Sans', sans-serif;
  font-weight: bold;
}

html {
  background-color: #0d0b1f;
  scroll-behavior: smooth;
}

.display-4,
.lead {
  font-weight: bold !important;
}

.display-4 {
  font-size: 3.8em;
}

.contact-info {
  font-size: 0.9em;
}

.container {
  z-index: 2;
}

.lead {
  font-size: 1.25em;
}

.loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.loading p {
  margin-top: 20px;
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.7em !important;
  }

  .lead {
    font-size: 1em !important;
  }

  .countdown-numbers {
    font-size: 2.5em !important;
  }

  .countdown {
    flex-direction: row !important;
  }

  footer p {
    font-size: 0.5rem !important;
  }
}

/* Animation styles */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

footer p {
  font-size: 0.6rem;
  font-weight: 200;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Glassmorphism for the FAQ Section */
.glassmorphism {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.07));
  background-size: 200% 200%;
  animation: rotateGlow 10s ease infinite;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.card-header .btn-link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.card-header .btn-link:hover {
  text-decoration: underline;
}

.card-body {
  background: transparent;
  color: #fff;
}

/* Styles for the Form */
.page1 {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.head-box p {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.custom-btn {
  background: linear-gradient(45deg, #ffab2c, #ffd595);
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 30px;
  transition: background 0.3s;
}

.custom-btn:hover {
  background: linear-gradient(45deg, #ffd595, #ffab2c);
  text-decoration: none;
  color: #fff;
}

.footer-box img {
  max-width: 150px;
}

/* Adjustments for Mobile View */
@media (max-width: 576px) {
  .head-box p {
    font-size: 1.2em;
  }

  .custom-btn {
    width: 100%;
    text-align: center;
  }
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.star {
  --star-color: #ffab2c;
  --star-tail-length: 6em;
  --star-tail-height: 3px;
  --star-width: calc(var(--star-tail-length) / 3.5);
  --fall-duration: 9s;
  --tail-fade-duration: var(--fall-duration);

  position: absolute;
  width: var(--star-tail-length);
  height: var(--star-tail-height);
  color: var(--star-color);
  background: linear-gradient(45deg, currentColor, transparent);
  border-radius: 50%;
  filter: drop-shadow(0 0 6px currentColor);
  transform: translate3d(104em, 0, 0);
  animation: fall var(--fall-duration) var(--fall-delay) linear infinite, tail-fade var(--tail-fade-duration) var(--fall-delay) ease-out infinite;
}

.star::before,
.star::after {
  position: absolute;
  content: '';
  top: 0;
  left: calc(var(--star-width) / -2);
  width: var(--star-width);
  height: 100%;
  background: linear-gradient(45deg, transparent, currentColor, transparent);
  border-radius: inherit;
  animation: blink 2s linear infinite;
}

.star::before {
  transform: rotate(45deg);
}

.star::after {
  transform: rotate(-45deg);
}

@keyframes fall {
  to {
    transform: translate3d(-104em, 0, 0);
    /* Move the stars all the way to the left outside the viewport */
  }
}

@keyframes tail-fade {

  0%,
  50% {
    width: var(--star-tail-length);
    opacity: 1;
  }

  70%,
  80% {
    width: 0;
    opacity: 0.4;
  }

  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes blink {
  50% {
    opacity: 0.6;
  }
}

.accordion-item {
  position: relative;
  background-color: #000;
  padding: 12px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

/* Define the custom property for the gradient rotation */
@property --bg-angle {
  inherits: false;
  initial-value: 0deg;
  syntax: "<angle>";
}

/* Keyframes to spin the gradient */
@keyframes spin {
  to {
    --bg-angle: 360deg;
  }
}

.form-control:focus {
  color: white !important;
}

.form-button {
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  color: white !important;
  background-color: #0d0b1f;
}

.form-button::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  margin: auto;
  border-radius: 12px;
  background:
    /* Create a transparent padding-box to show a solid border */
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)) padding-box,
    /* Conic gradient that will rotate */
    conic-gradient(from var(--bg-angle),
      #ffab2c,
      #141827,
      #ffab2c) border-box;
  /* Extends to the outer border */
  z-index: -10;
  pointer-events: none;
  border: 2px solid transparent;
  /* Clear border so the gradient shines through */
  animation: spin 4s infinite linear;
  /* Animate the gradient rotation */
}

.form-button::after {
  content: '';
  z-index: -1;
  position: absolute;
  inset: 5px;
  background:
    /* Background colors with gradient effect */
    conic-gradient(from var(--bg-angle),
      #ffab2c,
      #141827,
      #ffab2c);
  filter: blur(15px);
  animation: spin 4s infinite linear;
  /* Animate the blur effect gradient */
}

.accordion-button {
  background-color: transparent;
  color: white;
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 14px;
}

.rounded {
  border-radius: 14px !important;
}

.modal-dialog {
  min-width: 60% !important;
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 12px;
  border: none;
  outline: none;
  background-color: #212b58;
  color: white;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  padding: 0;
  display: none;
  /* Hidden by default */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#backToTopBtn:hover {
  background-color: #555;
  /* Darker color on hover */
}

#backToTopBtn::after {
  content: '';
  z-index: -1;
  position: absolute;
  inset: 5px;
  background:
    /* Background colors with gradient effect */
    conic-gradient(from var(--bg-angle),
      #ffab2c,
      #141827,
      #ffab2c);
  filter: blur(15px);
  animation: spin 4s infinite linear;
  /* Animate the blur effect gradient */
}

#backToTopBtn::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  margin: auto;
  border-radius: 6px;
  background:
    /* Create a transparent padding-box to show a solid border */
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)) padding-box,
    /* Conic gradient that will rotate */
    conic-gradient(from var(--bg-angle),
      #ffab2c,
      #141827,
      #ffab2c) border-box;
  /* Extends to the outer border */
  z-index: -10;
  pointer-events: none;
  border: 2px solid transparent;
  /* Clear border so the gradient shines through */
  animation: spin 4s infinite linear;
  /* Animate the gradient rotation */
}

#backToTopBtnContents {
  color: white;
  background-color: #212b58;
  margin-left: 2.5px;
  margin-top: 2.5px;
  height: 30px;
  width: 30px;
}

.modal-body>p {
  font-weight: 300;
}

.page1 {
  min-height: 300px;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

#mainContainer {
  min-height: 100vh;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ffab2c 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.1s ease;
}

.cursor-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #ffab2c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Interactive cursor states */
.custom-cursor.hover {
  transform: scale(1.5);
  background: radial-gradient(circle, #ffab2c 0%, rgba(255, 171, 44, 0.3) 70%);
}

@media (hover: hover) and (pointer: fine) {
  * {
    cursor: none !important;
  }
}

/* Custom Cursor Styles */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ffab2c 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: screen;
  transition: transform 0.2s ease, background 0.2s ease;
  opacity: 0;
}

.cursor-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #ffab2c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 3px #ffab2c;
}

/* Hover state for cursor */
.custom-cursor.hover {
  transform: scale(1.5);
  background: radial-gradient(circle, #ffab2c 0%, rgba(255, 171, 44, 0.4) 50%, transparent 70%);
  box-shadow: 0 0 20px rgba(255, 171, 44, 0.6);
}

.cursor-trail.hover {
  background: #ffd595;
  transform: scale(1.2);
}

/* Glow effect animation */
@keyframes cursorGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 171, 44, 0.5);
  }

  50% {
    box-shadow: 0 0 15px rgba(255, 171, 44, 0.8);
  }

  100% {
    box-shadow: 0 0 5px rgba(255, 171, 44, 0.5);
  }
}

.custom-cursor.hover {
  animation: cursorGlow 1s ease-in-out infinite;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.scroll-animate[data-delay="1"] {
  transition-delay: 0.2s;
}

.scroll-animate[data-delay="2"] {
  transition-delay: 0.4s;
}

.scroll-animate[data-delay="3"] {
  transition-delay: 0.6s;
}

.scroll-animate[data-delay="4"] {
  transition-delay: 0.8s;
}

.scroll-animate[data-delay="5"] {
  transition-delay: 1s;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .scroll-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Different animation styles */
.scroll-animate.fade-in {
  transform: none;
}

.scroll-animate.slide-left {
  transform: translateX(-30px);
}

.scroll-animate.slide-left.visible {
  transform: translateX(0);
}

.scroll-animate.slide-right {
  transform: translateX(30px);
}

.scroll-animate.slide-right.visible {
  transform: translateX(0);
}

.scroll-animate.scale-up {
  transform: scale(0.9);
}

.scroll-animate.scale-up.visible {
  transform: scale(1);
}

.account-tools h2 {
  font-weight: bold;
  font-size: 2.2em;
  text-align: center;
}

.tool-card {
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.tool-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

@keyframes rotateGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.tool-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.07));
  background-size: 200% 200%;
  animation: rotateGlow 10s ease infinite;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.tool-card:hover {
  transform: translateY(-5px);
}

#faqSearch {
  max-width: 600px;
}

#faqSearch::placeholder {
  max-width: 600px;
  color: white !important;
  opacity: 1 !important;
}

.header,
.footer {
  border-color: #ffab2c !important;
}


.contact-info,
.footer-link {
  background: linear-gradient(to right, #ffcc00 0%, #ffa000 50%, #ffcc00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Fallback for browsers that don't support text-fill-color */
  animation: gradientAnimation 5s ease infinite;
  /* Apply the animation */
  background-size: 200% 100%;
  /* Make gradient larger for animation */
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.chips {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  font-size: 0.85rem;
  color: #E6E6E6;
  transition: all 0.3s ease;
}

.chips:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
  border-radius: 20px;
}

.faq-container {
  padding: 2rem;
}

.search-section {
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: white;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #ffab2c;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 171, 44, 0.2);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 0;
}

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

.faq-question {
  background: transparent;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1.5rem 0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ffab2c;
}

.faq-question:focus {
  outline: 2px solid #ffab2c;
  outline-offset: 2px;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffab2c;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  padding: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.search-results-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.no-results {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .search-section {
    position: static;
    margin-bottom: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem 0;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

  .faq-answer,
  .faq-icon,
  .faq-question {
    transition: none;
  }
}

/* Focus styles for better accessibility */
.faq-question:focus-visible {
  outline: 2px solid #ffab2c;
  outline-offset: 2px;
  border-radius: 4px;
}

.live-winners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  color: #ffab2c;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 171, 44, 0.3);
}

.winners-card {
  background: rgba(255, 255, 255, 0.011);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.winner-display {
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
}

.winner-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.winner-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.winner-item.exit {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
}

.winner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.winner-icon {
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0 8px currentColor);
  flex-shrink: 0;
}

.winner-details {
  min-width: 0;
  flex: 1;
}

.winner-name {
  color: #ffab2c;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.2;
}

.winner-game {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-right {
  text-align: right;
  flex-shrink: 0;
}

.winner-amount {
  color: #ffab2c;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 0;
  text-shadow: 0 0 10px #ffab2c28;
  line-height: 1.2;
}

.winner-time {
  background: rgba(255, 171, 44, 0.2);
  color: #ffab2c;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.2rem;
  display: inline-block;
}

/* Game category colors */
.winner-item[data-category="slot"] .winner-icon {
  color: #ff6b9d;
  background: rgba(255, 107, 157, 0.15);
}

.winner-item[data-category="casino"] .winner-icon {
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.15);
}

.winner-item[data-category="sports"] .winner-icon {
  color: #45b7d1;
  background: rgba(69, 183, 209, 0.15);
}

.winner-item[data-category="esports"] .winner-icon {
  color: #96ceb4;
  background: rgba(150, 206, 180, 0.15);
}

/* Pulse animation for amount */
@keyframes glow {

  0%,
  100% {
    text-shadow: 0 0 10px #ffab2c46;
  }

  50% {
    text-shadow: 0 0 20px #ffab2cb5, 0 0 30px #a8701c31;
  }
}

.winner-amount {
  animation: glow 3s ease-in-out infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .winners-card {
    padding: 1rem;
  }

  .winner-display {
    height: 80px;
  }

  .winner-item {
    padding: 0 0.75rem;
  }

  .winner-left {
    gap: 0.75rem;
  }

  .winner-icon {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  .winner-name {
    font-size: 1rem;
  }

  .winner-game {
    font-size: 0.85rem;
  }

  .winner-amount {
    font-size: 1.1rem;
  }

  .winner-time {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .winner-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0.75rem;
    gap: 0.5rem;
  }

  .winner-left {
    width: 100%;
  }

  .winner-right {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .winner-display {
    height: 90px;
  }
}

/* New Sections Styling */

/* Brand-free header */
.brand-free-header h3 {
  font-weight: 600;
  color: #ffab2c;
  text-shadow: 0 0 10px rgba(255, 171, 44, 0.3);
}

/* Service Categories Section */
.service-categories {
  background: rgba(0, 0, 0, 0.2);
}

.service-card {
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  border: 1px solid rgba(255, 171, 44, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 171, 44, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 3rem;
  color: #ffab2c;
  text-align: center;
  margin-bottom: 1rem;
}

.service-icon i {
  filter: drop-shadow(0 0 10px rgba(255, 171, 44, 0.3));
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(255, 171, 44, 0.2);
  color: #ffab2c;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 171, 44, 0.3);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(255, 171, 44, 0.3);
  transform: scale(1.05);
}

/* Features Showcase Section */
.features-showcase {
  background: rgba(0, 0, 0, 0.1);
}

.feature-card {
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 171, 44, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 171, 44, 0.4);
}

.feature-stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffab2c;
  text-shadow: 0 0 20px rgba(255, 171, 44, 0.5);
  transition: all 0.3s ease;
}

.stat-symbol {
  font-size: 1.5rem;
  color: #ffab2c;
  opacity: 0.8;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.feature-indicator {
  margin-top: auto;
}

.indicator-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.indicator-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffab2c, #ffd595);
  border-radius: 2px;
  width: var(--fill);
  transition: width 2s ease;
  box-shadow: 0 0 10px rgba(255, 171, 44, 0.5);
}

/* Animation for stats */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card.visible .stat-number {
  animation: countUp 0.8s ease;
}

/* Hero Top Section Styles */
.hero-top-section {
  padding-top: 2rem;
  opacity: 0;
}

.security-icon-container {
  margin-bottom: 1rem;
}

.security-icon {
  font-size: 4rem;
  display: inline-block;
  animation: securityIconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 171, 44, 0.3));
}

.hero-tagline {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  opacity: 0.9;
}

.tagline-text {
  display: inline-block;
  animation: taglineGlow 2s ease-in-out infinite alternate;
}

.tagline-text:nth-child(1) {
  animation-delay: 0s;
}

.tagline-text:nth-child(3) {
  animation-delay: 0.3s;
}

.tagline-text:nth-child(5) {
  animation-delay: 0.6s;
}

.tagline-separator {
  margin: 0 3rem;
  opacity: 0.6;
  color: #ffab2c;
}

/* Hero Top Animations */
@keyframes heroTopFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes taglineGlow {
  from {
    text-shadow: 0 0 5px rgba(255, 171, 44, 0.3);
  }
  to {
    text-shadow: 0 0 15px rgba(255, 171, 44, 0.6), 0 0 25px rgba(255, 171, 44, 0.3);
  }
}

/* Mobile responsiveness for hero top */
@media (max-width: 768px) {
  .hero-top-section {
    padding-top: 1rem;
  }

  .security-icon {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }

  .tagline-separator {
    margin: 0 0.5rem;
  }
}

/* Enhanced section titles */
.section-title {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffab2c, #ffd595);
  border-radius: 2px;
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
  .service-icon {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-symbol {
    font-size: 1.2rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .service-card {
    margin-bottom: 1rem;
  }

  .feature-card {
    margin-bottom: 1rem;
  }

  .service-features {
    justify-content: center;
  }
}

.border-gold {
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Trust Metrics Section */
.trust-metrics {
  background: linear-gradient(135deg, rgba(26, 19, 50, 0.3) 0%, rgba(13, 11, 31, 0.3) 100%);
  border-top: 1px solid rgba(255, 171, 44, 0.1);
  border-bottom: 1px solid rgba(255, 171, 44, 0.1);
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff, #ffab2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-card {
  padding: 2.5rem 1.5rem;
  margin: 0 1rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 171, 44, 0.2);
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffab2c, transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 171, 44, 0.1);
}

.metric-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(255, 171, 44, 0.3));
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffab2c;
  text-shadow: 0 0 20px rgba(255, 171, 44, 0.4);
  display: inline-block;
  min-height: 4rem;
  line-height: 1;
}

.metric-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: #ffab2c;
  display: inline-block;
  margin-left: 0.2rem;
}

.metric-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 1rem 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.metric-sublabel {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Counter Animation */
.metric-number.counting {
  animation: counterPulse 0.1s ease-in-out;
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

@keyframes counterPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .trust-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .metric-card {
    margin: 0 0.5rem 1.5rem 0.5rem;
    padding: 2rem 1rem;
  }

  .metric-number {
    font-size: 2.8rem;
  }

  .metric-icon {
    font-size: 2.5rem;
  }
}