/* =====================================================
   AGE VERIFICATION POPUP - MODERN DESIGN
   ===================================================== */

.age-verify-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInBackdrop 0.3s ease-in-out;
}

.age-verify-backdrop.active {
  display: flex;
}

@keyframes fadeInBackdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.age-verify-modal {
  background: linear-gradient(135deg, rgba(94, 53, 177, 0.95) 0%, rgba(36, 0, 108, 0.95) 100%);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(240, 17, 17, 0.4), 0 0 0 1px rgba(255, 141, 53, 0.3);
  animation: slideUp 0.4s ease-out;
  position: relative;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-verify-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF8D35 0%, #F01111 100%);
}

.age-verify-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #FF8D35 0%, #F01111 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 141, 53, 0.4);
}

.age-verify-icon svg {
  width: 45px;
  height: 45px;
  fill: #FFFFFF;
}

.age-verify-title {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.age-verify-description {
  font-size: 14px;
  line-height: 1.6;
  color: #B3B3B3;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
}

.age-verify-terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.age-verify-terms input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #FF8D35;
}

.age-verify-terms label {
  font-size: 14px;
  color: #E0E0E0;
  cursor: pointer;
}

.age-verify-terms a {
  color: #FF8D35;
  text-decoration: none;
  font-weight: 600;
}

.age-verify-terms a:hover {
  text-decoration: underline;
  color: #F01111;
}

.age-verify-error {
  display: none;
  color: #F01111;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 10px;
  background: rgba(240, 17, 17, 0.1);
  border-radius: 8px;
}

.age-verify-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.age-verify-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 120px;
}

.age-verify-btn.confirm {
  background: linear-gradient(135deg, #FF8D35 0%, #F01111 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 141, 53, 0.4);
}

.age-verify-btn.confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 141, 53, 0.6);
}

.age-verify-btn.deny {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.age-verify-btn.deny:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.age-rejection-modal {
  text-align: center;
}

.age-rejection-modal .age-verify-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.age-rejection-modal p {
  font-size: 18px;
  color: #B3B3B3;
  line-height: 1.6;
}

/* =====================================================
   PROMOTIONAL WELCOME POPUP - MODERN DESIGN
   ===================================================== */

.promo-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.promo-popup-container.active {
  display: flex;
}

.promo-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 89, 0.62);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.promo-popup-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: 90%;
  animation: popupSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.promo-popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF8D35 0%, #F01111 100%);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(240, 17, 17, 0.4);
}

.promo-popup-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.promo-popup-close::before,
.promo-popup-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
}

.promo-popup-close::before {
  transform: rotate(45deg);
}

.promo-popup-close::after {
  transform: rotate(-45deg);
}

.promo-popup-inner {
  background: linear-gradient(180deg, rgba(36, 0, 108, 0.95) 0%, rgba(94, 53, 177, 0.95) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(240, 17, 17, 0.5), 0 0 0 2px rgba(255, 141, 53, 0.3);
}

.promo-popup-brand {
  background: rgba(10, 29, 46, 0.9);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-bottom: 3px solid #FF8D35;
}

.promo-popup-brand img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.promo-popup-body {
  padding: 35px 25px;
  text-align: center;
}

.promo-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF8D35 0%, #F01111 100%);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(255, 141, 53, 0.4);
}

.promo-popup-offer {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

.promo-popup-details {
  font-size: 16px;
  color: #B3B3B3;
  margin-bottom: 25px;
  line-height: 1.5;
}

.promo-popup-cta {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #FF8D35 0%, #F01111 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 141, 53, 0.4);
  letter-spacing: 0.5px;
}

.promo-popup-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 141, 53, 0.6);
}

/* =====================================================
   STICKY BOTTOM OFFER - MODERN DESIGN
   ===================================================== */

.sticky-bottom-offer {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  z-index: 9998;
  transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: none; /* Hidden on mobile by default */
}

.sticky-bottom-offer.visible {
  bottom: 0;
}

/* Show sticky offer only on desktop */
@media (min-width: 768px) {
  .sticky-bottom-offer {
    display: block;
  }
}

.sticky-offer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

.sticky-offer-card {
  background: linear-gradient(135deg, rgba(36, 0, 108, 0.98) 0%, rgba(94, 53, 177, 0.98) 100%);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 141, 53, 0.4);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}

.sticky-offer-dismiss {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.sticky-offer-dismiss:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.sticky-offer-dismiss::before,
.sticky-offer-dismiss::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}

.sticky-offer-dismiss::before {
  transform: rotate(45deg);
}

.sticky-offer-dismiss::after {
  transform: rotate(-45deg);
}

.sticky-offer-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 60px;
  flex-wrap: wrap;
}

.sticky-offer-logo {
  flex-shrink: 0;
background: rgba(36, 0, 108, 0.95);
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.sticky-offer-logo img {
  max-width: 120px;
  width: 100%;
  height: auto;
}

.sticky-offer-info {
  flex: 1;
  min-width: 200px;
}

.sticky-offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF8D35 0%, #F01111 100%);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sticky-offer-text {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 5px;
}

.sticky-offer-terms {
  font-size: 13px;
  color: #B3B3B3;
  line-height: 1.4;
}

.sticky-offer-button {
  flex-shrink: 0;
}

.sticky-offer-cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FF8D35 0%, #F01111 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 141, 53, 0.4);
  white-space: nowrap;
}

.sticky-offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 141, 53, 0.6);
}

/* =====================================================
   COOKIE CONSENT POPUP - BOTTOM POSITIONED
   ===================================================== */

#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  animation: slideUpCookie 0.4s ease-out;
}

@keyframes slideUpCookie {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-box {
  background: linear-gradient(135deg, rgba(36, 0, 108, 0.98) 0%, rgba(94, 53, 177, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 3px solid #FF8D35;
  padding: 20px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.cookie-box .dismiss-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-box .dismiss-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.cookie-box .dismiss-btn::before,
.cookie-box .dismiss-btn::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}

.cookie-box .dismiss-btn::before {
  transform: rotate(45deg);
}

.cookie-box .dismiss-btn::after {
  transform: rotate(-45deg);
}

.cookie-message {
  text-align: center;
  margin-bottom: 20px;
  padding-right: 40px;
}

.cookie-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.cookie-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #B3B3B3;
  font-family: 'Inter', sans-serif;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-actions .action-button {
  padding: 12px 24px;
  min-width: 140px;
  font-size: 14px;
  border-radius: 12px;
}

.cookie-actions .action-button.primary {
  background: linear-gradient(135deg, #FF8D35 0%, #F01111 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 141, 53, 0.4);
}

.cookie-actions .action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 141, 53, 0.6);
}

.cookie-actions .action-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-actions .action-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cookie-box {
    padding: 20px 15px;
  }
  
  .cookie-message {
    padding-right: 35px;
  }
  
  .cookie-title {
    font-size: 18px;
  }
  
  .cookie-desc {
    font-size: 13px;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-actions .action-button {
    width: 100%;
    min-width: auto;
  }
  
  .promo-popup-content {
    width: 95%;
  }
  
  .promo-popup-close {
    top: -12px;
    right: -12px;
    width: 35px;
    height: 35px;
  }
  
  .promo-popup-offer {
    font-size: 20px;
  }
  
  .promo-popup-cta {
    padding: 14px 30px;
    font-size: 16px;
  }
  
  .sticky-offer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .sticky-offer-logo {
    width: 100%;
  }
  
  .sticky-offer-text {
    font-size: 16px;
  }
  
  .sticky-offer-cta {
    width: 100%;
    padding: 12px 24px;
  }
  .age-verify-btn {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .cookie-box {
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .cookie-message {
    flex: 1;
    margin-bottom: 0;
    text-align: left;
  }
  
  .cookie-title {
    font-size: 22px;
  }
  
  .cookie-desc {
    font-size: 15px;
  }
  
  .cookie-actions {
    flex-shrink: 0;
  }
  
  .age-verify-modal {
    padding: 50px 40px;
  }
  
  .age-verify-title {
    font-size: 32px;
  }
  
  .age-verify-description {
    font-size: 16px;
  }
  
  .promo-popup-content {
    max-width: 520px;
  }
  
  .promo-popup-brand {
    padding: 40px 30px;
  }
  
  .promo-popup-body {
    padding: 40px 35px;
  }
}

@media (min-width: 1024px) {
  .cookie-box {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px 16px 0 0;
  }
}

