@charset "UTF-8";
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  padding: 3rem 1rem;
  transition: all 0.6s ease;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 25%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, rgba(39, 39, 39, 0.5) 50%, rgb(39, 39, 39) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease;
}
.hero-section.hero-compact {
  min-height: 20vh;
  margin-bottom: 0;
  padding: 2rem 1rem 3rem 1rem;
}
.hero-section.hero-compact::before {
  opacity: 0.3;
}
.hero-section.hero-compact::after {
  opacity: 1;
  height: 60px;
}
.hero-section.hero-compact .hero-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-section.hero-compact .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.hero-section.hero-compact .floating-particles {
  opacity: 0.3;
}

@keyframes rotate-gradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.floating-particles::before, .floating-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 100px 200px 0 rgba(255, 215, 0, 0.3), 200px 50px 0 rgba(255, 215, 0, 0.4), 300px 300px 0 rgba(255, 215, 0, 0.2), 400px 100px 0 rgba(255, 215, 0, 0.3), 500px 250px 0 rgba(255, 215, 0, 0.4), 600px 150px 0 rgba(255, 215, 0, 0.2), 700px 350px 0 rgba(255, 215, 0, 0.3), 800px 80px 0 rgba(255, 215, 0, 0.4), 900px 280px 0 rgba(255, 215, 0, 0.2);
  animation: particles 25s linear infinite;
}
.floating-particles::after {
  animation-delay: -12s;
}

@keyframes particles {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-title {
  color: #ffd700;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: all 0.6s ease;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: all 0.6s ease;
}

.search-container {
  max-width: 700px;
  margin: 0 auto;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.animate-fade-in-scroll {
  animation: fadeInScroll 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScroll {
  to {
    opacity: 1;
  }
}
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 215, 0, 0.25);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  transition: all 0.4s ease;
}
.feature-icon i {
  font-size: 2rem;
  color: #ffd700;
  position: relative;
  z-index: 1;
}

.feature-title {
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.results-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  min-height: 400px;
}

.empty-state,
.message-state,
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 400px;
}

.empty-state-icon,
.message-icon {
  margin-bottom: 2rem;
}
.empty-state-icon i,
.message-icon i {
  font-size: 4rem;
  color: rgba(255, 215, 0, 0.4);
}

.wisp-logo {
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.empty-state-title,
.message-title {
  color: #ffd700;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.empty-state-description,
.message-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-start-searching {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: #1a1a1a;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.btn-start-searching i {
  transition: transform 0.3s ease;
}
.btn-start-searching:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}
.btn-start-searching:hover i {
  transform: translateY(-4px);
}
.btn-start-searching:active {
  transform: translateY(0);
}

.loading-container .loading-wisp {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
}
.loading-container .loading-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  font-weight: 500;
}

.loading-more-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 2rem;
}
.loading-more-container .loading-wisp-small {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 40px rgba(255, 140, 0, 0.4));
  animation: float 3s ease-in-out infinite;
}
.loading-more-container .loading-more-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
}

.error-state .message-icon i {
  color: rgba(220, 53, 69, 0.6);
}
.error-state .message-title {
  color: #dc3545;
}

#results-wrapper {
  animation: fadeIn 0.6s ease-out;
}

.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 215, 0, 0.5);
  font-size: 1.25rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

#search-form:focus-within .search-icon {
  color: #ffd700;
  transform: translateY(-50%) scale(1.1);
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-btn i {
  transition: transform 0.3s ease;
}
.search-btn:hover i {
  transform: translateX(4px);
}

.game-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border-radius: 12px;
}
.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.4);
}
.game-card:hover::before {
  opacity: 1;
}
.game-card:hover .game-img {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.game-card:hover .card-img-container::after {
  height: 65%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.6) 55%, rgba(0, 0, 0, 0.3) 75%, transparent 100%);
}
.game-card:hover .card-body {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.95) 30%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-bottom: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.game-card:hover .btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}
.game-card .card-img-container {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: inherit;
}
.game-card .card-img-container .game-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: all 0.4s ease;
}
.game-card .card-img-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 75%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  transition: all 0.4s ease;
  border-radius: inherit;
}
.game-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px;
  padding-bottom: 12px;
  color: white;
  z-index: 3;
  transition: all 0.4s ease;
  border-top: 1px solid rgba(232, 216, 216, 0.34);
}
.game-card .card-body .card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  height: auto;
  min-height: 2.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.game-card .card-body .btn-primary {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  transform: translateY(4px);
  opacity: 0.95;
}
.game-card .card-body .btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.game-card .card-body .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}
.game-card .card-body .btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.game-card .card-body .btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-color: rgba(40, 167, 69, 0.4);
  color: white;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  transform: translateY(0);
  opacity: 1;
}
.game-card .card-body .btn-success:hover {
  background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

@media (max-width: 768px) {
  .game-card .card-body {
    padding: 12px;
  }
  .game-card .card-body .card-title {
    font-size: 0.9rem;
    min-height: 2.4em;
  }
  .game-card .card-body .btn-primary {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}
#results-wrapper {
  overflow: visible;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
  padding-top: 12px;
  overflow: visible;
}

.results-source {
  display: contents;
}

.results-grid .col,
.results-source > div {
  overflow: visible !important;
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
@media (min-width: 1400px) {
  .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
#search-form {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: visible;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  display: flex;
}
#search-form:focus-within {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 0 3px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}
#search-form:focus-within .search-floating-label {
  transform: translateY(-1.75rem) scale(0.8);
  color: #ffd700;
}
#search-form .search-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
#search-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 50px 0 0 50px;
  border-right: none;
  transition: all 0.3s ease;
  width: 100%;
}
#search-form .form-control::placeholder {
  color: transparent;
}
#search-form .form-control:-webkit-autofill, #search-form .form-control:-webkit-autofill:hover, #search-form .form-control:-webkit-autofill:focus, #search-form .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.08) inset !important;
  -webkit-text-fill-color: #f0f0f0 !important;
  caret-color: #f0f0f0 !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important;
  color: #f0f0f0 !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  border-right: none !important;
  border-radius: 50px 0 0 50px;
  filter: none !important;
}
#search-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffffff;
  outline: none;
  box-shadow: none;
}
#search-form .form-control:focus:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.12) inset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}
#search-form .form-control:focus ~ .search-floating-label {
  transform: translateY(-1.75rem) scale(0.8);
  color: #ffd700;
}
#search-form .form-control:not(:placeholder-shown) ~ .search-floating-label {
  transform: translateY(-1.75rem) scale(0.8);
  color: #ffed4e;
}
#search-form .search-floating-label {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  pointer-events: none;
  transform-origin: left center;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 4px;
}
#search-form .btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: #1a1a1a;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 0 50px 50px 0;
  border-left: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#search-form .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
#search-form .btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  color: #000000;
}
#search-form .btn:hover::before {
  width: 300px;
  height: 300px;
}
#search-form .btn:active {
  transform: translateX(2px) scale(0.98);
}
#search-form .btn i {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  #search-form {
    max-width: 100%;
  }
  #search-form .form-control {
    padding: 14px 20px;
    font-size: 15px;
  }
  #search-form .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  #search-form .form-control {
    padding: 12px 16px;
    font-size: 14px;
  }
  #search-form .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.loading-wisp {
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 40px rgba(255, 140, 0, 0.4));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .features-section {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .feature-icon i {
    font-size: 1.5rem;
  }
  .feature-title {
    font-size: 1.25rem;
  }
  .feature-description {
    font-size: 0.95rem;
  }
  .empty-state-title,
  .message-title {
    font-size: 1.5rem;
  }
  .empty-state-description,
  .message-description {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .features-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .search-icon {
    display: none;
  }
}
.blog-promo-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.blog-promo-section.animate-fade-in-scroll {
  opacity: 1;
  transform: translateY(0);
}

.blog-promo-content {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-promo-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.5) 50%, transparent 100%);
}

.blog-promo-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}
.blog-promo-icon i {
  font-size: 2rem;
  color: #1a1a1a;
}

.blog-promo-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-promo-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  border: none;
  border-radius: 8px;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.blog-promo-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #1a1a1a;
}
.blog-promo-btn:active {
  transform: translateY(0);
}
.blog-promo-btn i {
  transition: transform 0.3s ease;
}
.blog-promo-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-promo-section {
    margin: 3rem auto;
    padding: 0 1rem;
  }
  .blog-promo-content {
    padding: 2.5rem 1.5rem;
  }
  .blog-promo-icon {
    width: 70px;
    height: 70px;
  }
  .blog-promo-icon i {
    font-size: 1.75rem;
  }
  .blog-promo-title {
    font-size: 1.75rem;
  }
  .blog-promo-description {
    font-size: 1rem;
  }
  .blog-promo-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .blog-promo-section {
    margin: 2rem auto;
  }
  .blog-promo-content {
    padding: 2rem 1rem;
  }
  .blog-promo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .blog-promo-icon i {
    font-size: 1.5rem;
  }
  .blog-promo-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .blog-promo-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .blog-promo-btn {
    width: 100%;
    justify-content: center;
  }
}
.custom-navbar {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.custom-navbar .brand-link {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}
.custom-navbar .brand-link:hover .brand-icon.wisp-logo {
  transform: scale(1.15);
  box-shadow: none;
}
.custom-navbar .brand-link:hover .brand-icon.wisp-logo .wisp-flame {
  filter: drop-shadow(0 0 15px rgb(255, 165, 0)) drop-shadow(0 0 25px rgba(255, 140, 0, 0.8)) drop-shadow(0 0 35px rgba(255, 100, 0, 0.6)) brightness(1.2);
}
.custom-navbar .brand-link:hover .brand-icon.wisp-logo .flame-outer {
  animation: flameFlareBig 1.5s ease-in-out infinite;
}
.custom-navbar .brand-link:hover .brand-icon.wisp-logo .flame-middle {
  animation: flameFlareBig 1.3s ease-in-out infinite 0.1s;
}
.custom-navbar .brand-link:hover .brand-icon.wisp-logo .flame-inner {
  animation: flameFlareBig 1.2s ease-in-out infinite 0.2s;
}
.custom-navbar .brand-link:hover .brand-icon.wisp-logo .flame-core {
  r: 10;
  opacity: 1;
}
.custom-navbar .brand-link:hover .brand-text {
  color: #ffd700;
}
.custom-navbar .brand-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}
.custom-navbar .brand-icon i {
  font-size: 1.5rem;
  color: #1a1a1a;
}
.custom-navbar .brand-icon.wisp-logo {
  background: transparent;
  box-shadow: none;
}
.custom-navbar .brand-icon.wisp-logo .wisp-flame {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 140, 0, 0.6)) drop-shadow(0 0 30px rgba(255, 100, 0, 0.4));
  transition: filter 0.3s ease;
}
.custom-navbar .brand-icon.wisp-logo .flame-outer {
  fill: url(#flameGradientOuter);
  animation: flameFlicker 2s ease-in-out infinite;
  transform-origin: 50% 90%;
}
.custom-navbar .brand-icon.wisp-logo .flame-middle {
  fill: url(#flameGradientMiddle);
  animation: flameFlicker 1.8s ease-in-out infinite 0.2s;
  transform-origin: 50% 85%;
}
.custom-navbar .brand-icon.wisp-logo .flame-inner {
  fill: url(#flameGradientInner);
  animation: flameFlicker 1.5s ease-in-out infinite 0.4s;
  transform-origin: 50% 80%;
}
.custom-navbar .brand-icon.wisp-logo .flame-core {
  fill: #fff9e6;
  animation: coreGlow 1.2s ease-in-out infinite;
  filter: blur(2px);
  transition: all 0.3s ease;
}
@keyframes flameFlicker {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
    opacity: 1;
  }
  25% {
    transform: scaleY(1.05) scaleX(0.98);
    opacity: 0.95;
  }
  50% {
    transform: scaleY(0.95) scaleX(1.02);
    opacity: 0.9;
  }
  75% {
    transform: scaleY(1.02) scaleX(0.97);
    opacity: 0.95;
  }
}
@keyframes coreGlow {
  0%, 100% {
    opacity: 1;
    r: 8;
  }
  50% {
    opacity: 0.8;
    r: 9;
  }
}
@keyframes flameFlareBig {
  0%, 100% {
    transform: scaleY(1.1) scaleX(1);
    opacity: 1;
  }
  25% {
    transform: scaleY(1.15) scaleX(0.95);
    opacity: 0.95;
  }
  50% {
    transform: scaleY(1.05) scaleX(1.05);
    opacity: 0.9;
  }
  75% {
    transform: scaleY(1.12) scaleX(0.96);
    opacity: 0.95;
  }
}
.custom-navbar .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}
.custom-navbar .navbar-nav {
  gap: 0.5rem;
}
.custom-navbar .nav-item-btn {
  color: white !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.625rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}
.custom-navbar .nav-item-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.custom-navbar .nav-item-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}
.custom-navbar .nav-item-btn:hover i {
  transform: scale(1.1);
}
.custom-navbar .nav-item-btn:active {
  transform: translateY(0);
}
.custom-navbar .wishlist-btn {
  background: rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.3);
}
.custom-navbar .wishlist-btn:hover {
  background: rgba(255, 140, 0, 0.25);
  border-color: rgba(255, 140, 0, 0.5);
  color: #ffa500 !important;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.custom-navbar .login-btn {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  border-color: rgba(255, 215, 0, 0.4);
  color: #1a1a1a !important;
  font-weight: 600;
}
.custom-navbar .login-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #000000 !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}
.custom-navbar .logout-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #f0f0f0 !important;
}
.custom-navbar .language-dropdown {
  position: relative;
}
.custom-navbar .language-dropdown .dropdown-toggle {
  cursor: pointer;
}
.custom-navbar .language-dropdown .dropdown-toggle::after {
  margin-left: 0.5rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.custom-navbar .language-dropdown .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.custom-navbar .language-dropdown .dropdown-menu {
  position: absolute !important;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  min-width: 160px;
  z-index: 1000;
}
.custom-navbar .language-dropdown .dropdown-menu .dropdown-item {
  color: white;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}
.custom-navbar .language-dropdown .dropdown-menu .dropdown-item .flag-icon {
  font-size: 1.25rem;
}
.custom-navbar .language-dropdown .dropdown-menu .dropdown-item:hover {
  color: #ffd700;
  transform: translateX(4px);
  background-color: transparent;
}
.custom-navbar .language-dropdown .dropdown-menu .dropdown-item.active {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  font-weight: 600;
}
.custom-navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.custom-navbar.scrolled .brand-icon {
  width: 42px;
  height: 42px;
}
.custom-navbar.scrolled .brand-icon i {
  font-size: 1.3rem;
}
.custom-navbar.scrolled .brand-text {
  font-size: 1.3rem;
}

@media (max-width: 992px) {
  .custom-navbar .nav-item-btn {
    padding: 0.625rem 0.75rem;
  }
  .custom-navbar .nav-item-btn span {
    display: none !important;
  }
  .custom-navbar .nav-item-btn i {
    margin: 0 !important;
  }
  .custom-navbar .language-dropdown .dropdown-toggle span {
    display: none !important;
  }
  .custom-navbar .language-dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    min-width: 140px;
    max-width: 200px;
    padding: 0.5rem;
    margin-top: 0.5rem !important;
  }
  .custom-navbar .language-dropdown .dropdown-menu .dropdown-item {
    padding: 0.625rem 0.75rem;
    font-size: 0.9rem;
  }
  .custom-navbar .language-dropdown .dropdown-menu .dropdown-item .flag-icon {
    font-size: 1.25rem;
  }
  .custom-navbar .language-dropdown .dropdown-menu .dropdown-item:hover {
    transform: translateX(0);
  }
}
.navbar-toggler {
  border: none;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}
.navbar-toggler i {
  color: #ffd700;
  font-size: 1.25rem;
}
.navbar-toggler:hover {
  background: rgba(255, 215, 0, 0.2);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  outline: none;
}

@media (max-width: 576px) {
  .custom-navbar {
    padding: 0.5rem 0;
  }
  .custom-navbar .brand-icon {
    width: 40px;
    height: 40px;
  }
  .custom-navbar .brand-icon i {
    font-size: 1.25rem;
  }
  .custom-navbar .brand-text {
    font-size: 1.25rem;
  }
  .custom-navbar .nav-item-btn {
    padding: 0.5rem 0.625rem;
    font-size: 0.9rem;
  }
  .custom-navbar .nav-item-btn i {
    font-size: 1rem;
  }
}
body.offcanvas-open {
  padding-right: 0 !important;
}

.custom-navbar {
  padding-right: 0 !important;
}

.custom-offcanvas {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.98) 0%, rgba(39, 39, 39, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 280px !important;
  width: 280px !important;
  height: 100vh !important;
  top: 0 !important;
  position: fixed !important;
}
.custom-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 1.25rem 1rem;
}
.custom-offcanvas .offcanvas-header .offcanvas-title {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.custom-offcanvas .offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.custom-offcanvas .offcanvas-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.custom-offcanvas .offcanvas-body {
  padding: 1rem 0;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}
.custom-offcanvas .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.custom-offcanvas .mobile-nav .mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.custom-offcanvas .mobile-nav .mobile-nav-item i {
  font-size: 1.25rem;
  color: #ffd700;
  width: 24px;
  text-align: center;
}
.custom-offcanvas .mobile-nav .mobile-nav-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-left-color: #ffd700;
  color: #ffd700;
  padding-left: 1.25rem;
}
.custom-offcanvas .mobile-nav .mobile-nav-item:active {
  background: rgba(255, 215, 0, 0.15);
}
.custom-offcanvas .mobile-nav .mobile-language-section {
  cursor: pointer;
  opacity: 0.9;
  position: relative;
}
.custom-offcanvas .mobile-nav .mobile-language-section .collapse-icon {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.custom-offcanvas .mobile-nav .mobile-language-section.collapsed .collapse-icon {
  transform: rotate(0deg);
}
.custom-offcanvas .mobile-nav .mobile-language-section:not(.collapsed) .collapse-icon {
  transform: rotate(180deg);
}
.custom-offcanvas .mobile-nav .mobile-language-section:hover {
  background: rgba(255, 215, 0, 0.1);
  border-left-color: #ffd700;
  color: #ffd700;
  padding-left: 1.25rem;
}
.custom-offcanvas .mobile-nav .mobile-language-collapse {
  padding: 0.25rem 0;
  margin-left: 2rem;
}
.custom-offcanvas .mobile-nav .mobile-language-collapse .mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none !important;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.custom-offcanvas .mobile-nav .mobile-language-collapse .mobile-lang-option .flag-icon {
  font-size: 1.25rem;
}
.custom-offcanvas .mobile-nav .mobile-language-collapse .mobile-lang-option:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}
.custom-offcanvas .mobile-nav .mobile-language-collapse .mobile-lang-option.active {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  font-weight: 600;
}
.custom-offcanvas .mobile-nav .mobile-language-options {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-left: 2rem;
  padding: 0.25rem 0;
}
.custom-offcanvas .mobile-nav .mobile-language-options .mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none !important;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.custom-offcanvas .mobile-nav .mobile-language-options .mobile-lang-option .flag-icon {
  font-size: 1.25rem;
}
.custom-offcanvas .mobile-nav .mobile-language-options .mobile-lang-option:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}
.custom-offcanvas .mobile-nav .mobile-language-options .mobile-lang-option.active {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  font-weight: 600;
}
.custom-offcanvas .mobile-nav .mobile-wishlist-item {
  background: rgba(255, 140, 0, 0.15);
  border-left-color: rgba(255, 140, 0, 0.3);
}
.custom-offcanvas .mobile-nav .mobile-wishlist-item i {
  color: #ffa500;
}
.custom-offcanvas .mobile-nav .mobile-wishlist-item:hover {
  background: rgba(255, 140, 0, 0.25);
  border-left-color: #ffa500;
  color: #ffa500;
}
.custom-offcanvas .mobile-nav .mobile-login-item {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  border-left-color: rgba(255, 215, 0, 0.4);
  color: #1a1a1a !important;
  font-weight: 600;
}
.custom-offcanvas .mobile-nav .mobile-login-item i {
  color: #1a1a1a;
}
.custom-offcanvas .mobile-nav .mobile-login-item:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #000000 !important;
  border-left-color: #ffd700;
}
.custom-offcanvas .mobile-nav .mobile-login-item:hover i {
  color: #000000;
}
.custom-offcanvas .mobile-nav .logout-item {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 1rem !important;
}

.custom-footer {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  color: white;
  margin-top: auto;
  padding: 3rem 0 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.custom-footer .footer-title {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}
.custom-footer ul {
  text-align: center;
  padding: 0;
  margin: 0;
}
.custom-footer ul li {
  margin-bottom: 0.5rem;
}
.custom-footer .footer-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
  text-decoration: none !important;
  position: relative;
}
.custom-footer .footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}
.custom-footer .footer-link:hover {
  color: #ffd700 !important;
}
.custom-footer .footer-link:hover::after {
  width: 100%;
}
.custom-footer .footer-social-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-footer .footer-social-link:hover {
  color: #ffd700 !important;
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}
.custom-footer .footer-social-link:active {
  transform: translateY(-2px) scale(1.05);
}
.custom-footer .d-flex {
  justify-content: center;
}
.custom-footer .border-secondary {
  border-color: rgba(255, 215, 0, 0.2) !important;
}
.custom-footer .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.9rem;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
}

h1 {
  color: #ffd700;
  font-size: 2.75rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  margin-bottom: 1rem;
}

.wishlist-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.wishlist-ranked-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wishlist-ranked-item {
  display: grid;
  grid-template-columns: 50px 80px 1fr auto;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.wishlist-ranked-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.wishlist-ranked-item.rank-one {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
}
.wishlist-ranked-item.rank-one .rank-number span {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 215, 0, 0.2));
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.wishlist-ranked-item.rank-one:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.2);
}

.rank-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  min-width: 50px;
}
.rank-number span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
  border-radius: 8px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.game-image-wrapper {
  width: 80px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.game-image-wrapper .game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.game-info .game-name {
  font-size: 18px;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}
.game-info .game-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.game-info .game-meta .game-duration,
.game-info .game-meta .game-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.game-info .game-meta .game-duration:hover,
.game-info .game-meta .game-rating:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.game-info .game-meta .game-duration {
  color: rgba(147, 197, 253, 0.9);
}
.game-info .game-meta .game-duration i {
  color: rgb(147, 197, 253);
}
.game-info .game-meta .game-duration:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}
.game-info .game-meta .game-rating {
  color: rgba(251, 191, 36, 0.9);
}
.game-info .game-meta .game-rating i {
  color: rgb(251, 191, 36);
}
.game-info .game-meta .game-rating:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.game-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.complete-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(40, 167, 69, 0.5);
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.complete-btn i {
  font-size: 18px;
  transition: all 0.3s ease;
}
.complete-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.complete-btn:hover {
  background: #28a745;
  color: white;
  border-color: #28a745;
  transform: scale(1.15) rotate(360deg);
}
.complete-btn:hover::before {
  width: 80px;
  height: 80px;
}
.complete-btn:hover i {
  transform: scale(1.2);
}
.complete-btn:active {
  transform: scale(0.95) rotate(360deg);
}

.uncomplete-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 193, 7, 0.5);
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.uncomplete-btn i {
  font-size: 18px;
  transition: all 0.3s ease;
}
.uncomplete-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.uncomplete-btn:hover {
  background: #ffc107;
  color: #1a1a1a;
  border-color: #ffc107;
  transform: scale(1.15) rotate(-360deg);
}
.uncomplete-btn:hover::before {
  width: 80px;
  height: 80px;
}
.uncomplete-btn:hover i {
  transform: scale(1.2);
}
.uncomplete-btn:active {
  transform: scale(0.95) rotate(-360deg);
}

.remove-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(220, 53, 69, 0.5);
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.remove-btn i {
  font-size: 18px;
}
.remove-btn:hover {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
  transform: rotate(90deg) scale(1.1);
}
.remove-btn:active {
  transform: rotate(90deg) scale(0.95);
}

.empty-state-wishlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 400px;
}

.empty-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 2rem;
}
.empty-icon i {
  font-size: 3rem;
  color: #ffd700;
}

.empty-message {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  text-align: center;
}

.btn-discover-games {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: #1a1a1a;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.btn-discover-games i {
  transition: transform 0.3s ease;
}
.btn-discover-games:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  text-decoration: none;
  color: #000;
}
.btn-discover-games:hover i {
  transform: translateX(4px);
}
.btn-discover-games:active {
  transform: translateY(0);
}

.btn-completed-games {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 2px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}
.btn-completed-games i {
  transition: transform 0.3s ease;
}
.btn-completed-games:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.15) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  text-decoration: none;
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.6);
}
.btn-completed-games:hover i {
  transform: scale(1.1);
}
.btn-completed-games:active {
  transform: translateY(0);
}

.btn-add-games {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid rgba(59, 130, 246, 0.4);
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}
.btn-add-games i {
  transition: transform 0.3s ease;
}
.btn-add-games:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  text-decoration: none;
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.6);
}
.btn-add-games:hover i {
  transform: scale(1.1);
}
.btn-add-games:active {
  transform: translateY(0);
}

.btn-back-to-wishlist {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-back-to-wishlist i {
  transition: transform 0.3s ease;
}
.btn-back-to-wishlist:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-back-to-wishlist:hover i {
  transform: translateX(-3px);
}
.btn-back-to-wishlist:active {
  transform: translateY(0);
}

.wishlist-controls-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.wishlist-action-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.sort-options-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}
.sort-options-container .sort-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.sort-options-container .sort-select {
  min-width: 200px;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.sort-options-container .sort-select:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.2);
}
.sort-options-container .sort-select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}
.sort-options-container .sort-select option {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem;
}

@media (max-width: 1024px) {
  .wishlist-controls-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  .wishlist-action-buttons {
    justify-content: center;
    width: 100%;
  }
  .sort-options-container {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .wishlist-controls-container {
    padding: 0 0.75rem;
  }
  .sort-options-container .sort-label {
    font-size: 0.9rem;
  }
  .sort-options-container .sort-select {
    min-width: 180px;
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
  }
}
@media (max-width: 480px) {
  .wishlist-action-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .wishlist-action-buttons .btn-add-games,
  .wishlist-action-buttons .btn-completed-games {
    width: 100%;
    justify-content: center;
  }
  .sort-options-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .sort-options-container .sort-label {
    font-size: 0.85rem;
  }
  .sort-options-container .sort-select {
    width: 100%;
    min-width: auto;
    font-size: 0.85rem;
    padding: 0.55rem 0.8rem;
  }
}
.completed-games-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.completed-game-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  align-items: center;
  transition: all 0.3s ease;
}
.completed-game-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(4px);
}
.completed-game-item .game-image-wrapper {
  width: 100px;
  height: 133px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.completed-game-item .game-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.completed-game-item .game-info .game-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}
.completed-game-item .game-info .completion-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 215, 0, 0.8);
}
.completed-game-item .game-info .completion-date i {
  font-size: 0.85rem;
}
.completed-game-item .game-actions {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .wishlist-ranked-item {
    grid-template-columns: 45px 70px 1fr auto;
    gap: 12px;
    padding: 10px 12px;
  }
  .rank-number {
    font-size: 20px;
    min-width: 45px;
  }
  .rank-number span {
    width: 36px;
    height: 36px;
  }
  .game-image-wrapper {
    width: 70px;
    height: 88px;
  }
  .game-info {
    gap: 0.4rem;
  }
  .game-info .game-name {
    font-size: 16px;
  }
  .game-info .game-meta {
    gap: 0.75rem;
  }
  .game-info .game-meta .game-duration,
  .game-info .game-meta .game-rating {
    font-size: 0.8rem;
    padding: 0.2rem 0.55rem;
  }
  .complete-btn,
  .uncomplete-btn,
  .remove-btn {
    width: 36px;
    height: 36px;
  }
  .complete-btn i,
  .uncomplete-btn i,
  .remove-btn i {
    font-size: 16px;
  }
  .game-actions {
    gap: 6px;
  }
  .completed-game-item {
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
    padding: 12px;
  }
  .completed-game-item .game-image-wrapper {
    width: 70px;
    height: 88px;
  }
  .completed-game-item .game-info .game-name {
    font-size: 1rem;
  }
  .completed-game-item .completion-date {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .wishlist-ranked-container {
    gap: 10px;
  }
  .wishlist-ranked-item {
    grid-template-columns: 40px 60px 1fr auto;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
  }
  .rank-number {
    font-size: 18px;
    min-width: 40px;
  }
  .rank-number span {
    width: 32px;
    height: 32px;
    border-width: 1.5px;
  }
  .game-image-wrapper {
    width: 60px;
    height: 75px;
  }
  .game-info {
    gap: 0.35rem;
  }
  .game-info .game-name {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
  .game-info .game-meta {
    gap: 0.5rem;
  }
  .game-info .game-meta .game-duration,
  .game-info .game-meta .game-rating {
    font-size: 0.75rem;
    padding: 0.15rem 0.45rem;
  }
  .complete-btn,
  .uncomplete-btn,
  .remove-btn {
    width: 32px;
    height: 32px;
  }
  .complete-btn i,
  .uncomplete-btn i,
  .remove-btn i {
    font-size: 14px;
  }
  .completed-game-item {
    grid-template-columns: 60px 1fr auto;
    gap: 10px;
    padding: 10px;
  }
  .completed-game-item .game-image-wrapper {
    width: 60px;
    height: 75px;
  }
  .completed-game-item .game-info .game-name {
    font-size: 0.9rem;
  }
  .completed-game-item .completion-date {
    font-size: 0.75rem;
  }
  .completed-game-item .completion-date span {
    display: block;
  }
  .game-actions {
    gap: 6px;
  }
}
@media (max-width: 360px) {
  .wishlist-ranked-item {
    grid-template-columns: 35px 55px 1fr auto;
    gap: 8px;
    padding: 8px;
  }
  .rank-number {
    font-size: 16px;
    min-width: 35px;
  }
  .rank-number span {
    width: 30px;
    height: 30px;
  }
  .game-image-wrapper {
    width: 55px;
    height: 69px;
  }
  .game-info {
    gap: 0.3rem;
  }
  .game-info .game-name {
    font-size: 13px;
  }
  .game-info .game-meta {
    gap: 0.4rem;
  }
  .game-info .game-meta .game-duration,
  .game-info .game-meta .game-rating {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
  }
  .complete-btn,
  .uncomplete-btn,
  .remove-btn {
    width: 30px;
    height: 30px;
  }
  .complete-btn i,
  .uncomplete-btn i,
  .remove-btn i {
    font-size: 13px;
  }
  .game-actions {
    gap: 4px;
  }
}
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.pagination-container .pagination {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-container .pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.pagination-container .pagination .page-item .page-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}
.pagination-container .pagination .page-item.active .page-link {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.15) 100%);
  border-color: rgba(255, 215, 0, 0.5);
  color: #ffd700;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  pointer-events: none;
}
.pagination-container .pagination .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination-container .pagination .page-item.disabled .page-link:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}
.pagination-container .pagination .page-item.gap .page-link {
  border: none;
  background: transparent;
  cursor: default;
  pointer-events: none;
}
.pagination-container .pagination .page-item.gap .page-link:hover {
  transform: none;
  box-shadow: none;
}
.pagination-container .pagination .page-item.prev .page-link, .pagination-container .pagination .page-item.next .page-link {
  font-weight: 600;
}
.pagination-container .pagination .page-item.prev .page-link:hover, .pagination-container .pagination .page-item.next .page-link:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #3b82f6;
}

@media (max-width: 768px) {
  .pagination-container {
    margin-top: 1.5rem;
  }
  .pagination-container .pagination {
    gap: 0.35rem;
  }
  .pagination-container .pagination .page-item .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .pagination-container .pagination {
    gap: 0.25rem;
  }
  .pagination-container .pagination .page-item .page-link {
    min-width: 32px;
    height: 32px;
    padding: 0.3rem 0.5rem;
    font-size: 0.85rem;
  }
}
.devise-container {
  max-width: 500px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.devise-container h2 {
  color: #ffd700;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.devise-container h4 {
  color: #ffed4e;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.devise-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.devise-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.form-floating-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-floating-group .form-control {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  color: #f0f0f0 !important;
  padding: 1.5rem 1rem 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
}
.form-floating-group .form-control::placeholder {
  color: transparent;
}
.form-floating-group .form-control:-webkit-autofill, .form-floating-group .form-control:-webkit-autofill:hover, .form-floating-group .form-control:-webkit-autofill:focus, .form-floating-group .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.08) inset !important;
  -webkit-text-fill-color: #f0f0f0 !important;
  caret-color: #f0f0f0 !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important;
  color: #f0f0f0 !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  filter: none !important;
}
.form-floating-group .form-control:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  color: #ffffff !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
}
.form-floating-group .form-control:focus:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.12) inset !important, 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}
.form-floating-group .form-control:focus ~ .form-label {
  transform: translateY(-0.5rem) scale(0.85);
  color: #ffd700;
}
.form-floating-group .form-control:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.form-floating-group .form-control:not(:placeholder-shown) ~ .form-label, .form-floating-group .form-control[value]:not([value=""]) ~ .form-label,
.form-floating-group .form-control ~ .form-label.has-value {
  transform: translateY(-0.5rem) scale(0.85);
  color: #ffed4e;
}
.form-floating-group .field_with_errors {
  display: contents;
}
.form-floating-group .field_with_errors .form-control {
  border-color: rgba(220, 53, 69, 0.5) !important;
}
.form-floating-group .field_with_errors:has(.form-control:focus) ~ .field_with_errors .form-label {
  transform: translateY(-0.5rem) scale(0.85);
  color: #ffd700;
}
.form-floating-group .field_with_errors:has(.form-control:not(:placeholder-shown)) ~ .field_with_errors .form-label,
.form-floating-group .field_with_errors ~ .field_with_errors .form-label.has-value {
  transform: translateY(-0.5rem) scale(0.85);
  color: #ffed4e;
}
.form-floating-group .form-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 1rem;
  pointer-events: none;
  transform-origin: left center;
  transition: all 0.3s ease;
  z-index: 1;
}

.form-label {
  color: #f0f0f0;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  color: #f0f0f0 !important;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-control:-webkit-autofill, .form-control:-webkit-autofill:hover, .form-control:-webkit-autofill:focus, .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.08) inset !important;
  -webkit-text-fill-color: #f0f0f0 !important;
  caret-color: #f0f0f0 !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important;
  color: #f0f0f0 !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  filter: none !important;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  color: #ffffff !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
}
.form-control:focus:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.12) inset !important, 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}
.form-control:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.form-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-check {
  padding-left: 1.75rem;
}
.form-check .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-check .form-check-input:checked {
  background-color: #ffd700;
  border-color: #ffd700;
}
.form-check .form-check-input:focus {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}
.form-check .form-check-input:hover {
  border-color: rgba(255, 215, 0, 0.3);
}
.form-check .form-check-label {
  color: #f0f0f0;
  font-size: 0.95rem;
  cursor: pointer;
  margin-left: 0.5rem;
}

.devise-card .btn-primary,
.devise-container .btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.devise-card .btn-primary::before,
.devise-container .btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.devise-card .btn-primary:hover,
.devise-container .btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #000000;
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}
.devise-card .btn-primary:hover::before,
.devise-container .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}
.devise-card .btn-primary:active,
.devise-container .btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.devise-card .btn-primary:focus,
.devise-container .btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.oauth-buttons .btn-oauth {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.oauth-buttons .btn-oauth:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.oauth-buttons .btn-oauth:active {
  transform: translateY(0) scale(0.98);
}
.oauth-buttons .btn-oauth.btn-google:hover {
  background: #4285f4;
  border-color: #4285f4;
  color: white;
}
.oauth-buttons .btn-oauth i {
  font-size: 1.1rem;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.divider span {
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.devise-links {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.devise-links a {
  color: #ffd700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0.25rem 0;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.devise-links a:hover {
  color: #ffed4e;
  background: rgba(255, 215, 0, 0.1);
}

.devise-card .btn-danger,
.devise-container .btn-danger {
  background: #dc3545;
  border: 2px solid rgba(220, 53, 69, 0.4);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.devise-card .btn-danger::before,
.devise-container .btn-danger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.devise-card .btn-danger:hover,
.devise-container .btn-danger:hover {
  background: #ff4d5a;
  border-color: rgba(255, 77, 90, 0.6);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
  transform: translateY(-2px);
}
.devise-card .btn-danger:hover::before,
.devise-container .btn-danger:hover::before {
  width: 300px;
  height: 300px;
}
.devise-card .btn-danger:active,
.devise-container .btn-danger:active {
  transform: translateY(0) scale(0.98);
}
.devise-card .btn-danger:focus,
.devise-container .btn-danger:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.devise-error-alert {
  background: rgba(220, 53, 69, 0.15) !important;
  border: 2px solid rgba(220, 53, 69, 0.4) !important;
  border-radius: 12px !important;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: #ff6b7a;
  backdrop-filter: blur(10px);
}
.devise-error-alert .error-title {
  color: #ff6b7a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.devise-error-alert .error-title i {
  font-size: 1.1rem;
}
.devise-error-alert .error-list {
  margin: 0;
  padding-left: 1.5rem;
  list-style: disc;
}
.devise-error-alert .error-list li {
  margin-bottom: 0.5rem;
  color: #ff8a96;
  font-size: 0.95rem;
}
.devise-error-alert .error-list li:last-child {
  margin-bottom: 0;
}

.devise-error-messages {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: #ff6b7a;
}
.devise-error-messages h2 {
  color: #ff6b7a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: left;
  text-shadow: none;
}
.devise-error-messages ul {
  margin: 0;
  padding-left: 1.25rem;
}
.devise-error-messages ul li {
  margin-bottom: 0.25rem;
  color: #ff8a96;
}

@media (max-width: 768px) {
  .devise-container {
    margin: 2rem auto;
  }
  .devise-container h2 {
    font-size: 1.75rem;
  }
  .devise-card {
    padding: 2rem 1.5rem;
  }
  .form-control {
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
  }
  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .devise-container {
    margin: 1.5rem auto;
  }
  .devise-container h2 {
    font-size: 1.5rem;
  }
  .devise-card {
    padding: 1.5rem 1rem;
  }
}
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.legal-page .legal-title {
  color: #f0f0f0;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.legal-page .legal-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.legal-page .legal-section {
  margin-bottom: 2rem;
}
.legal-page .legal-section h2 {
  color: #f0f0f0;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.legal-page .legal-section h3 {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-page .legal-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.legal-page .legal-section ul {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-page .legal-section ul li {
  margin-bottom: 0.5rem;
}
.legal-page .legal-section ul li strong {
  color: #ffd700;
  font-family: "Courier New", monospace;
}
.legal-page .cookie-settings-callout {
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.legal-page .cookie-settings-callout h3 {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
}
.legal-page .cookie-settings-callout .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.9rem;
}
.legal-page .btn-cookie-settings {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.legal-page .btn-cookie-settings:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}
.legal-page .btn-cookie-settings i {
  color: #1a1a1a;
}

.about-hero-section {
  padding: 4rem 0 3rem;
}
.about-hero-section .container {
  max-width: 1200px;
}
.about-hero-section .hero-content {
  background: linear-gradient(180deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.05) 50%, rgba(255, 165, 0, 0.02) 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 165, 0, 0.15);
  box-shadow: 0 8px 32px rgba(255, 165, 0, 0.1);
  backdrop-filter: blur(10px);
  margin: 0 auto;
}
.about-hero-section .wisp-logo-large {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.about-hero-section .wisp-logo-large .wisp-flame {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 140, 0, 0.6));
  animation: logoFlicker 3s ease-in-out infinite;
}
.about-hero-section .wisp-logo-large .wisp-flame .flame-outer {
  animation: flameFlicker 2s ease-in-out infinite;
  transform-origin: 50% 90%;
}
.about-hero-section .wisp-logo-large .wisp-flame .flame-middle {
  animation: flameFlicker 1.8s ease-in-out infinite 0.2s;
  transform-origin: 50% 85%;
}
.about-hero-section .wisp-logo-large .wisp-flame .flame-inner {
  animation: flameFlicker 1.5s ease-in-out infinite 0.4s;
  transform-origin: 50% 80%;
}
.about-hero-section .about-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b00 0%, #ffa500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.about-hero-section .about-subtitle {
  font-size: 1.5rem;
  color: #b0b0b0;
  margin-bottom: 0;
}

@keyframes logoFlicker {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 140, 0, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 30px rgb(255, 165, 0)) drop-shadow(0 0 50px rgba(255, 140, 0, 0.8));
  }
}
@keyframes flameFlicker {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
    opacity: 1;
  }
  25% {
    transform: scaleY(1.05) scaleX(0.98);
    opacity: 0.95;
  }
  50% {
    transform: scaleY(0.95) scaleX(1.02);
    opacity: 0.9;
  }
  75% {
    transform: scaleY(1.02) scaleX(0.97);
    opacity: 0.95;
  }
}
.about-section {
  padding: 4rem 0;
}
.about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 2rem;
}
.about-section .mission-description {
  font-size: 1.25rem;
  color: #d0d0d0;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.features-section .feature-card-about {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.features-section .feature-card-about:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 165, 0, 0.4);
  box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
}
.features-section .feature-card-about .feature-icon-about {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.features-section .feature-card-about .feature-icon-about i {
  font-size: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-section .feature-card-about .feature-title-about {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1rem;
}
.features-section .feature-card-about .feature-description-about {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 0;
}

.future-section .future-card {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 165, 0, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
}
.future-section .future-card .future-icon {
  text-align: center;
}
.future-section .future-card .future-icon i {
  font-size: 4rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rocketBounce 2s ease-in-out infinite;
}
.future-section .future-card .future-description {
  font-size: 1.125rem;
  color: #d0d0d0;
  line-height: 1.8;
}

@keyframes rocketBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.cta-section {
  padding: 5rem 0;
}
.cta-section .cta-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
}
.cta-section .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}
.cta-section .cta-description {
  font-size: 1.25rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}
.cta-section .btn-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}
.cta-section .btn-cta:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
  color: #000000;
}
.cta-section .btn-cta:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 2rem 0 1.5rem;
  }
  .about-hero-section .hero-content {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  .about-hero-section .wisp-logo-large {
    width: 100px;
    height: 100px;
  }
  .about-hero-section .about-title {
    font-size: 2.5rem;
  }
  .about-hero-section .about-subtitle {
    font-size: 1.125rem;
  }
  .about-section {
    padding: 3rem 0;
  }
  .about-section .section-title {
    font-size: 2rem;
  }
  .about-section .mission-description {
    font-size: 1.125rem;
  }
  .future-section .future-icon i {
    font-size: 3rem;
  }
  .future-section .future-card {
    padding: 2rem 1.5rem;
  }
  .future-section .future-description {
    font-size: 1rem;
  }
  .cta-section {
    padding: 3rem 0;
  }
  .cta-section .cta-card {
    padding: 2rem 1.5rem;
  }
  .cta-section .cta-title {
    font-size: 2rem;
  }
  .cta-section .cta-description {
    font-size: 1.125rem;
  }
}
.blog-hero-section {
  padding: 2rem 0 1.5rem;
}
.blog-hero-section .container {
  max-width: 1200px;
}
.blog-hero-section .hero-content {
  background: linear-gradient(180deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.05) 50%, rgba(255, 165, 0, 0.02) 100%);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 165, 0, 0.15);
  box-shadow: 0 8px 32px rgba(255, 165, 0, 0.1);
  backdrop-filter: blur(10px);
  margin: 0 auto;
}
.blog-hero-section .blog-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.blog-hero-section .blog-icon i {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero-section .blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b00 0%, #ffa500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.blog-hero-section .blog-subtitle {
  font-size: 1.125rem;
  color: #b0b0b0;
  margin-bottom: 0;
}

.blog-section {
  padding: 4rem 0;
}
.blog-section .container {
  max-width: 1200px;
}

.blog-article-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.blog-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 165, 0, 0.4);
  box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
}
.blog-article-card .blog-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-article-card .blog-badge.badge-primary {
  background: rgba(13, 110, 253, 0.2);
  color: #6ea8fe;
  border: 1px solid rgba(13, 110, 253, 0.3);
}
.blog-article-card .blog-badge.badge-success {
  background: rgba(25, 135, 84, 0.2);
  color: #75b798;
  border: 1px solid rgba(25, 135, 84, 0.3);
}
.blog-article-card .blog-badge.badge-info {
  background: rgba(13, 202, 240, 0.2);
  color: #6edff6;
  border: 1px solid rgba(13, 202, 240, 0.3);
}
.blog-article-card .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.blog-article-card .blog-date {
  font-size: 0.875rem;
  color: #888;
}
.blog-article-card .blog-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1rem;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.blog-article-card .blog-card-title:hover {
  color: #ffed4e;
}
.blog-article-card .blog-card-excerpt {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.blog-article-card .btn-read-more {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: #ffd700;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
  align-self: flex-start;
}
.blog-article-card .btn-read-more:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateX(5px);
  color: #ffed4e;
}

.blog-article-section {
  padding: 3rem 0;
}
.blog-article-section .container {
  max-width: 900px;
}
.blog-article-section .back-to-blog {
  display: inline-flex;
  align-items: center;
  color: #ffd700;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
.blog-article-section .back-to-blog:hover {
  color: #ffed4e;
  transform: translateX(-5px);
}
.blog-article-section .article-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}
.blog-article-section .article-header .blog-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.blog-article-section .article-header .blog-badge.badge-primary {
  background: rgba(13, 110, 253, 0.2);
  color: #6ea8fe;
  border: 1px solid rgba(13, 110, 253, 0.3);
}
.blog-article-section .article-header .blog-badge.badge-success {
  background: rgba(25, 135, 84, 0.2);
  color: #75b798;
  border: 1px solid rgba(25, 135, 84, 0.3);
}
.blog-article-section .article-header .blog-badge.badge-info {
  background: rgba(13, 202, 240, 0.2);
  color: #6edff6;
  border: 1px solid rgba(13, 202, 240, 0.3);
}
.blog-article-section .article-header .article-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b00 0%, #ffa500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-article-section .article-header .article-meta {
  color: #888;
  font-size: 0.9rem;
}
.blog-article-section .article-content {
  color: #d0d0d0;
  font-size: 1.125rem;
  line-height: 1.8;
}
.blog-article-section .article-content .lead {
  font-size: 1.375rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.blog-article-section .article-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffd700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.blog-article-section .article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffa500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.blog-article-section .article-content p {
  margin-bottom: 1.5rem;
}
.blog-article-section .article-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.blog-article-section .article-content ul li {
  margin-bottom: 0.75rem;
  color: #d0d0d0;
  line-height: 1.6;
}
.blog-article-section .article-content ul li::marker {
  color: #ffa500;
}
.blog-article-section .article-content .alert {
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  border: none;
  backdrop-filter: blur(10px);
}
.blog-article-section .article-content .alert.alert-primary {
  background: rgba(13, 110, 253, 0.15);
  border: 1px solid rgba(13, 110, 253, 0.3);
}
.blog-article-section .article-content .alert.alert-success {
  background: rgba(25, 135, 84, 0.15);
  border: 1px solid rgba(25, 135, 84, 0.3);
}
.blog-article-section .article-content .alert.alert-info {
  background: rgba(13, 202, 240, 0.15);
  border: 1px solid rgba(13, 202, 240, 0.3);
}
.blog-article-section .article-content .alert .alert-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1rem;
}
.blog-article-section .article-content .alert p {
  font-size: 1.125rem;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}
.blog-article-section .article-content .alert p:last-child {
  margin-bottom: 0;
}
.blog-article-section .article-content .alert .btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.4);
}
.blog-article-section .article-content .alert .btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
  color: #000000;
}

@media (max-width: 768px) {
  .blog-hero-section {
    padding: 1.5rem 0 1rem;
  }
  .blog-hero-section .hero-content {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
  .blog-hero-section .blog-icon {
    width: 50px;
    height: 50px;
  }
  .blog-hero-section .blog-icon i {
    font-size: 1.5rem;
  }
  .blog-hero-section .blog-title {
    font-size: 2rem;
  }
  .blog-hero-section .blog-subtitle {
    font-size: 1rem;
  }
  .blog-section {
    padding: 3rem 0;
  }
  .blog-article-card {
    padding: 1.5rem;
  }
  .blog-article-card .blog-card-title {
    font-size: 1.25rem;
  }
  .blog-article-card .blog-card-excerpt {
    font-size: 0.95rem;
  }
  .blog-article-section {
    padding: 2rem 0;
  }
  .blog-article-section .article-header .article-title {
    font-size: 2rem;
  }
  .blog-article-section .article-content {
    font-size: 1rem;
  }
  .blog-article-section .article-content .lead {
    font-size: 1.125rem;
  }
  .blog-article-section .article-content h2 {
    font-size: 1.75rem;
  }
  .blog-article-section .article-content h3 {
    font-size: 1.25rem;
  }
  .blog-article-section .article-content .alert {
    padding: 1.5rem;
  }
  .blog-article-section .article-content .alert .alert-heading {
    font-size: 1.25rem;
  }
  .blog-article-section .article-content .alert p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .blog-hero-section {
    padding: 1rem 0 0.75rem;
  }
  .blog-hero-section .hero-content {
    padding: 1.25rem 1rem;
  }
  .blog-hero-section .blog-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.75rem;
  }
  .blog-hero-section .blog-icon i {
    font-size: 1.25rem;
  }
  .blog-hero-section .blog-title {
    font-size: 1.75rem;
  }
  .blog-hero-section .blog-subtitle {
    font-size: 0.95rem;
  }
  .blog-article-section .article-header .article-title {
    font-size: 1.75rem;
  }
}
.faq-hero-section {
  padding: 4rem 0 3rem;
}
.faq-hero-section .container {
  max-width: 1200px;
}
.faq-hero-section .hero-content {
  background: linear-gradient(180deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.05) 50%, rgba(255, 165, 0, 0.02) 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 165, 0, 0.15);
  box-shadow: 0 8px 32px rgba(255, 165, 0, 0.1);
  backdrop-filter: blur(10px);
  margin: 0 auto;
}
.faq-hero-section .faq-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b00 0%, #ffa500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.faq-hero-section .faq-subtitle {
  font-size: 1.5rem;
  color: #b0b0b0;
  margin-bottom: 0;
}

.faq-section {
  padding: 4rem 0;
}
.faq-section .accordion-faq .accordion-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 165, 0, 0.2);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .accordion-faq .accordion-item:hover {
  border-color: rgba(255, 165, 0, 0.4);
  box-shadow: 0 4px 16px rgba(255, 165, 0, 0.15);
}
.faq-section .accordion-faq .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-section .accordion-faq .accordion-header .accordion-button {
  background: transparent;
  color: #ffd700;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}
.faq-section .accordion-faq .accordion-header .accordion-button:not(.collapsed) {
  background: rgba(255, 165, 0, 0.1);
  color: #ffa500;
  box-shadow: none;
}
.faq-section .accordion-faq .accordion-header .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.faq-section .accordion-faq .accordion-header .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffa500;
  width: auto;
  height: auto;
  transform: none;
  transition: all 0.3s ease;
}
.faq-section .accordion-faq .accordion-header .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}
.faq-section .accordion-faq .accordion-body {
  background: rgba(0, 0, 0, 0.2);
  color: #d0d0d0;
  padding: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 165, 0, 0.1);
}

.faq-cta-section {
  padding: 4rem 0;
}
.faq-cta-section .faq-cta-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
}
.faq-cta-section .faq-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}
.faq-cta-section .faq-cta-description {
  font-size: 1.125rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}
.faq-cta-section .btn-faq-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}
.faq-cta-section .btn-faq-cta:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
  color: #000000;
}
.faq-cta-section .btn-faq-cta:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .faq-hero-section {
    padding: 2rem 0 1.5rem;
  }
  .faq-hero-section .hero-content {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  .faq-hero-section .faq-title {
    font-size: 2.5rem;
  }
  .faq-hero-section .faq-subtitle {
    font-size: 1.125rem;
  }
  .faq-section {
    padding: 3rem 0;
  }
  .faq-section .accordion-faq .accordion-header .accordion-button {
    font-size: 1.125rem;
    padding: 1.25rem;
  }
  .faq-section .accordion-faq .accordion-body {
    font-size: 1rem;
    padding: 1.25rem;
  }
  .faq-cta-section {
    padding: 3rem 0;
  }
  .faq-cta-section .faq-cta-card {
    padding: 2rem 1.5rem;
  }
  .faq-cta-section .faq-cta-title {
    font-size: 1.75rem;
  }
  .faq-cta-section .faq-cta-description {
    font-size: 1rem;
  }
}
.contact-hero-section {
  padding: 4rem 0 3rem;
}
.contact-hero-section .container {
  max-width: 1200px;
}
.contact-hero-section .hero-content {
  background: linear-gradient(180deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.05) 50%, rgba(255, 165, 0, 0.02) 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 165, 0, 0.15);
  box-shadow: 0 8px 32px rgba(255, 165, 0, 0.1);
  backdrop-filter: blur(10px);
  margin: 0 auto;
}
.contact-hero-section .contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b00 0%, #ffa500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.contact-hero-section .contact-subtitle {
  font-size: 1.5rem;
  color: #b0b0b0;
  margin-bottom: 0;
}

.contact-form-section {
  padding: 4rem 0;
}
.contact-form-section .contact-form-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.contact-form-section .form-floating-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.contact-form-section .form-floating-group .form-control {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  color: #f0f0f0 !important;
  padding: 1.5rem 1rem 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
}
.contact-form-section .form-floating-group .form-control::placeholder {
  color: transparent;
}
.contact-form-section .form-floating-group .form-control:-webkit-autofill, .contact-form-section .form-floating-group .form-control:-webkit-autofill:hover, .contact-form-section .form-floating-group .form-control:-webkit-autofill:focus, .contact-form-section .form-floating-group .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.08) inset !important;
  -webkit-text-fill-color: #f0f0f0 !important;
  caret-color: #f0f0f0 !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important;
  color: #f0f0f0 !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  filter: none !important;
}
.contact-form-section .form-floating-group .form-control:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  color: #ffffff !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
}
.contact-form-section .form-floating-group .form-control:focus:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.12) inset !important, 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}
.contact-form-section .form-floating-group .form-control:focus ~ .form-label {
  transform: translateY(-0.5rem) scale(0.85);
  color: #ffd700;
}
.contact-form-section .form-floating-group .form-control:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.contact-form-section .form-floating-group .form-control:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-0.5rem) scale(0.85);
  color: #ffed4e;
}
.contact-form-section .form-floating-group .form-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 1rem;
  pointer-events: none;
  transform-origin: left center;
  transition: all 0.3s ease;
  z-index: 1;
}
.contact-form-section .form-floating-group .contact-textarea {
  min-height: 200px;
  resize: vertical;
}
.contact-form-section .contact-input:not(.form-floating-group .form-control),
.contact-form-section .contact-textarea:not(.form-floating-group .form-control) {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 165, 0, 0.3);
  color: #f0f0f0;
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form-section .contact-input:not(.form-floating-group .form-control):focus,
.contact-form-section .contact-textarea:not(.form-floating-group .form-control):focus {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 165, 0, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.15);
  color: #f0f0f0;
  outline: none;
}
.contact-form-section .contact-input:not(.form-floating-group .form-control)::placeholder,
.contact-form-section .contact-textarea:not(.form-floating-group .form-control)::placeholder {
  color: #888;
}
.contact-form-section .logged-in-info {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #d0d0d0;
  font-size: 1rem;
  margin-bottom: 0;
}
.contact-form-section .logged-in-info i {
  color: #ffa500;
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.contact-form-section .logged-in-info strong {
  color: #ffd700;
}
.contact-form-section .btn-contact-submit {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
  cursor: pointer;
}
.contact-form-section .btn-contact-submit:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
  color: #000000;
}
.contact-form-section .btn-contact-submit:active {
  transform: translateY(-1px);
}

.contact-info-section {
  padding: 3rem 0 4rem;
}
.contact-info-section .contact-info-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.08) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.contact-info-section .info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}
.contact-info-section .info-description {
  font-size: 1.125rem;
  color: #b0b0b0;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 2rem 0 1.5rem;
  }
  .contact-hero-section .hero-content {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  .contact-hero-section .contact-title {
    font-size: 2.5rem;
  }
  .contact-hero-section .contact-subtitle {
    font-size: 1.125rem;
  }
  .contact-form-section {
    padding: 3rem 0;
  }
  .contact-form-section .contact-form-card {
    padding: 2rem 1.5rem;
  }
  .contact-form-section .form-label {
    font-size: 1rem;
  }
  .contact-form-section .contact-input,
  .contact-form-section .contact-textarea {
    padding: 0.75rem 1rem;
  }
  .contact-info-section {
    padding: 2rem 0 3rem;
  }
  .contact-info-section .contact-info-card {
    padding: 1.5rem;
  }
  .contact-info-section .info-title {
    font-size: 1.5rem;
  }
  .contact-info-section .info-description {
    font-size: 1rem;
  }
}
/* Cookie Consent Banner - Play Wisp Theme */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(15px);
  color: #ffffff;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}
.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #ffd700;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  letter-spacing: 0.5px;
}

.cookie-consent-description {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-link {
  color: #ffd700;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.cookie-consent-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}
.cookie-consent-link:hover {
  color: #ffed4e;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.cookie-consent-link:hover::after {
  width: 100%;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cookie-btn.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a1a;
}
.cookie-btn.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}
.cookie-btn.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.cookie-btn.btn-outline-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-btn.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cookie-modal.show {
  opacity: 1;
}
.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.cookie-modal-content {
  position: relative;
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
  border-radius: 16px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
}

.cookie-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #ffd700;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  letter-spacing: 0.5px;
}

.cookie-modal-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  line-height: 1;
}
.cookie-modal-close:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
  /* Custom scrollbar */
}
.cookie-modal-body::-webkit-scrollbar {
  width: 8px;
}
.cookie-modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.cookie-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.3);
  border-radius: 4px;
}
.cookie-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.5);
}

.cookie-modal-description {
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.cookie-category:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
  gap: 1rem;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #ffd700;
  letter-spacing: 0.3px;
}

.cookie-category-description {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-status-text {
  font-size: 0.85rem;
  color: rgba(255, 215, 0, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Toggle Switch - Gaming Style */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-switch.disabled .cookie-slider {
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(26px);
  background: linear-gradient(135deg, #ffffff 0%, #fffef0 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cookie-details {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.cookie-details ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: none;
}
.cookie-details ul li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1rem;
}
.cookie-details ul li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 0.8rem;
}
.cookie-details ul li:last-child {
  margin-bottom: 0;
}
.cookie-details ul li strong {
  color: #ffd700;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.cookie-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}
.cookie-modal-footer .btn {
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}
.cookie-modal-footer .btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.cookie-modal-footer .btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}
.cookie-modal-footer .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-modal-footer .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-consent-actions {
    width: 100%;
    justify-content: center;
  }
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
  .cookie-modal-content {
    width: 95%;
    max-height: 95vh;
  }
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 1.25rem;
  }
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-toggle {
    align-self: flex-end;
    width: 100%;
    justify-content: space-between;
  }
  .cookie-modal-footer {
    flex-direction: column;
  }
  .cookie-modal-footer .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 1.25rem 1rem;
  }
  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
  }
  .cookie-modal-title {
    font-size: 1.25rem;
  }
}
body {
  background-color: #272727;
  color: #f0f0f0;
  padding-top: 130px;
}

@media (max-width: 576px) {
  body {
    padding-top: 100px;
  }
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.alerts-container {
  position: relative;
  z-index: 1000;
}

.alert {
  padding: 1rem 3rem 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 2px solid;
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideDown 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
}
.alert .btn-close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
}
.alert .btn-close:hover {
  opacity: 1;
  filter: brightness(0) invert(1) brightness(1.2);
  transform: translateY(-50%) scale(1.15);
}
.alert .btn-close:focus {
  opacity: 1;
  box-shadow: none;
}

.alert-notice,
.alert-success {
  background: rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.4);
  color: #4ade80;
}

.alert-alert,
.alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.4);
  color: #fbbf24;
}

.alert-error,
.alert-danger {
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.4);
  color: #ff6b7a;
}

.alert-info {
  background: rgba(13, 202, 240, 0.15);
  border-color: rgba(13, 202, 240, 0.4);
  color: #67e8f9;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 769px) {
  .alerts-container {
    position: fixed;
    top: 130px;
    right: 30px;
    max-width: 500px;
    min-width: 300px;
    z-index: 1000;
  }
  .alert {
    animation: slideInRight 0.3s ease;
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@media (max-width: 768px) {
  .alerts-container {
    padding: 0 1rem;
    margin-top: 1rem;
  }
  .alert {
    max-width: 100%;
  }
}
