* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}
.mirage-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1vw 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
.mirage-logo img {
  height: 4vw;
  width: 7vw;
  filter: invert(1);
  cursor: pointer;
}
.mirage-desktop-nav {
  display: flex;
  align-items: center;
  gap: 2vw;
}
.mirage-nav-item {
  position: relative;
}
.mirage-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.mirage-nav-link:hover {
  color: orange;
}
.mirage-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 0.7vw 0;
  border-radius: 0.5vw;
  min-width: 12vw;
  box-shadow: 0 0.5vw 1.2vw rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 999;
}
.mirage-nav-item:hover .mirage-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mirage-dropdown a {
  color: white;
  text-decoration: none;
  padding: 0.7vw 1vw;
  font-size: 0.95vw;
  transition: all 0.2s ease;
  position: relative;
}
.mirage-dropdown a::before {
  content: \"\";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0.25vw;
  background: orange;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mirage-dropdown a:hover::before {
  opacity: 1;
}
.mirage-dropdown a:hover {
  background-color: rgba(255, 165, 0, 0.08);
  padding-left: 1.4vw;
  color: orange;
}
.mirage-header-buttons {
  display: flex;
  gap: 1vw;
}
.mirage-header-buttons {
  display: flex;
  gap: 1vw;
}
.mirage-training-btn,
.mirage-insight-btn {
  display: inline-block;
  padding: 0.6vw 1.2vw;
  border-radius: 0.4vw;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95vw;
  transition: all 0.3s ease;
}
.mirage-training-btn {
  background-color: #001f3f;
  color: white;
  border: 2px solid orange;
}
.mirage-training-btn:hover {
  background-color: #003366;
}
.mirage-insight-btn {
  background: linear-gradient(to right, orange, #ff6a00);
  color: white;
  border: none;
}
.mirage-insight-btn:hover {
  opacity: 0.9;
}
.mirage-burger-toggle {
  display: none;
}
.mirage-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.mirage-burger div {
  width: 25px;
  height: 3px;
  background: white;
}
.mirage-mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1.5vw;
  z-index: 999;
}
.mirage-mobile-nav details {
  margin-bottom: 1vw;
}
.mirage-mobile-nav details a {
  color: orange;
  border-left: 0.5vw solid orange;
  padding-left: 3vw;
  background: rgba(255, 165, 0, 0.07);
  border-radius: 0.5vw;
}
.mirage-mobile-nav summary {
  font-size: 4vw;
  color: orange;
  font-weight: bold;
  cursor: pointer;
}
.mirage-mobile-nav a {
  color: white;
  display: block;
  padding-left: 2vw;
  margin-top: 0.5vw;
  font-size: 3.5vw;
  text-decoration: none;
}
.mirage-burger-toggle:checked ~ .mirage-mobile-nav {
  display: flex;
}
.intro-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}
.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 22, 40, 0.7);
  z-index: 1;
}
.intro-overlay {
  position: relative;
  z-index: 2;
  padding-left: 8vw;
  max-width: 60vw;
}
.intro-topline {
  font-size: 1.2vw;
  color: orange;
  font-weight: bold;
  margin-bottom: 1vw;
}
.intro-title {
  font-size: 3.5vw;
  font-weight: 800;
  line-height: 1.2;
}
.intro-subline {
  font-size: 1vw;
  margin-top: 1.5vw;
  color: orange;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mirage-about-section {
  display: flex;
  justify-content: space-between;
  background: #f0f2f5;
  padding: 5vw 5vw;
  gap: 4vw;
  flex-wrap: wrap;
}
.mirage-about-text {
  flex: 1;
  max-width: 50%;
}
.mirage-about-title {
  font-size: 2.8vw;
  font-weight: 800;
  margin-bottom: 1.5vw;
  color: #111;
}
.mirage-about-paragraph {
  font-size: 1.1vw;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.2vw;
}
.mirage-about-btn {
  display: inline-block;
  padding: 1vw 2vw;
  font-size: 1vw;
  background: #001f3f;
  color: #fff;
  border-radius: 3vw;
  text-decoration: none;
  margin-top: 1vw;
  transition: background 0.3s ease;
}
.mirage-about-btn:hover {
  background: orange;
}
.mirage-about-image-wrapper {
  flex: 1;
  max-width: 40%;
  position: relative;
}
.mirage-about-orange-frame {
  position: relative;
  padding-right: 1.5vw;
  padding-top: 1vw;
  padding-bottom: 1vw;
  padding-left: 0.5vw;
  background: orange;
  display: inline-block;
}
.mirage-about-image {
  display: block;
  width: 100%;
  height: auto;
}
.mirage-about-overlay-text {
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  color: white;
  font-size: 1.8vw;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  pointer-events: none;
  transition: transform 0.3s ease;
}
.mirage-about-overlay-text::after {
  content: "";
  display: block;
  height: 0.3vw;
  width: 100%;
  background: rgb(255, 255, 255);
  margin-top: 0.6vw;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.3s ease;
}
.mirage-about-orange-frame:hover .mirage-about-overlay-text {
  transform: translateY(-0.5vw);
}
.mirage-about-orange-frame:hover .mirage-about-overlay-text::after {
  opacity: 1;
  transform: scaleX(1);
}
.mirage-clients-section {
  background: #ffffff;
  padding: 4vw 2vw;
  overflow: hidden;
  text-align: center;
}
.mirage-clients-title {
  font-size: 2.4vw;
  font-weight: 800;
  margin-bottom: 3vw;
  color: #111;
}
.mirage-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mirage-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.mirage-carousel-strip {
  display: flex;
  flex-shrink: 0;
}
.mirage-carousel-strip img {
  height: 7vw;
  width: 7vw;
  margin-right: 2vw;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.mirage-carousel-strip img:hover {
  opacity: 1;
}
.mirage-services-section {
  background: #0a1128;
  padding: 5vw 1vw;
}
.mirage-services-title {
  font-size: 2.8vw;
  color: white;
  margin-bottom: 2vw;
  text-align: center;
  font-weight: 900;
  margin-left: 5vw;
  text-transform: uppercase;
  border-bottom: 0.4vw solid orange;
  display: inline-block;
  padding-bottom: 0.5vw;
}
.mirage-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
  justify-content: center;
}
.mirage-service-card {
  flex: 0 0 20vw;
  height: 35vw;
  background-size: cover;
  background-position: center;
  color: white;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 4px solid orange;
  transition: transform 0.3s ease;
}
.mirage-service-card:hover {
  transform: translateY(-0.3vw);
}
.mirage-service-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 2vw 1vw 1.5vw;
  width: 100%;
}
.mirage-service-content h3 {
  font-size: 1.5vw;
  font-weight: 800;
  margin: 0 0 1vw;
}
.mirage-service-content p {
  font-size: 0.95vw;
  color: #ccc;
  margin: 0 0 1.5vw;
}
.mirage-plus {
  background: orange;
  border-radius: 50%;
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5vw;
  color: white;
  position: absolute;
  bottom: 1vw;
  right: 1vw;
}
.mirage-footer {
  background-color: #051932;
  color: white;
  padding: 3vw 5vw;
  font-size: 1vw;
}
.mirage-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3vw;
}
.mirage-footer-logo img {
  height: 4vw;
  width: 7vw;
  filter: invert(1);
  cursor: pointer;
}
.mirage-footer-info {
  flex: 1 1 20vw;
  color: white;
}
.mirage-footer-info h4,
.mirage-footer-info p strong {
  color: orange;
}
.mirage-footer-phone {
  color: #ff6a00;
  font-weight: bold;
}
.mirage-footer-email {
  color: #ff6a00;
  text-decoration: none;
}
.mirage-footer-links {
  flex: 1 1 20vw;
}
.mirage-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mirage-footer-links li {
  margin-bottom: 1vw;
  position: relative;
  padding-left: 1.2vw;
}
.mirage-footer-links li::before {
  content: "▪";
  color: orange;
  position: absolute;
  left: 0;
}
.mirage-footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.mirage-footer-links a:hover {
  text-decoration: underline;
}
.mirage-footer-copy {
  text-align: center;
  font-size: 0.9vw;
  color: #aaa;
  margin-top: 2vw;
  border-top: 1px solid #2a2a2a;
  padding-top: 1vw;
}
.mirage-footer-copy a {
  color: #ff6a00;
  text-decoration: none;
  margin-left: 0.5vw;
  transition: color 0.3s;
}
.mirage-footer-copy a:hover {
  color: #fff;
}
.mirage-people-header {
  background-color: #0b132b;
  padding: 12vw 10vw;
  text-align: left;
}
.mirage-people-title {
  font-size: 4.5vw;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5vw;
}
.mirage-people-subtitle {
  color: #ffb400;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05vw;
}
.mirage-executive-section {
  background-color: #fff;
  padding: 6vw 12vw;
}
.mirage-executive-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
  justify-content: space-between;
}
.mirage-executive-column {
  flex: 1 1 45%;
  max-width: 45%;
}
.mirage-orange-btn {
  display: inline-block;
  border: 2px solid orange;
  padding: 1vw 2vw;
  color: orange;
  font-size: 1.2vw;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2vw;
  border-radius: 0.3vw;
  transition: all 0.3s ease;
}
.mirage-orange-btn:hover {
  background-color: orange;
  color: white;
}
.mirage-executive-title {
  font-size: 2.8vw;
  font-weight: 900;
  color: #0b132b;
  margin-bottom: 1vw;
  text-transform: uppercase;
}
.mirage-divider {
  width: 5vw;
  height: 0.1vw;
  background-color: orange;
  border: none;
  margin-bottom: 1.5vw;
}
.mirage-executive-text {
  font-size: 1.1vw;
  line-height: 1.8vw;
  color: #333;
}
.mirage-executives-highlight {
  background-color: #ffaa00;
  padding: 6vw 2vw;
  text-align: center;
}
.mirage-executives-title {
  font-size: 2.8vw;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
.mirage-executives-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6vw;
  padding: 4vw 2vw;
  background-color: #fff;
}
.executive-card {
  max-width: 40vw;
  background: #fff;
  text-align: center;
}
.executive-card img {
  width: 100%;
  border-radius: 0.8vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.2);
}
.exec-name {
  font-size: 2vw;
  font-weight: 900;
  color: #0f1c3f;
  margin-top: 1.2vw;
}
.exec-position {
  color: #ff7b00;
  font-size: 1vw;
  margin-bottom: 0.5vw;
  text-align: center;
}
.exec-divider {
  border: none;
  border-bottom: 0.2vw solid #ffaa00;
  width: 30%;
  margin: 0.5vw auto;
}
.exec-description {
  color: #2e2e2e;
  font-size: 1vw;
  text-align: justify;
  line-height: 1.5;
  padding: 0 1vw;
}
.exec-connect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6vw;
  border: 0.1vw solid #ffaa00;
  padding: 0.8vw 2vw;
  border-radius: 0.4vw;
  color: #ffaa00;
  font-size: 1vw;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin-top: 1vw;
}
.exec-connect-btn:hover {
  background: #ffaa00;
  color: #fff;
}
.team-wrapper {
  display: flex;
  padding: 2vw 0;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.team-card {
  flex: 0 0 28%;
  border: 1px solid #eee;
  border-radius: 0.5vw;
  background: #fff;
  padding: 1.5vw;
  box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.05);
  text-align: left;
}
.team-card img {
  width: 100%;
  border-radius: 0.5vw;
}
.team-card h2 {
  color: #0c2340;
  font-size: 1.5vw;
  margin: 1vw 0 0;
}
.team-role {
  color: #ff6a00;
  font-size: 1vw;
  margin-bottom: 0.5vw;
}
.exec-divider {
  border: none;
  border-bottom: 0.2vw solid #ffaa00;
  width: 30%;
  margin: 0.5vw 0;
}
.team-desc {
  font-size: 0.9vw;
  line-height: 1.3vw;
  color: #333;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35vw, 1fr));
  gap: 2vw;
  padding: 3vw;
}
.principle-card {
  background-size: cover;
  background-position: center;
  border-radius: 1vw;
  padding: 2vw;
  padding-bottom: 4vw;
  color: #fff;
  position: relative;
  min-height: 14vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.3);
}
.principle-card h3 {
  font-size: 1.5vw;
  color: #ff6a00;
  font-weight: 700;
  margin-bottom: 1vw;
}
.principle-card p {
  font-size: 1vw;
  line-height: 1.5vw;
  color: #eee;
}
.mirage-quality-support-wrapper {
  padding: 2vw 4vw;
  background-color: #fff;
}
.mirage-quality-support-header {
  background: linear-gradient(to right, #ffaa00, #ff6a00);
  color: #fff;
  font-size: 2vw;
  font-weight: 800;
  padding: 1vw 2vw;
  max-width: fit-content;
  margin-bottom: 1.5vw;
  text-transform: uppercase;
}
.mirage-quality-support-paragraph {
  color: #222;
  font-size: 1.05vw;
  line-height: 1.8vw;
  max-width: 90%;
}
.mirage-services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(55vw, 1fr));
  gap: 2vw;
  padding: 2vw;
  justify-content: center;
}
.mirage-card {
  background-size: cover;
  background-position: center;
  border-radius: 1vw;
  padding: 2vw;
  color: #fff;
  min-height: 35vw;
  width: 30vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 0.4vw 1vw rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  position: relative;
  margin: 0 auto;
}
.mirage-card h3 {
  font-size: 1.6vw;
  font-weight: bold;
  margin: 0 0 1vw;
  color: #fff;
  background: linear-gradient(90deg, #ff9000, #ff5c00);
  display: inline-block;
  padding: 0.2vw 0.8vw;
  border-radius: 0.3vw;
}
.mirage-card p {
  font-size: 1vw;
  line-height: 1.5vw;
  background: rgba(0, 0, 0, 0.6);
  padding: 1vw;
  border-radius: 0.5vw;
}
.mirage-card:hover {
  transform: scale(1.02);
}
.mirage-support-section {
  padding: 4vw 2vw;
  background-color: #fff;
}
.mirage-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28vw, 1fr));
  gap: 3vw;
}
.mirage-support-block {
  padding: 2vw;
  border-radius: 1vw;
}
.mirage-support-title {
  font-size: 1.8vw;
  color: #16203e;
  font-weight: 800;
  margin-bottom: 0.5vw;
}
.mirage-support-divider {
  width: 3vw;
  border: 0;
  border-top: 0.3vw solid #ffaa00;
  margin-bottom: 1.5vw;
}
.mirage-support-text {
  font-size: 1vw;
  color: #333;
  line-height: 1.6;
}
.mirage-training-options {
  padding: 4vw 2vw;
  text-align: center;
  background-color: #ffffff;
}
.mirage-training-title {
  color: #e8501d;
  font-size: 2vw;
  font-weight: bold;
  margin-bottom: 2vw;
  text-transform: uppercase;
}
.mirage-training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18vw, 1fr));
  gap: 1.5vw;
  margin-bottom: 2vw;
}
.mirage-training-card {
  position: relative;
  height: 12vw;
  background-size: cover;
  background-position: center;
  padding-bottom: 2vw;
  border-radius: 1vw;
  overflow: hidden;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}
.mirage-training-overlay {
  color: #fff;
  padding: 1.5vw;
  width: 100%;
}
.mirage-training-card h3 {
  color: #ff7a00;
  font-size: 1.4vw;
  margin-bottom: 0.5vw;
}
.mirage-training-card p {
  font-size: 0.95vw;
  line-height: 1.5;
}
.mirage-training-button {
  display: inline-block;
  background: #ff9c00;
  color: #fff;
  padding: 1vw 2vw;
  font-size: 1vw;
  border-radius: 0.5vw;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.mirage-training-button:hover {
  background: #e68600;
}
.mirage-bg-onsite {
  background-image: url("img/back.png");
}
.mirage-bg-remote {
  background-image: url("img/back.png");
}
.mirage-bg-showroom {
  background-image: url("img/back.png");
}
.mirage-bg-online {
  background-image: url("img/back.png");
}
.mirage-gaming-management-section {
  position: relative;
  background-image: url("img/bgr.jpg");
  background-size: cover;
  background-position: center;
  padding: 5vw 2vw;
  color: #fff;
  z-index: 1;
}
.mirage-gaming-management-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}
.mirage-gaming-management-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.mirage-gaming-management-title {
  font-size: 2.8vw;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2vw;
}
.mirage-gaming-management-subtitle {
  font-size: 1.1vw;
  color: #eee;
  margin-bottom: 2.2vw;
  line-height: 1.7vw;
}
.mirage-gaming-management-line {
  display: inline-block;
  background: #ff9100;
  padding: 0.7vw 1.5vw;
  border-radius: 0.4vw;
  font-weight: 600;
  font-size: 1.2vw;
  margin-bottom: 2.5vw;
}
.mirage-gaming-management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18vw, 1fr));
  gap: 2vw;
}
.mirage-gaming-card {
  background: #fff;
  color: #000;
  padding: 2vw;
  border-radius: 1vw;
  text-align: center;
  box-shadow: 0 0.4vw 1.2vw rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.mirage-gaming-card:hover {
  transform: translateY(-0.5vw);
}
.mirage-gaming-icon {
  width: 3.5vw;
  height: auto;
  margin-bottom: 1vw;
}
.mirage-gaming-card-title {
  font-size: 1.4vw;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 0.7vw;
}
.mirage-gaming-card-desc {
  font-size: 1vw;
  line-height: 1.5vw;
  color: #444;
}
.mirage-digital-loyalty-section {
  background-color: #ffffff;
  padding: 4vw 2vw;
}
.mirage-digital-loyalty-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
  align-items: center;
  justify-content: center;
  max-width: 80vw;
  margin: 0 auto;
}
.mirage-digital-loyalty-image {
  flex: 1 1 40%;
  text-align: center;
}
.mirage-digital-loyalty-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1vw;
}
.mirage-digital-loyalty-content {
  flex: 1 1 50%;
}
.mirage-digital-loyalty-title {
  font-size: 2.4vw;
  color: #1e1e1e;
  font-weight: 800;
  margin-bottom: 1.2vw;
}
.mirage-digital-loyalty-text {
  font-size: 1.05vw;
  color: #333;
  margin-bottom: 1.5vw;
  line-height: 1.7vw;
}
.mirage-digital-loyalty-list {
  list-style: none;
  padding: 0;
  font-size: 1vw;
  line-height: 1.8vw;
  color: #222;
}
.mirage-digital-loyalty-list li {
  margin-bottom: 0.7vw;
  display: flex;
  align-items: center;
}
.mirage-digital-loyalty-list li::before {
  margin-right: 0.6vw;
  color: #24c97b;
}
.mirage-working-section {
  background-color: #f79c05;
  padding: 5vw 3vw;
}
.mirage-working-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 70vw;
  margin: 0 auto;
  gap: 3vw;
}
.mirage-working-text {
  flex: 1 1 50%;
  color: #fff;
}
.mirage-working-title {
  font-size: 2.8vw;
  font-weight: 800;
  margin-bottom: 1.5vw;
}
.mirage-working-paragraph {
  font-size: 1.1vw;
  line-height: 1.8vw;
  margin-bottom: 1.2vw;
}
.mirage-working-image {
  flex: 1 1 40%;
  text-align: center;
}
.mirage-working-image img {
  max-width: 100%;
  border-radius: 0.6vw;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.2);
}
.mirage-benefits-section {
  background-color: #f5f5f5;
  padding: 4vw 3vw;
}
.mirage-benefits-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 80vw;
  margin: 0 auto;
}
.mirage-benefits-title {
  flex: 1 1 35%;
}
.mirage-benefits-title h2 {
  font-size: 3vw;
  margin-top: 8vw;
  color: #f26522;
  font-weight: 800;
}
.mirage-benefits-list {
  flex: 1 1 60%;
  list-style: none;
  padding: 0;
  font-size: 1.1vw;
  line-height: 2vw;
  color: #333;
}
.mirage-benefits-list li {
  margin-bottom: 1vw;
  display: flex;
  align-items: center;
}
.mirage-benefits-list li::before {
  margin-right: 0.8vw;
  color: #00c97e;
  font-size: 1.2vw;
}
.mirage-contact-section {
  background: #051932;
  color: #fff;
  padding: 5vw 3vw;
  padding-top: 10vw;
}
.mirage-contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3vw;
  max-width: 1200px;
  margin: auto;
}
.mirage-contact-info {
  flex: 1 1 40%;
}
.mirage-contact-title {
  font-size: 2.5vw;
  color: #ff6a00;
  margin-bottom: 1vw;
}
.mirage-contact-text {
  font-size: 1.1vw;
  margin-bottom: 2vw;
  color: #ccc;
}
.mirage-contact-list {
  list-style: none;
  padding: 0;
  font-size: 1vw;
  line-height: 2vw;
}
.mirage-contact-list li a {
  color: #00c97e;
  text-decoration: none;
}
.mirage-contact-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.mirage-contact-form input,
.mirage-contact-form textarea {
  padding: 1vw;
  border: none;
  border-radius: 0.5vw;
  background: #333;
  color: #fff;
  font-size: 1vw;
}
.mirage-contact-form button {
  background: #ff6a00;
  color: #fff;
  padding: 1vw 2vw;
  border: none;
  border-radius: 0.5vw;
  font-size: 1vw;
  cursor: pointer;
  transition: background 0.3s;
}
.mirage-contact-form button:hover {
  background: #e55b00;
}
.mirage-thankyou-section {
  background: #051932;
  color: #fff;
  padding: 6vw 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.mirage-thankyou-box {
  background: #051932;
  padding: 3vw;
  border-radius: 1vw;
  max-width: 40vw;
  text-align: center;
}
.mirage-thankyou-title {
  font-size: 2.5vw;
  color: #ff6a00;
  margin-bottom: 1vw;
}
.mirage-thankyou-text {
  font-size: 1.1vw;
  color: #ccc;
  margin-bottom: 2vw;
  line-height: 1.7vw;
}
.mirage-thankyou-button {
  display: inline-block;
  padding: 1vw 2vw;
  background: #ff6a00;
  color: #fff;
  font-size: 1vw;
  border-radius: 0.5vw;
  text-decoration: none;
  transition: background 0.3s;
}
.mirage-thankyou-button:hover {
  background: #e55b00;
}
.mirage-register-section {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vw 2vw;
  min-height: 110vh;
}
.mirage-register-box {
  background: #1a1a1a;
  border: 2px solid #ff6a00;
  padding: 3vw;
  border-radius: 1vw;
  max-width: 35vw;
  width: 100%;
  box-shadow: 0 0 1vw rgba(255, 106, 0, 0.4);
  text-align: center;
}
.mirage-register-title {
  font-size: 2.5vw;
  color: #ff6a00;
  margin-bottom: 2vw;
}
.mirage-register-form input {
  width: 100%;
  padding: 1vw;
  margin-bottom: 1.5vw;
  border: none;
  border-radius: 0.5vw;
  background: #333;
  color: #fff;
  font-size: 1vw;
}
.mirage-register-button {
  width: 100%;
  padding: 1vw;
  background: #ff6a00;
  border: none;
  border-radius: 0.5vw;
  color: #fff;
  font-size: 1.2vw;
  cursor: pointer;
  transition: background 0.3s;
}
.mirage-register-button:hover {
  background: #e65c00;
}
.mirage-register-login {
  color: #ccc;
  font-size: 1vw;
  margin-top: 1vw;
}
.mirage-register-login a {
  color: #ff6a00;
  text-decoration: underline;
}
.mirage-register-thankyou-section {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vw 2vw;
  min-height: 100vh;
}
.mirage-register-thankyou-box {
  background: #1a1a1a;
  border: 2px solid #ff6a00;
  padding: 3vw;
  border-radius: 1vw;
  max-width: 40vw;
  width: 100%;
  box-shadow: 0 0 1vw rgba(255, 106, 0, 0.4);
  text-align: center;
}
.mirage-register-thankyou-title {
  font-size: 2.5vw;
  color: #ff6a00;
  margin-bottom: 1.5vw;
}
.mirage-register-thankyou-subtitle {
  font-size: 1.2vw;
  color: #ccc;
  margin-bottom: 2vw;
  line-height: 1.8vw;
}
.mirage-register-back-button {
  display: inline-block;
  padding: 1vw 2vw;
  background: #ff6a00;
  color: #fff;
  border-radius: 0.5vw;
  text-decoration: none;
  font-size: 1vw;
  transition: background 0.3s;
}
.mirage-register-back-button:hover {
  background: #e65c00;
}
.mirage-register-reminder-section {
  background-color: #0f0f0f;
  padding: 6vw 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.mirage-register-reminder-box {
  background-color: #1a1a1a;
  border: 2px solid #ffaa00;
  padding: 3vw;
  border-radius: 1vw;
  max-width: 40vw;
  text-align: center;
  box-shadow: 0 0 1vw rgba(255, 170, 0, 0.4);
}
.mirage-register-reminder-title {
  font-size: 2vw;
  color: #ffaa00;
  margin-bottom: 1vw;
}
.mirage-register-reminder-text {
  font-size: 1.1vw;
  color: #ccc;
  margin-bottom: 2vw;
}
.mirage-register-reminder-button {
  display: inline-block;
  padding: 1vw 2vw;
  background-color: #ffaa00;
  color: #000;
  border-radius: 0.5vw;
  text-decoration: none;
  font-weight: bold;
  font-size: 1vw;
  transition: background 0.3s;
}
.mirage-register-reminder-button:hover {
  background-color: #e69500;
}
.mirage-privacy-wrapper {
  background-color: #0e0e0e;
  color: #fff;
  padding: 5vw 2vw;
  padding-top: 8vw;
  font-family: "Segoe UI", sans-serif;
}
.mirage-privacy-container {
  max-width: 70vw;
  margin: 0 auto;
  background-color: #1a1a1a;
  border: 0.1vw solid #ffaa00;
  padding: 3vw;
  border-radius: 1vw;
  box-shadow: 0 0 1vw rgba(255, 170, 0, 0.3);
}
.mirage-privacy-title {
  font-size: 3vw;
  text-transform: uppercase;
  color: #ffaa00;
  margin-bottom: 0.5vw;
  border-bottom: 0.3vw solid #ffaa00;
  padding-bottom: 0.5vw;
  text-align: center;
}
.mirage-privacy-updated {
  text-align: center;
  color: #aaa;
  font-size: 1vw;
  margin-bottom: 2vw;
}
.mirage-privacy-heading {
  font-size: 1.6vw;
  margin-top: 2vw;
  color: #ffaa00;
  border-left: 0.3vw solid #ffaa00;
  padding-left: 1vw;
}
.mirage-privacy-list {
  margin-left: 2vw;
  list-style-type: disc;
  font-size: 1.1vw;
  margin-top: 1vw;
}
.mirage-privacy-list li {
  margin-bottom: 0.5vw;
}
.mirage-privacy-footer {
  margin-top: 3vw;
  text-align: center;
  font-size: 1vw;
  color: #ccc;
}
.mirage-privacy-footer a {
  color: #ffaa00;
  text-decoration: underline;
}
.mirage-blog-section {
  padding: 5vw;
  background: #eaf1f8;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.mirage-blog-title {
  font-size: 3vw;
  text-align: center;
  margin-bottom: 3vw;
  color: #1a3c6b;
  font-weight: 700;
}
.mirage-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
  gap: 2vw;
}
.mirage-blog-card {
  background: #ffffff;
  border-radius: 1.5vw;
  padding: 2.5vw;
  box-shadow: 0 1.2vw 2.4vw rgba(26, 60, 107, 0.15);
  border-top: 5px solid #3b82f6;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mirage-blog-card:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 1.8vw 3vw rgba(26, 60, 107, 0.25);
}
.mirage-blog-head {
  font-size: 1.6vw;
  color: #12345a;
  margin-bottom: 1vw;
  font-weight: 600;
  line-height: 1.3;
}
.mirage-blog-text {
  font-size: 1.1vw;
  color: #445c7c;
  line-height: 1.7;
  margin-bottom: 2vw;
}
.mirage-blog-btn {
  align-self: flex-start;
  padding: 0.8vw 2vw;
  background: linear-gradient(45deg, #3b82f6, #60a5fa);
  color: white;
  border: none;
  border-radius: 0.6vw;
  font-size: 1vw;
  text-decoration: none;
  transition: background 0.3s ease;
}
.mirage-blog-btn:hover {
  background: linear-gradient(45deg, #2563eb, #3b82f6);
}
.mirage-blog-about-article {
  padding: 2vw;
  background-color: #0d1117;
  color: #e6e6e6;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 1.1vw;
  line-height: 1.6;
}

.mirage-blog-about-article h3 {
  color: #58a6ff;
  margin-top: 2vw;
  margin-bottom: 1vw;
  font-size: 2vw;
}

.mirage-blog-about-article p {
  margin-bottom: 1.5vw;
  color: #d0d0d0;
}

.mirage-blog-about-article ul,
.mirage-blog-about-article ol {
  margin-left: 2vw;
  padding-left: 2vw;
}

.mirage-blog-about-article li {
  margin-bottom: 1vw;
}

.mirage-blog-about-article strong {
  color: #9cdcfe;
}
@media (max-width: 768px) {
  .mirage-desktop-nav,
  .mirage-header-buttons {
    display: none;
  }
  .mirage-burger {
    display: flex;
    margin-left: auto;
  }
  .mirage-logo img {
    height: 12vw;
    width: 20vw;
    filter: invert(1);
    cursor: pointer;
  }
  .mirage-mobile-nav {
    padding: 4vw 5vw;
    gap: 2vw;
  }
  .mirage-mobile-nav summary {
    font-size: 5vw;
  }
  .mirage-mobile-nav details a {
    font-size: 6.2vw;
  }
  .mirage-mobile-nav > a {
    font-size: 5vw;
    margin-top: 2vw;
  }
  .intro-topline {
    font-size: 8.2vw;
    color: orange;
    font-weight: bold;
    margin-bottom: 1vw;
  }
  .intro-title {
    font-size: 9.5vw;
    font-weight: 800;
    line-height: 1.2;
  }
  .intro-subline {
    font-size: 5vw;
    margin-top: 1.5vw;
    color: orange;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .mirage-about-section {
    display: flex;
    justify-content: space-between;
    background: #f0f2f5;
    padding: 5vw 5vw;
    gap: 4vw;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .mirage-about-image-wrapper {
    flex: 1;
    max-width: 100%;
    position: relative;
  }
  .mirage-about-overlay-text {
    position: absolute;
    bottom: 2vw;
    left: 2vw;
    color: white;
    font-size: 5.8vw;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    pointer-events: none;
    transition: transform 0.3s ease;
  }
  .mirage-about-text {
    flex: 1;
    max-width: 85%;
  }
  .mirage-about-title {
    font-size: 7.8vw;
    font-weight: 800;
    margin-bottom: 1.5vw;
    color: #111;
  }
  .mirage-about-paragraph {
    font-size: 4.1vw;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2vw;
  }
  .mirage-about-btn {
    display: inline-block;
    padding: 3vw 6vw;
    font-size: 4vw;
    background: #001f3f;
    color: #fff;
    border-radius: 3vw;
    text-decoration: none;
    margin-top: 1vw;
    transition: background 0.3s ease;
  }
  .mirage-clients-title {
    font-size: 7.4vw;
    font-weight: 800;
    margin-bottom: 3vw;
    color: #111;
  }
  .mirage-services-title {
    font-size: 5.8vw;
    color: white;
    margin-bottom: 2vw;
    text-align: center;
    font-weight: 900;
    margin-left: 5vw;
    text-transform: uppercase;
    border-bottom: 0.4vw solid orange;
    display: inline-block;
    padding-bottom: 0.5vw;
  }
  .mirage-service-card {
    flex: 0 0 65vw;
    height: 95vw;
    background-size: cover;
    background-position: center;
    color: white;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 4px solid orange;
    transition: transform 0.3s ease;
  }
  .mirage-service-content h3 {
    font-size: 6.5vw;
    font-weight: 800;
    margin: 0 0 1vw;
  }
  .mirage-service-content p {
    font-size: 3.95vw;
    color: #ccc;
    margin: 0 0 1.5vw;
  }
  .mirage-plus {
    background: orange;
    border-radius: 50%;
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5vw;
    color: white;
    position: absolute;
    bottom: 1vw;
    right: 1vw;
  }
  .mirage-footer-logo img {
    height: 12vw;
    width: 22vw;
    filter: invert(1);
    cursor: pointer;
  }
  .mirage-footer {
    background-color: #051932;
    color: white;
    padding: 3vw 5vw;
    font-size: 4vw;
  }
  .mirage-footer-links li::before {
    content: "▪";
    color: orange;
    position: absolute;
    left: -1vw;
  }
  .mirage-carousel-strip img {
    height: 15vw;
    width: 20vw;
    margin-right: 2vw;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  .mirage-footer-copy {
    text-align: center;
    font-size: 2.9vw;
    color: #aaa;
    margin-top: 2vw;
    border-top: 1px solid #2a2a2a;
    padding-top: 1vw;
  }
  .mirage-people-header {
    background-color: #0b132b;
    padding: 5vw 10vw;
    padding-top: 16vw;
    text-align: left;
  }
  .mirage-executive-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 3vw;
    justify-content: space-between;
  }
  .mirage-executive-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .mirage-orange-btn {
    display: inline-block;
    border: 2px solid orange;
    padding: 1vw 2vw;
    color: orange;
    font-size: 4.2vw;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2vw;
    border-radius: 0.3vw;
    transition: all 0.3s ease;
  }
  .mirage-executive-title {
    font-size: 6.8vw;
    font-weight: 900;
    color: #0b132b;
    margin-bottom: 1vw;
    text-transform: uppercase;
  }
  .mirage-divider {
    width: 75vw;
    height: 0.78vw;
    background-color: orange;
    border: none;
    margin-bottom: 1.5vw;
  }
  .mirage-executive-text {
    font-size: 4.1vw;
    line-height: 4.8vw;
    color: #333;
  }
  .mirage-executives-title {
    font-size: 4.8vw;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .executive-card {
    max-width: 80vw;
    background: #fff;
    text-align: center;
  }
  .exec-name {
    font-size: 8vw;
    font-weight: 900;
    color: #0f1c3f;
    margin-top: 1.2vw;
  }
  .exec-position {
    color: #ff7b00;
    font-size: 5vw;
    margin-bottom: 0.5vw;
    text-align: center;
  }
  .exec-divider {
    border: none;
    border-bottom: 0.5vw solid #ffaa00;
    width: 100%;
    margin: 0.5vw 0;
  }
  .exec-description {
    color: #2e2e2e;
    font-size: 4vw;
    text-align: justify;
    line-height: 1.5;
    padding: 0 1vw;
  }
  .exec-connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
    border: 0.1vw solid #ffaa00;
    padding: 0.8vw 2vw;
    border-radius: 0.4vw;
    color: #ffaa00;
    font-size: 4vw;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    margin-top: 1vw;
  }
  .principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60vw, 1fr));
    gap: 2vw;
    padding: 3vw;
  }
  .principle-card h3 {
    font-size: 7.5vw;
    color: #ff6a00;
    font-weight: 700;
    margin-bottom: 1vw;
  }
  .principle-card p {
    font-size: 5vw;
    line-height: 8.5vw;
    color: #eee;
  }
  .mirage-quality-support-header {
    background: linear-gradient(to right, #ffaa00, #ff6a00);
    color: #fff;
    font-size: 6vw;
    font-weight: 800;
    padding: 1vw 2vw;
    max-width: fit-content;
    margin-bottom: 1.5vw;
    text-transform: uppercase;
  }
  .mirage-quality-support-paragraph {
    color: #222;
    font-size: 4.05vw;
    line-height: 5.8vw;
    text-align: justify;
    max-width: 100%;
  }
  .mirage-card {
    background-size: cover;
    background-position: center;
    border-radius: 1vw;
    padding: 2vw;
    color: #fff;
    min-height: 90vw;
    width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 0.4vw 1vw rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    position: relative;
    margin: 0 auto;
  }
  .mirage-card h3 {
    font-size: 4.6vw;
    font-weight: bold;
    margin: 0 0 1vw;
    color: #fff;
    background: linear-gradient(90deg, #ff9000, #ff5c00);
    display: inline-block;
    padding: 0.2vw 0.8vw;
    border-radius: 0.3vw;
  }
  .mirage-card p {
    font-size: 5vw;
    line-height: 4.5vw;
    background: rgba(0, 0, 0, 0.6);
    padding: 1vw;
    border-radius: 0.5vw;
  }
  .mirage-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50vw, 1fr));
    gap: 3vw;
  }
  .mirage-support-title {
    font-size: 6.8vw;
    color: #16203e;
    font-weight: 800;
    margin-bottom: 0.5vw;
  }
  .mirage-support-divider {
    width: 70vw;
    border: 0;
    border-top: 0.3vw solid #ffaa00;
    margin-bottom: 1.5vw;
  }
  .mirage-support-text {
    font-size: 4vw;
    color: #333;
    line-height: 1.6;
  }
  .mirage-training-title {
    color: #e8501d;
    font-size: 7vw;
    font-weight: bold;
    margin-bottom: 2vw;
    text-transform: uppercase;
  }
  .mirage-training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(55vw, 1fr));
    gap: 1.5vw;
    margin-bottom: 2vw;
  }
  .mirage-training-card h3 {
    color: #ff7a00;
    font-size: 4.4vw;
    margin-bottom: 0.5vw;
  }
  .mirage-training-card {
    position: relative;
    height: 25vw;
    background-size: cover;
    background-position: center;
    padding-bottom: 2vw;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease;
  }
  .mirage-training-card p {
    font-size: 3.95vw;
    line-height: 1.5;
  }
  .mirage-training-button {
    display: inline-block;
    background: #ff9c00;
    color: #fff;
    padding: 1vw 2vw;
    font-size: 4vw;
    border-radius: 0.5vw;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
  }
  .mirage-gaming-management-title {
    font-size: 8.8vw;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.2vw;
  }
  .mirage-gaming-management-subtitle {
    font-size: 5.1vw;
    color: #eee;
    margin-bottom: 2.2vw;
    line-height: 6.7vw;
  }
  .mirage-gaming-management-line {
    display: inline-block;
    background: #ff9100;
    padding: 0.7vw 1.5vw;
    border-radius: 0.4vw;
    font-weight: 600;
    font-size: 5.2vw;
    margin-bottom: 2.5vw;
  }
  .mirage-gaming-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35vw, 1fr));
    gap: 2vw;
  }
  .mirage-gaming-card-title {
    font-size: 6.4vw;
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 0.7vw;
  }
  .mirage-gaming-icon {
    width: 10.5vw;
    height: auto;
    margin-bottom: 1vw;
  }
  .mirage-gaming-card-desc {
    font-size: 4vw;
    line-height: 4.5vw;
    color: #444;
  }
  .mirage-digital-loyalty-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
    align-items: center;
    justify-content: center;
    max-width: 120vw;
    flex-direction: column;
    margin: 0 auto;
  }
  .mirage-digital-loyalty-title {
    font-size: 6.4vw;
    color: #1e1e1e;
    font-weight: 800;
    margin-bottom: 1.2vw;
  }
  .mirage-digital-loyalty-text {
    font-size: 5.05vw;
    color: #333;
    margin-bottom: 1.5vw;
    line-height: 5.7vw;
  }
  .mirage-digital-loyalty-list {
    list-style: none;
    padding: 0;
    font-size: 4vw;
    line-height: 5.8vw;
    color: #222;
  }
  .mirage-working-title {
    font-size: 9.8vw;
    font-weight: 800;
    margin-bottom: 1.5vw;
  }
  .mirage-working-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 90vw;
    margin: 0 auto;
    flex-direction: column;
    gap: 3vw;
  }
  .mirage-working-paragraph {
    font-size: 6.1vw;
    line-height: 7.8vw;
    margin-bottom: 1.2vw;
  }
  .mirage-benefits-list {
    flex: 1 1 60%;
    list-style: none;
    padding: 0;
    font-size: 4.1vw;
    line-height: 5vw;
    color: #333;
  }
  .mirage-benefits-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 80vw;
    flex-direction: column;
    margin: 0 auto;
  }
  .mirage-benefits-title h2 {
    font-size: 8vw;
    margin-top: 8vw;
    color: #f26522;
    font-weight: 800;
  }
  .mirage-contact-section {
    background: #051932;
    color: #fff;
    padding: 5vw 3vw;
    padding-top: 20vw;
  }
  .mirage-contact-title {
    font-size: 6.5vw;
    color: #ff6a00;
    margin-bottom: 1vw;
  }
  .mirage-contact-text {
    font-size: 4.1vw;
    margin-bottom: 2vw;
    color: #ccc;
  }
  .mirage-contact-form input,
  .mirage-contact-form textarea {
    padding: 2vw 1vw;
    border: none;
    border-radius: 0.5vw;
    background: #333;
    color: #fff;
    font-size: 5vw;
  }
  .mirage-contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3vw;
    flex-direction: column;
    max-width: 90vw;
    margin: auto;
  }
  .mirage-contact-list {
    list-style: none;
    padding: 0;
    font-size: 5vw;
    line-height: 7vw;
  }
  .mirage-contact-form button {
    background: #ff6a00;
    color: #fff;
    padding: 2vw 2vw;
    border: none;
    border-radius: 0.5vw;
    font-size: 4vw;
    cursor: pointer;
    transition: background 0.3s;
  }
  .mirage-register-box {
    background: #1a1a1a;
    border: 2px solid #ff6a00;
    padding: 3vw;
    border-radius: 1vw;
    max-width: 90vw;
    width: 100%;
    box-shadow: 0 0 1vw rgba(255, 106, 0, 0.4);
    text-align: center;
  }
  .mirage-register-title {
    font-size: 7.5vw;
    color: #ff6a00;
    margin-bottom: 2vw;
  }
  .mirage-register-form input {
    width: 100%;
    padding: 2vw 1vw;
    margin-bottom: 1.5vw;
    border: none;
    border-radius: 0.5vw;
    background: #333;
    color: #fff;
    font-size: 5vw;
  }
  .mirage-register-button {
    width: 100%;
    padding: 1vw;
    background: #ff6a00;
    border: none;
    border-radius: 0.5vw;
    color: #fff;
    font-size: 5.2vw;
    cursor: pointer;
    transition: background 0.3s;
  }
  .mirage-register-login {
    color: #ccc;
    font-size: 4vw;
    margin-top: 3vw;
  }
  .mirage-register-thankyou-box {
    background: #1a1a1a;
    border: 2px solid #ff6a00;
    padding: 3vw;
    border-radius: 1vw;
    max-width: 75vw;
    width: 100%;
    box-shadow: 0 0 1vw rgba(255, 106, 0, 0.4);
    text-align: center;
  }
  .mirage-register-thankyou-title {
    font-size: 8.5vw;
    color: #ff6a00;
    margin-bottom: 1.5vw;
  }
  .mirage-register-thankyou-subtitle {
    font-size: 6.2vw;
    color: #ccc;
    margin-bottom: 2vw;
    line-height: 5.8vw;
  }
  .mirage-register-back-button {
    display: inline-block;
    padding: 1vw 2vw;
    background: #ff6a00;
    color: #fff;
    border-radius: 0.5vw;
    text-decoration: none;
    font-size: 4vw;
    transition: background 0.3s;
  }
  .mirage-register-reminder-box {
    background-color: #1a1a1a;
    border: 2px solid #ffaa00;
    padding: 3vw;
    border-radius: 1vw;
    max-width: 75vw;
    text-align: center;
    box-shadow: 0 0 1vw rgba(255, 170, 0, 0.4);
  }
  .mirage-register-reminder-title {
    font-size: 8vw;
    color: #ffaa00;
    margin-bottom: 1vw;
  }
  .mirage-register-reminder-text {
    font-size: 5.1vw;
    color: #ccc;
    margin-bottom: 2vw;
  }
  .mirage-register-reminder-button {
    display: inline-block;
    padding: 1vw 2vw;
    background-color: #ffaa00;
    color: #000;
    border-radius: 0.5vw;
    text-decoration: none;
    font-weight: bold;
    font-size: 5vw;
    transition: background 0.3s;
  }
  .mirage-thankyou-box {
    background: #051932;
    padding: 3vw;
    border-radius: 1vw;
    max-width: 75vw;
    text-align: center;
  }
  .mirage-thankyou-title {
    font-size: 8.5vw;
    color: #ff6a00;
    margin-bottom: 1vw;
  }
  .mirage-thankyou-text {
    font-size: 6.1vw;
    color: #ccc;
    margin-bottom: 2vw;
    line-height: 5.7vw;
  }
  .mirage-thankyou-button {
    display: inline-block;
    padding: 1vw 2vw;
    background: #ff6a00;
    color: #fff;
    font-size: 4vw;
    border-radius: 0.5vw;
    text-decoration: none;
    transition: background 0.3s;
  }
  .mirage-privacy-wrapper {
    background-color: #0e0e0e;
    color: #fff;
    padding: 5vw 2vw;
    padding-top: 20vw;
    font-family: "Segoe UI", sans-serif;
  }
  .mirage-privacy-container {
    max-width: 100vw;
    margin: 0 auto;
    background-color: #1a1a1a;
    border: 0.1vw solid #ffaa00;
    padding: 3vw;
    border-radius: 1vw;
    box-shadow: 0 0 1vw rgba(255, 170, 0, 0.3);
  }
  .mirage-privacy-title {
    font-size: 8vw;
    text-transform: uppercase;
    color: #ffaa00;
    margin-bottom: 0.5vw;
    border-bottom: 0.3vw solid #ffaa00;
    padding-bottom: 0.5vw;
    text-align: center;
  }
  .mirage-privacy-updated {
    text-align: center;
    color: #aaa;
    font-size: 5vw;
    margin-bottom: 2vw;
  }
  .mirage-privacy-heading {
    font-size: 6.6vw;
    margin-top: 2vw;
    color: #ffaa00;
    border-left: 0.8vw solid #ffaa00;
    padding-left: 1vw;
  }
  .mirage-privacy-list {
    margin-left: 2vw;
    list-style-type: disc;
    font-size: 4.1vw;
    margin-top: 1vw;
    margin-left: 4vw;
  }
  .mirage-privacy-footer {
    margin-top: 3vw;
    text-align: center;
    font-size: 4vw;
    color: #ccc;
  }
  .mirage-blog-title {
    font-size: 8vw;
    text-align: center;
    margin-bottom: 3vw;
    color: #1a3c6b;
    font-weight: 700;
  }
  .mirage-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50vw, 1fr));
    gap: 2vw;
  }
  .mirage-blog-head {
    font-size: 5.6vw;
    color: #12345a;
    margin-bottom: 1vw;
    font-weight: 600;
    line-height: 1.3;
  }
  .mirage-blog-text {
    font-size: 5.1vw;
    color: #445c7c;
    line-height: 1.7;
    margin-bottom: 2vw;
  }
  .mirage-blog-btn {
    align-self: flex-start;
    padding: 0.8vw 2vw;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    color: white;
    border: none;
    border-radius: 0.6vw;
    font-size: 4vw;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .mirage-blog-about-article h3 {
    color: #58a6ff;
    margin-top: 2vw;
    margin-bottom: 1vw;
    font-size: 7vw;
  }
  .mirage-blog-about-article {
    padding: 2vw;
    background-color: #0d1117;
    color: #e6e6e6;
    font-family: "Segoe UI", Tahoma, sans-serif;
    font-size: 5.1vw;
    line-height: 1.6;
  }
}
