/* Navigation Styles */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.3s ease;
  }

  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }

  /* Brand/Logo */
  .nav-brand {
    flex-shrink: 0;
  }

  .brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
    font-weight: 600;
    font-size: 1.1rem;
    transition: none;
  }

  .brand-link:hover {
    color: #1f2937;
  }

  .brand-icon {
    font-size: 0.9rem;
    font-weight: 600;
    background: #1f2937;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
  }

  .brand-text {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.1rem;
  }

  /* Navigation Menu */
  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.9rem;
    overflow: hidden;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-link:hover {
    color: #1f2937;
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-1px);
  }

  .nav-link:hover::before {
    width: 80%;
  }


  .nav-link.support-btn {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    margin-left: 16px;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.2);
  }

  .nav-link.support-btn::before {
    display: none;
  }

  .nav-link.support-btn:hover {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
  }

  .nav-text {
    font-size: 0.95rem;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    background: transparent;
    transition: all 0.2s ease;
  }

  .mobile-menu-toggle:hover {
    background: #f3f4f6;
  }

  .hamburger-line {
    width: 24px;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    border-radius: 1px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
 @media (max-width: 768px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(59, 130, 246, 0.1);
      border-radius: 0 0 16px 16px;
      box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
      flex-direction: column;
      padding: 24px;
      gap: 12px;
    }

    .nav-menu.active {
      display: flex;
    }

    .mobile-menu-toggle {
      display: flex;
    }
    
    .nav-container {
      padding: 0 20px;
    }

    .nav-link {
      justify-content: center;
      padding: 12px 20px;
      border-radius: 10px;
      margin: 0;
    }

    .nav-link.support-btn {
      margin: 8px 0 0 0;
      text-align: center;
      justify-content: center;
    }
}

/* footer */



.modern-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  position: relative;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
}

.footer-container {
  margin: 0;
  padding: clamp(60px, 10vh, 80px) clamp(24px, 5vw, 48px) 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(40px, 6vw, 60px);
  margin-bottom: 48px;
  align-items: start;
}

.footer-brand-section {
  padding-right: 20px;
}

.footer-brand-section h3.footer-brand {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.footer-description {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 100%;
}

.footer-social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  border-color: #3b82f6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.social-link svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
}

.footer-links-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-info-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  position: relative;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 1px;
}

.footer-links-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #3b82f6;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #60a5fa;
  padding-left: 16px;
}

.footer-link:hover::before {
  opacity: 1;
}

.license-info {
  margin-top: 12px;
  flex: 1;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  padding: 10px 14px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(239, 68, 68, 0.2);
  margin-bottom: 16px;
  width: fit-content;
}

.license-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.license-text {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  position: relative;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.4), transparent);
  margin-bottom: 32px;
  position: relative;
}

.footer-divider::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
  filter: blur(1px);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  position: relative;
}

.footer-left-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-links-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.footer-credit {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.creator-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.creator-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

.creator-link:hover {
  color: #3b82f6;
}

.creator-link:hover::after {
  width: 100%;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand-section {
    grid-column: span 2;
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand-section {
    grid-column: span 1;
  }
  
  .footer-social-links {
    justify-content: center;
  }
  
  .footer-links-grid {
    align-items: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-left-content {
    align-items: center;
  }
  
  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-left-content {
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 40px 16px 0;
  }
  
  .footer-inner {
    padding: 0 16px;
  }
  
  .footer-content {
    gap: 24px;
    margin-bottom: 32px;
  }
  
  .footer-brand-section h3.footer-brand {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .footer-social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
  
  .footer-section-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .footer-link {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  
  .license-badge {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  
  .license-icon {
    width: 18px;
    height: 18px;
  }
  
  .license-text {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    padding-top: 24px;
    padding-bottom: 32px;
  }
  
  .footer-copyright,
  .footer-credit {
    font-size: 0.8rem;
  }
}


/* Modern Support Popups */
.modern-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modern-popup-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: 95%;
  max-width: 360px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modern-popup-overlay.show .modern-popup-container {
  transform: scale(1);
}

.modern-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modern-close-btn svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
}

.modern-close-btn:hover {
  background: #e5e7eb;
  transform: scale(1.1);
}

.popup-icon-container {
  margin-bottom: 16px;
}

.popup-gift-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 16px;
  margin: 0 auto;
  animation: giftBounce 2s ease-in-out infinite;
}

.popup-gift-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

@keyframes giftBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

.popup-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.popup-description {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 20px;
}

.popup-cta-button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.popup-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.popup-cta-button:hover::before {
  left: 100%;
}

.popup-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.button-gift {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.popup-cta-button:hover .button-gift {
  transform: scale(1.2) rotate(5deg);
}

/* Modern Mini Popup */
.modern-mini-popup {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  z-index: 999 !important;
  transition: all 0.3s ease;
  animation: slideInUp 0.5s ease, pulse 3s infinite 2s;
  display: none;
}

.mini-popup-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
}

.mini-popup-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.mini-popup-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.mini-popup-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.modern-mini-popup:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}



@keyframes fillProgress { 
  0% { width: 0%; }
  100% { width: 100%; }
}
.modern-progress-bar {
  width: 100%;
  height: 6px;
  background: #f3f4f6;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 24px;
  position: relative;
}

.modern-progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 6px;
  animation: fillProgress 10s linear forwards;
}

/* Responsive Design for Popups */
@media (max-width: 768px) {
  .modern-popup-container {
    padding: 32px 24px;
    margin: 20px;
  }
  
  .popup-title {
    font-size: 1.5rem;
  }
  
  .modern-mini-popup {
    bottom: 20px !important;
    right: 16px !important;
    left: auto !important;
    width: auto !important;
    max-width: calc(100vw - 32px) !important;
  }
  
  .mini-popup-content {
    padding: 10px 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  
  .mini-popup-text {
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .mini-popup-icon {
    flex-shrink: 0;
  }
  
  .mini-popup-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .modern-mini-popup {
    bottom: 16px !important;
    right: 12px !important;
    border-radius: 40px;
  }
  
  .mini-popup-content {
    padding: 8px 14px;
    gap: 8px;
  }
  
  .mini-popup-text {
    font-size: 0.75rem;
  }
  
  .mini-popup-icon svg {
    width: 14px;
    height: 14px;
  }
}



/* Modern Cookie Banner Styling */
/* Consent Banner Styling */
#consentx-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    border-top: 2px solid #3b82f6;
    z-index: 9999;
    display: none;
}

.modern-consentx-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    border-top: 2px solid #3b82f6;
    z-index: 9999;
}

.consentx-banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.consentx-content-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.consentx-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.consentx-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.consentx-text-content {
    flex: 1;
}

.consentx-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

.consentx-message strong {
    color: #ffffff;
    font-weight: 600;
}

.consentx-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

#consentx-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.consentx-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.025em;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.consentx-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.consentx-btn:hover::before {
    left: 100%;
}

.consentx-btn.acceptx-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.consentx-btn.acceptx-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.consentx-btn.acceptx-btn:active {
    transform: translateY(0);
}

.consentx-btn.den yx-btn {
    background: transparent;
    color: #9ca3af;
    border: 2px solid #374151;
}

.consentx-btn.denyx-btn:hover {
    background: #374151;
    color: #ffffff;
    border-color: #4b5563;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .consentx-banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 16px;
    }
    
    .consentx-content-section {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .consentx-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .consentx-icon {
        width: 20px;
        height: 20px;
    }
    
    .consentx-message {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .consentx-actions,
    #consentx-buttons {
        width: 100%;
        justify-content: center;
        gap: 16px;
    }
    
    .consentx-btn {
        flex: 1;
        max-width: 140px;
        padding: 14px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .consentx-banner-wrapper {
        padding: 14px;
        gap: 16px;
    }
    
    .consentx-message {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .consentx-actions,
    #consentx-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .consentx-btn {
        width: 100%;
        max-width: none;
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .consentx-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .consentx-icon {
        width: 18px;
        height: 18px;
    }
}

/* Animations */
@keyframes slideUpFadeIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.modern-consentx-banner.show {
    animation: slideUpFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modern-consentx-banner.hide {
    animation: slideDownFadeOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

  