 :root {
     /* Color Palette */
     --bg-primary: #0d0818;
     --bg-secondary: #1a0f2e;
     --bg-card: #1f1533;
     --bg-card-hover: #2a1d42;

     --purple-gradient-start: #8b2fc9;
     --purple-gradient-end: #d946ef;
     --purple-vibrant: #c026d3;
     --purple-light: #e879f9;
     --purple-glow: rgba(217, 70, 239, 0.4);

     --text-primary: #ffffff;
     --text-secondary: #a78bca;
     --text-muted: #6b5f7f;

     --accent-green: #10b981;
     --accent-red: #ef4444;

     /* Typography */
     --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

     /* Spacing */
     --spacing-xs: 0.5rem;
     --spacing-sm: 1rem;
     --spacing-md: 2rem;
     --spacing-lg: 3rem;
     --spacing-xl: 4rem;

     /* Border Radius */
     --radius-sm: 8px;
     --radius-md: 12px;
     --radius-lg: 16px;
     --radius-xl: 24px;

     /* Shadows */
     --shadow-glow: 0 0 40px var(--purple-glow);
     --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);

     /* Transitions */
     --transition-fast: 0.2s ease;
     --transition-normal: 0.3s ease;
     --transition-slow: 0.5s ease;
 }

 /* Reset & Base */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-primary);
     background: var(--bg-primary);
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
     min-height: 100vh;
 }

 /* Gradient Background */
 body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(ellipse at top, rgba(139, 47, 201, 0.15) 0%, transparent 50%),
         radial-gradient(ellipse at bottom left, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
     pointer-events: none;
     z-index: 0;
 }

 a {
     text-decoration: none;
     color: #de74ef;
 }

 /* Loader */
 /* .loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--bg-primary);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     transition: opacity 0.5s ease, visibility 0.5s ease;
 }

 .loader.hidden {
     opacity: 0;
     visibility: hidden;
 }

 .loader-logo {
     font-size: 2rem;
     font-weight: 800;
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: pulse 1.5s ease-in-out infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
     }

     50% {
         opacity: 0.7;
         transform: scale(1.05);
     }
 } */

 /* Container */
 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 var(--spacing-sm);
     position: relative;
     z-index: 1;
 }

 @media (min-width: 768px) {
     .container {
         padding: 0 var(--spacing-md);
     }
 }

 /* Header */
 header {
     position: sticky;
     top: 0;
     background: rgba(13, 8, 24, 0.9);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(167, 139, 202, 0.1);
     z-index: 1000;
     transition: background var(--transition-normal);
 }

 nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 1.25rem 0.5rem !important;
 }

 .warn.hidden {
     display: none;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 1.125rem;
     font-weight: 800;
     text-decoration: none;
     color: var(--text-primary);
     transition: transform var(--transition-fast);
 }

 .logo:hover {
     transform: translateY(-2px);
 }

 .logo-icon {
     width: 32px;
     height: 32px;
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.25rem;
 }

 /* Navigation Links */
 .nav-links {
     display: none;
     list-style: none;
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .nav-links {
         display: flex;
     }
 }

 .nav-links a {
     color: var(--text-secondary);
     text-decoration: none;
     font-size: 0.9375rem;
     font-weight: 500;
     transition: color var(--transition-fast);
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -4px;
     left: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--purple-gradient-start), var(--purple-gradient-end));
     transition: width var(--transition-normal);
 }

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

 .nav-links a:hover::after {
     width: 100%;
 }

 /* Auth Buttons */
 .auth-buttons {
     display: none;
     gap: 1rem;
 }

 @media (min-width: 768px) {
     .auth-buttons {
         display: flex;
     }
 }


 .btn {
     padding: 0.625rem 1.5rem;
     border-radius: var(--radius-sm);
     font-weight: 600;
     font-size: 0.9375rem;
     text-decoration: none;
     border: none;
     cursor: pointer;
     transition: all var(--transition-fast);
     white-space: nowrap;
 }

 .btn-outline {
     background: transparent;
     color: var(--text-primary);
     border: 1.5px solid rgba(167, 139, 202, 0.3);
 }

 .btn-outline:hover {
     border-color: var(--purple-vibrant);
     background: rgba(192, 38, 211, 0.1);
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     color: var(--text-primary);
     box-shadow: 0 4px 16px rgba(192, 38, 211, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 24px rgba(192, 38, 211, 0.5);
 }

 /* Mobile Menu Toggle */
 .mobile-menu-toggle {
     display: flex;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     z-index: 1001;
 }

 @media (min-width: 768px) {
     .mobile-menu-toggle {
         display: none;
     }
 }

 .mobile-menu-toggle span {
     width: 24px;
     height: 2px;
     background: var(--text-primary);
     transition: all var(--transition-normal);
     border-radius: 2px;
 }

 .mobile-menu-toggle.active span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
 }

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

 .mobile-menu-toggle.active span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
 }

 /* Mobile Menu */
 .mobile-menu {
     position: fixed;
     height: 100vh;
     top: 69px;
     left: 0;
     right: 0;
     background: rgba(13, 8, 24, 0.98);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     padding: var(--spacing-md);
     transform: translateY(-100%);
     opacity: 0;
     visibility: hidden;
     transition: all var(--transition-normal);
     border-bottom: 1px solid rgba(167, 139, 202, 0.1);
 }

 .mobile-menu.active {
     transform: translateY(0);
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
     margin-bottom: 2rem;
 }

 .mobile-menu a {
     color: var(--text-secondary);
     text-decoration: none;
     font-size: 1.125rem;
     font-weight: 500;
     transition: color var(--transition-fast);
     display: block;
 }

 .mobile-menu a:hover {
     color: var(--purple-light);
 }

 .mobile-menu .auth-buttons {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .mobile-menu .btn {
     display: block;
     text-align: center;
 }

 /* Hero Section */
 .hero {
     padding: 4rem 0;
     min-height: calc(100vh - 200px);
     display: flex;
     align-items: center;
     opacity: 0;
     animation: fadeInUp 0.8s ease forwards;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

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

 .hero-content {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     align-items: center;
 }

 @media (min-width: 992px) {
     .hero-content {
         grid-template-columns: 1fr 1fr;
     }
 }

 .hero-text h1 {
     font-size: 2.5rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 1.5rem;
 }

 @media (min-width: 768px) {
     .hero-text h1 {
         font-size: 3.5rem;
     }
 }

 .hero-text h1 .highlight {
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     position: relative;
     display: inline-block;
 }

 .hero-text p {
     color: var(--text-secondary);
     font-size: 1rem;
     margin-bottom: 2rem;
     max-width: 500px;
 }

 .hero-buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     margin-bottom: 3rem;
 }

 .hero-stats {
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem;
 }

 .stat-item {
     background: rgba(31, 21, 51, 0.6);
     backdrop-filter: blur(8px);
     padding: 1rem 1.5rem;
     border-radius: var(--radius-md);
     border: 1px solid rgba(167, 139, 202, 0.1);
 }

 .stat-item .number {
     font-size: 1.5rem;
     font-weight: 800;
     display: block;
     margin-bottom: 0.25rem;
 }

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

 /* Hero Image */
 .hero-image {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .hero-character {
     width: 100%;
     max-width: 450px;
     height: auto;
     animation: float 6s ease-in-out infinite;
     filter: drop-shadow(0 20px 60px rgba(139, 47, 201, 0.4));
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     25% {
         transform: translateY(-20px) rotate(2deg);
     }

     50% {
         transform: translateY(-10px) rotate(-2deg);
     }

     75% {
         transform: translateY(-15px) rotate(1deg);
     }
 }

 /* Section Styles */
 section {
     padding: 4rem 0;
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 section.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .section-header {
     margin-bottom: 3rem;
 }

 .section-title {
     font-size: 2rem;
     font-weight: 800;
     margin-bottom: 1rem;
 }

 @media (min-width: 768px) {
     .section-title {
         font-size: 2.5rem;
     }
 }

 /* Products Section */
 .products-section {
     padding: 4rem 0;
 }

 .section-subtitle {
     text-align: center;
     color: var(--text-secondary);
     font-size: 1.125rem;
     margin-top: 0.5rem;
 }

 .products-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     margin-top: 3rem;
 }

 @media (min-width: 640px) {
     .products-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .products-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (min-width: 1280px) {
     .products-grid {
         grid-template-columns: repeat(5, 1fr);
     }
 }

 /* Product Card */
 .product-card {
     background: var(--bg-card);
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 1px solid rgba(167, 139, 202, 0.1);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .product-card:hover {
     border-color: var(--purple-vibrant);
     transform: translateY(-12px);
     box-shadow: 0 20px 60px rgba(192, 38, 211, 0.3);
 }

 /* Product Image */
 .product-image-wrapper {
     position: relative;
     width: 100%;
     aspect-ratio: 4 / 5;
     overflow: hidden;
     background: linear-gradient(135deg, rgba(139, 47, 201, 0.1), rgba(217, 70, 239, 0.1));
 }

 .product-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .product-card:hover .product-image {
     transform: scale(1.1) rotate(2deg);
 }

 /* Product Badge */
 .product-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     color: var(--text-primary);
     padding: 0.375rem 0.875rem;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 12px rgba(192, 38, 211, 0.4);
 }

 /* Product Content */
 .product-content {
     padding: 1.5rem;
     display: flex;
     flex-direction: column;
     flex: 1;
 }

 .product-name {
     font-size: 1.125rem;
     font-weight: 700;
     margin-bottom: 0.75rem;
     color: var(--text-primary);
     line-height: 1.3;
 }

 .product-description {
     color: var(--text-secondary);
     font-size: 0.875rem;
     line-height: 1.6;
     margin-bottom: 1.25rem;
     flex: 1;
 }

 /* Product Capacity */
 .product-capacity {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: var(--purple-light);
     font-size: 0.9375rem;
     font-weight: 600;
     margin-bottom: 1.25rem;
 }

 .product-capacity svg {
     stroke-width: 2px;
 }

 /* Product Button */
 .product-btn {
     width: 100%;
     padding: 0.875rem 1.5rem;
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     color: var(--text-primary);
     border: none;
     border-radius: var(--radius-sm);
     font-weight: 700;
     font-size: 0.9375rem;
     cursor: pointer;
     transition: all var(--transition-normal);
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .product-btn:hover {
     transform: translateY(-2px) scale(1.02);
     box-shadow: 0 8px 24px rgba(192, 38, 211, 0.5);
 }

 .product-btn:active {
     transform: translateY(0) scale(0.98);
 }

 /* Animation States */
 .product-card {
     opacity: 0;
     transform: translateY(30px);
 }

 .product-card.animate-in {
     animation: productFadeIn 0.6s ease forwards;
 }

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

 .product-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .product-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .product-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .product-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .product-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 /* Meteas NFT Section */
 .meteas-section {
     background: linear-gradient(135deg, rgba(139, 47, 201, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
     border-radius: var(--radius-xl);
     padding: 3rem 1.5rem;
     margin: 4rem 0;
 }

 .meteas-content {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     align-items: center;
 }

 @media (min-width: 992px) {
     .meteas-content {
         grid-template-columns: 1fr 1.2fr;
     }
 }

 .meteas-image {
     display: flex;
     justify-content: center;
 }

 .meteas-character {
     width: 100%;
     max-width: 300px;
     height: auto;
     animation: float 6s ease-in-out infinite;
     filter: drop-shadow(0 20px 60px rgba(192, 38, 211, 0.4));
 }

 .meteas-text h2 {
     font-size: 2rem;
     font-weight: 800;
     margin-bottom: 1.5rem;
 }

 .meteas-text p {
     color: var(--text-secondary);
     margin-bottom: 1rem;
     font-size: 0.9375rem;
     line-height: 1.7;
 }

 .meteas-features {
     list-style: none;
     margin: 2rem 0;
 }

 .meteas-features li {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     margin-bottom: 1rem;
     color: var(--text-secondary);
     font-size: 0.9375rem;
 }

 .meteas-features li::before {
     content: '•';
     color: var(--purple-vibrant);
     font-size: 1.5rem;
     line-height: 1;
 }

 /* Image Slider Section */
 .slider-section {
     padding: 4rem 0;
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .slider-section.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .slider-container {
     position: relative;
     max-width: 100%;
     margin: 0 auto;
     overflow: hidden;
     border-radius: var(--radius-xl);
     background: var(--bg-card);
     border: 1px solid rgba(167, 139, 202, 0.1);
 }

 .slider-wrapper {
     position: relative;
     width: 100%;
     overflow: hidden;
 }

 .slider-track {
     display: flex;
     transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
     will-change: transform;
 }

 .slider-item {
     min-width: 100%;
     position: relative;
     opacity: 0.5;
     transition: opacity 0.6s ease;
 }

 .slider-item.active {
     opacity: 1;
 }

 .slider-item img {
     width: 100%;
     height: auto;
     aspect-ratio: 2 / 1;
     object-fit: cover;
     display: block;
     border-radius: var(--radius-xl);
 }

 @media (max-width: 768px) {
     .slider-item img {
         aspect-ratio: 16 / 9;
     }
 }

 /* Slider Navigation Buttons */
 .slider-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(31, 21, 51, 0.9);
     backdrop-filter: blur(8px);
     border: 1px solid rgba(167, 139, 202, 0.3);
     color: var(--text-primary);
     width: 48px;
     height: 48px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all var(--transition-normal);
     z-index: 10;
 }

 .slider-btn:hover {
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     border-color: var(--purple-vibrant);
     transform: translateY(-50%) scale(1.1);
     box-shadow: 0 8px 24px rgba(192, 38, 211, 0.4);
 }

 .slider-btn:active {
     transform: translateY(-50%) scale(0.95);
 }

 .slider-btn-prev {
     left: 1rem;
 }

 .slider-btn-next {
     right: 1rem;
 }

 @media (max-width: 768px) {
     .slider-btn {
         width: 40px;
         height: 40px;
     }

     .slider-btn-prev {
         left: 0.5rem;
     }

     .slider-btn-next {
         right: 0.5rem;
     }
 }

 /* Slider Indicators */
 .slider-indicators {
     position: absolute;
     bottom: 2rem;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 0.75rem;
     z-index: 10;
 }

 .slider-indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
     border: 2px solid rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all var(--transition-normal);
     padding: 0;
 }

 .slider-indicator:hover {
     background: rgba(255, 255, 255, 0.6);
     transform: scale(1.2);
 }

 .slider-indicator.active {
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     border-color: var(--purple-vibrant);
     width: 32px;
     border-radius: 6px;
 }

 @media (max-width: 768px) {
     .slider-indicators {
         bottom: 1rem;
         gap: 0.5rem;
     }

     .slider-indicator {
         width: 10px;
         height: 10px;
     }

     .slider-indicator.active {
         width: 24px;
     }
 }

 /* Creator Grid */
 .creator-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.5rem;
 }

 @media (min-width: 640px) {
     .creator-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .creator-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 .creator-card {
     background: var(--bg-card);
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 1px solid rgba(167, 139, 202, 0.1);
     transition: all var(--transition-normal);
     cursor: pointer;
 }

 .creator-card:hover {
     border-color: var(--purple-vibrant);
     transform: translateY(-8px);
     box-shadow: 0 12px 40px rgba(192, 38, 211, 0.3);
 }

 .creator-image {
     width: 100%;
     aspect-ratio: 1;
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     position: relative;
     overflow: hidden;
 }

 .creator-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform var(--transition-slow);
 }

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

 .creator-info {
     padding: 1.25rem;
     text-align: center;
 }

 .creator-name {
     font-weight: 700;
     font-size: 1.0625rem;
     margin-bottom: 0.5rem;
 }

 .creator-sales {
     color: var(--text-muted);
     font-size: 0.875rem;
 }

 /* CTA Section */
 .cta-section {
     background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
     border-radius: var(--radius-xl);
     padding: 4rem 2rem;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 50%;
     height: 100%;
     background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     opacity: 0.2;
 }

 .cta-content {
     position: relative;
     z-index: 1;
 }

 .cta-section h2 {
     /* font-size: 2.5rem; */
     font-weight: 900;
     margin-bottom: 2rem;
     line-height: 1.2;
 }

 @media (min-width: 768px) {
     .cta-section h2 {
         font-size: 3rem;
     }
 }

 .cta-section .btn {
     background: white;
     color: var(--purple-vibrant);
     font-weight: 700;
     padding: 1rem 2.5rem;
     font-size: 1.0625rem;
 }

 .cta-section .btn:hover {
     transform: translateY(-2px) scale(1.05);
     box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
 }

 /* Footer */
 footer {
     position: relative;
     width: 100%;
     background-color: transparent;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 35px;
     padding: 40px 100px;
 }

 footer a {
     text-decoration: none;
     color: inherit;
 }

 .footer-logo {
     padding: 35px 20px;
     padding-top: 20px;
     margin-right: 40px;
 }

 .footer-logo img {
     width: 100px;
     height: auto;
 }

 .footer-cont {
     width: 100%;
     display: flex;
     color: white;
     font-size: 26px;
     gap: 80px;
     padding-bottom: 35px;
     border-bottom: 2px solid gray;
     position: relative;
 }

 .foot-cont-one {
     display: flex;
     gap: 80px;
 }

 .copyright {
     width: 100%;
     text-align: center;
     padding-top: 35px;
     border-top: 2px solid gray;

     color: rgb(168, 167, 167);
 }

 footer svg {
     fill: rgba(255, 255, 255, 0.842);
     stroke-miterlimit: 10;
     stroke-width: 1px;
     width: 40px;
 }

 .city {
     position: relative;
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 26px;
 }

 .cont-col {
     display: flex;
     flex-direction: column;
 }

 .cont-col:first-child {
     color: rgb(168, 167, 167);
 }

 .cont-col:first-child a:first-child {
     color: white;
 }

 .foot-cont-two {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .foot-cont-two div {
     align-items: center;
     display: flex;
     gap: 20px;
 }

 .foot-cont-three {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     color: white;
     font-size: 20px;
 }

 .foot-cont-three p:hover {
     cursor: pointer;
     transform: scale(1.1);
 }

 .foot-cont-three p {
     position: relative;
     padding-right: 16px;
 }

 .foot-cont-three p::after {
     content: "▼";
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     font-size: 12px;
 }

 .foot-cont-three p.active::after {
     transform: translateY(-50%) rotate(180deg);
 }

 .foot-cont-three a {
     display: none;
 }

 .social {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: start;
     gap: 10px;
     border-bottom: 2px solid gray;
 }

 @media (max-width: 768px) and (min-width: 320px) {
     footer {
         align-items: center;
         padding: 40px 40px;
     }

     .warn {
         font-size: 10px !important;
     }

     .footer-logo {
         margin-right: 0;
     }

     .social {
         gap: 0;
     }

     .footer-logo img {
         object-fit: cover;
         width: 90px;
     }

     .footer-cont {
         font-size: 18px;
         flex-direction: column;
     }

     .foot-cont-two {
         padding-top: 35px;
         border-top: 2px solid gray;
     }

     .foot-cont-three {
         flex-direction: column;
     }

     .featured-title {
         font-size: 1.25rem;
     }

     .featured-desc {
         font-size: 0.9rem;
     }

     .featured-btns {
         flex-direction: column;
         align-items: center;
         justify-content: center;
         gap: 10px;
     }

     .featured-btns a {
         width: 100%;
         text-align: center;
         padding: 10px 20px;
     }
 }

 /* Utility Classes */
 .fade-in {
     animation: fadeIn 0.6s ease forwards;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .stagger-1 {
     animation-delay: 0.1s;
 }

 .stagger-2 {
     animation-delay: 0.2s;
 }

 .stagger-3 {
     animation-delay: 0.3s;
 }

 .stagger-4 {
     animation-delay: 0.4s;
 }

 .stagger-5 {
     animation-delay: 0.5s;
 }

 .stagger-6 {
     animation-delay: 0.6s;
 }


 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background: rgba(0, 0, 0, 0.8);
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 .modal-content {
     background: var(--border-color);
     border-radius: 15px;
     color: white;
     padding: 30px 40px;
     text-align: center;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
     max-width: 400px;
 }

 .modal-content h2 {
     margin-bottom: 20px;
     font-size: 20px;
 }

 .buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 button {
     /* padding: 10px 25px; */
     font-size: 16px;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 #yesBtn {
     background: #6b2df0;
     color: #fff;
 }

 #yesBtn:hover {
     background: #3e8e41;
 }

 #noBtn {
     background: #9d3bf6;
     color: #fff;
 }

 #noBtn:hover {
     background: #d32f2f;
 }

 /* Warning section */
 .warn {
     font-size: 16px;
     background-color: #000;
     color: white;
     width: 100%;
     text-align: center;
     padding: 10px 0;
     font-weight: bold;
 }