:root {
  --primary-color-1: #FF6B35;
  --secondary-color: #004E89;
  --purple-color: #9D42F8;
  --dark-bg: #0A0E27;
  --card-bg: #1A1F3A;
  --text-light: #EAEAEA;
  --text-muted: #9CA3AF;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --primary-color: var(--purple-color);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
}

/* Header Styles */
.navbar {
  background-color: rgba(10, 14, 39, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--text-light) !important;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active::after,
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.navbar-toggler:hover {
  background-color: #e55a2b !important;
  border-color: #e55a2b !important;
  color: var(--text-light) !important;
}

.auth-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-auth {
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-login {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-login:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-register {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
}

.btn-register:hover {
  background-color: #e55a2b;
  border-color: #e55a2b;
  color: white;
}

.language-switcher {
  position: relative;
  margin-left: 15px;
}

.language-btn {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  min-width: 120px;
  display: none;
  z-index: 1001;
}

.language-dropdown.show {
  display: block;
}

.language-option {
  padding: 8px 20px;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.language-option:hover {
  background-color: rgba(255, 107, 53, 0.2);
  color: var(--primary-color);
}

/* Hero Section with Slider */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  /*filter: brightness(1);*/
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.slide-content {
  text-align: center;
  z-index: 2;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 800px;
}

.slide h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.slide p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  color: white;
}

.btn-primary-custom:hover {
  background-color: #e55a2b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
  color: white;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.slider-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  font-size: 1.2rem;
}

.slider-nav:hover {
  background-color: var(--primary-color);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Image Slider Styles */
.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.image-slide.active {
  opacity: 1;
}

.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.image-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.image-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  font-size: 1rem;
}

.image-slider-nav:hover {
  background-color: var(--primary-color);
}

.image-slider-prev {
  left: 15px;
}

.image-slider-next {
  right: 15px;
}

/* Welcome Section */
.welcome-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Featured Coupons Section */
.featured-coupons-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.coupon-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.coupon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.coupon-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
}

.coupon-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.coupon-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.coupon-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.coupon-description {
  color: var(--text-muted);
  margin-bottom: 15px;
  flex-grow: 1;
}

.coupon-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.coupon-link {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.coupon-link:hover {
  background-color: #003d6d;
  color: white;
  transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Providers Section */
.providers-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.provider-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.provider-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.provider-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.provider-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.provider-card:hover .provider-logo img {
  filter: grayscale(0%);
}

.provider-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-light);
  text-align: center;
}

/* New Way Section */
.new-way-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.new-way-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.new-way-text {
  flex: 1;
}

.new-way-image {
  flex: 1;
  position: relative;
  height: 500px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 1.2rem;
}

/* Media Section */
.media-section {
  padding: 0;
  background-color: var(--dark-bg);
}

.media-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.media-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.media-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Marketplace Section */
.marketplace-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.marketplace-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.marketplace-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.marketplace-image {
  height: 200px;
  overflow: hidden;
}

.marketplace-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.marketplace-card:hover .marketplace-image img {
  transform: scale(1.1);
}

.marketplace-content {
  padding: 20px;
}

.marketplace-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.marketplace-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.marketplace-link {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.marketplace-link:hover {
  color: #e55a2b;
}

.marketplace-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.marketplace-link:hover i {
  transform: translateX(5px);
}

/* Demo Section */
.demo-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.demo-container {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-header {
  text-align: center;
  margin-bottom: 40px;
}

.demo-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.3);
}

.demo-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gaming__video_wrapper {
  position: absolute;
  left: 0;
  top: 0;
  padding: 30px;
  width: 100%;
  height: 100%;
}

.gaming__video_wrapper video {
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 107, 53, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  color: white;
  font-size: 2rem;
  margin-left: 5px;
}

/* Fair Section */
.fair-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.fair-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.fair-text {
  flex: 1;
}

.fair-image {
  flex: 1;
  position: relative;
  height: 500px;
}

.fair-steps {
  margin-top: 30px;
}

.fair-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-number {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

/* Token Section */
.token-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.token-container {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.token-logo {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2.5rem;
}

.token-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.token-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.token-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

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

.token-stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
}

.token-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Roadmap Section */
.roadmap-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.roadmap-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.roadmap-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.roadmap-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.right::after {
  left: -16px;
}

.roadmap-content {
  padding: 20px 30px;
  background-color: var(--card-bg);
  position: relative;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.roadmap-date {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.roadmap-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-light);
}

.member-position {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.accordion-button {
  background-color: var(--card-bg);
  color: var(--text-light);
}

.accordion-button:hover {
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

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

.accordion-item {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.accordion-body {
  background-color: var(--card-bg);
  color: var(--text-light);
}

/* Footer */
footer {
  background-color: var(--card-bg);
  padding: 50px 0 20px;
  color: var(--text-light);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

/* Section Botton Slider */
img {
  max-width: 100%;
  display: block;
}

.features {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}

.features__inner {
  opacity: 1;
  visibility: inherit;
  transform: translate(0px, 0px);
}

.features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  border-radius: 35px;
  background: var(--card-bg);
  padding: 65px 40px 90px;
}

.feature-card__img {
  margin: 0 auto 54px;
  max-width: 370px;
  position: relative;
  display: block;
}

.feature-card__img-anim {
  opacity: 0;
  visibility: inherit;
  transition: 1s;
}

.feature-card__img-static {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.feature-card:hover .feature-card__img-anim {
  opacity: 1;
}

.feature-card:hover .feature-card__img-static {
  opacity: 0;
}

.feature-card--accent {
  background: var(--yellow);
}

.feature-card--accent .text,
.feature-card--accent .title {
  color: var(--gray-dark);
}

.features__whitepaper {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 58px;
  margin-top: 92px;
}

.features__btn {
  background: var(--primary-color);
  border-radius: 50px;
  padding: 16px 48px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Mass Media Section */
.mass-media-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 0 60px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.mass-media-title span {
  color: #FFD500;
}

.mass-media-line__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-content: center;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mass-media-line__inner>a:nth-child(-n+3) {
  grid-column: span 1;
}

.mass-media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mass-media-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.mass-media-logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.mass-media-logo:hover {
  filter: none;
}

/* Section list picture*/
.experience {
  padding: 170px 0px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.experience__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.experience__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.experience__media {
  width: 30%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.experience__img-wrapper {
  position: relative;
  height: 580px;
}

.experience__img--1,
.experience__img--6 {
  z-index: 1;
}

.experience__img--2,
.experience__img--5 {
  z-index: 2;
}

.experience__img--3,
.experience__img--4 {
  z-index: 3;
}

.experience__img {
  position: absolute;
  max-width: 30vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.experience__title-wrapper {
  width: 30%;
  text-align: center;
  z-index: 2;
}

.title--md {
  font-size: 48px;
  line-height: 70px;
}

.title--outline {
  color: var(--dark-bg);
  background: -webkit-linear-gradient(0deg, rgb(167, 152, 12) 0px, rgb(167, 152, 12) 30%, rgb(157, 66, 248) 60%, rgb(157, 66, 248) 50%) text;
  -webkit-text-stroke: 4px transparent;
}

.experience__cards {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 29px;
  margin-top: 120px;
}

.experience-card {
  border-radius: 35px;
  border: 1px solid var(--gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(157, 66, 248, 0.2);
}

.experience-card__media {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.experience-card__media img {
  width: 100%;
}

.experience-card__title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.experience-card__text {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Staggered animation for cards */
.experience-card:nth-child(1).visible {
  transition-delay: 0.1s;
}

.experience-card:nth-child(2).visible {
  transition-delay: 0.2s;
}

.experience-card:nth-child(3).visible {
  transition-delay: 0.3s;
}

/* COUPONS PAGE */
/* Page Header */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Coupons Section */
.coupons-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Filter Section */
.coupon-filter li {
  margin: 0;
}

.coupon-filter li a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
}

.filter-section {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.filter-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
}

.filter-btn {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 8px 20px;
  margin: 5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.coupon-filter li a:hover,
.coupon-filter li.active a,
.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Coupon Card */
.coupon-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.coupon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.coupon-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
}

.coupon-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.coupon-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.coupon-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.coupon-description {
  color: var(--text-muted);
  margin-bottom: 15px;
  flex-grow: 1;
}

.coupon-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.coupon-link {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.coupon-link:hover {
  background-color: #003d6d;
  color: white;
  transform: translateY(-3px);
}

.coupon-expiry {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}

/* Pagination */
.pagination {
  justify-content: center;
  margin-top: 50px;
}

.page-link {
  background-color: var(--card-bg);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-link:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--card-bg);
  padding: 50px 0 20px;
  color: var(--text-light);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

/* Modal for coupon details */
.modal-content {
  background-color: var(--card-bg);
  color: var(--text-light);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close {
  filter: invert(1);
}

/* ABOUT PAGE */
/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.mission-card {
  background-color: rgba(26, 31, 58, 0.7);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.mission-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-light);
}

.member-position {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--card-bg);
  position: relative;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.timeline-date {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

/* BLOG PAGE */
/* Blog Section */
.blog-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Blog Categories */
.blog-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.category-btn {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Blog Card */
.blog-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.blog-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.blog-author {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.author-name {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-link {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: #e55a2b;
}

.blog-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Featured Post */
.featured-post {
  margin-bottom: 50px;
}

.featured-post .blog-card {
  display: flex;
  flex-direction: row;
  height: 350px;
}

.featured-post .blog-image {
  width: 50%;
  height: auto;
}

.featured-post .blog-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.newsletter-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 12px 20px;
  border-radius: 50px;
}

.newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
  color: var(--text-light);
}

.newsletter-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: white;
}

.newsletter-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
  color: white;
}

/* CONTACT PAGE */
/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.contact-form {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
  color: var(--text-light);
}

.form-label {
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-info {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 1.5rem;
}

/* Map Section */
.map-section {
  padding: 0;
  height: 400px;
}

.map-container {
  height: 100%;
  width: 100%;
}

.map-placeholder {
  height: 100%;
  width: 100%;
  background-color: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* COUPON DETAIL */ 

/* Breadcrumb */
.breadcrumb-section {
  padding: 120px 0 40px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-muted);
  content: ">";
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
  color: var(--text-light);
}

/* Coupon Detail Section */
.coupon-detail-section {
  padding: 0 0 80px;
  background-color: var(--dark-bg);
}

.coupon-detail-container {
  max-width: 1000px;
  margin: 0 auto;
}

.coupon-detail-section {
  padding: 0 0 80px;
  background-color: var(--dark-bg);
}

.coupon-detail-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Coupon Header */
.coupon-header {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.coupon-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://picsum.photos/seed/pattern/1200/400.jpg') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.coupon-header-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}

.coupon-logo-large {
  width: 150px;
  height: 150px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.coupon-logo-large img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.coupon-info {
  flex: 1;
}

.coupon-store {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.coupon-title-detail {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
}

.coupon-discount {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.coupon-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.coupon-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.coupon-meta-item i {
  color: var(--primary-color);
}

/* Coupon Details */
.coupon-details {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.details-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.tab-btn.active {
  color: var(--primary-color);
  background-color: rgba(255, 107, 53, 0.1);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-pane h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
}

.tab-pane p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.tab-pane ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.tab-pane li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-light);
}

/* How to Use Section */
.steps-container {
  margin-top: 30px;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.step-content p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Terms & Conditions */
.terms-list {
  list-style: none;
  padding: 0;
}

.terms-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.terms-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Expiry Notice */
.expiry-notice {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.expiry-notice i {
  color: var(--warning-color);
  font-size: 1.5rem;
}

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

.expiry-date {
  font-weight: bold;
  color: var(--warning-color);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-use-coupon {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e55a2b 100%);
  border: none;
  padding: 15px 40px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-use-coupon:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  color: white;
}

.btn-copy-code {
  background-color: var(--secondary-color);
  border: none;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: white;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-copy-code:hover {
  background-color: #003d6d;
  transform: translateY(-3px);
  color: white;
}

.btn-copy-code.copied {
  background-color: var(--success-color);
}

/* Coupon Code Display */
.coupon-code-display {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.code-text {
  font-family: 'Courier New', monospace;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.code-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--card-bg);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Related Coupons */
.related-coupons {
  margin-bottom: 40px;
}

.related-coupons h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-light);
  text-align: center;
}

.related-coupon-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.related-coupon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.related-coupon-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
}

.related-coupon-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.related-coupon-content {
  padding: 20px;
}

.related-coupon-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.related-coupon-discount {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.related-coupon-expiry {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.related-coupon-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.related-coupon-link:hover {
  color: #e55a2b;
}

.related-coupon-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.related-coupon-link:hover i {
  transform: translateX(5px);
}

/* Share Section */
.share-section {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  text-align: center;
}

.share-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  color: white;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.share-facebook {
  background-color: #1877f2;
}

.share-twitter {
  background-color: #1da1f2;
}

.share-linkedin {
  background-color: #0077b5;
}

.share-whatsapp {
  background-color: #25d366;
}

/* Back to Coupons Button */
.back-to-coupons {
  text-align: center;
  margin-bottom: 40px;
}

.btn-back-coupons {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-back-coupons:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Timer */
.timer-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e55a2b 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.timer-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.timer-unit {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  min-width: 80px;
}

.timer-value {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  display: block;
}

.timer-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

/* Stats */
.stats-section-detail {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.stat-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 5px;
}

.stat-label-detail {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Alert */
.alert-custom {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1001;
  max-width: 300px;
}

.alert-custom.show {
  transform: translateX(0);
}

.alert-custom.error {
  background-color: var(--error-color);
}
