
        :root {
            --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
            --secondary-gradient: linear-gradient(135deg, #00dbde 0%, #fc00ff 100%);
            --dark-bg: #1a1a1a;
            --card-bg: #2d2d2d;
            --neon-orange: #FF6B6B;
            --neon-yellow: #FFE66D;
            --neon-blue: #00f3ff;
            --text-primary: #ffffff;
            --header-height: 80px;
        }

        /* ============ BASE STYLES ============ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
         
            color: var(--text-primary);
            overflow-x: hidden;
            min-height: 100vh;
            padding-top: var(--header-height);
        }
        canvas#lightning-canvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
          }
        /* ============ PRELOADER ============ */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s;
        }

        .preloader-logo {
            width: 150px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.8; }
            50% { transform: scale(1); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.8; }
        }

        /* ============ HEADER ============ */
        /* ========== HEADER ========== */
.cyber-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 0;
  z-index: 999;
  background-color: transparent;
  transition: all 0.3s ease;
}

.cyber-header.scrolled {
  background: rgba(21, 16, 24, 0.98);
  box-shadow: 0 8px 32px rgba(100, 6, 201, 0.3);
  border-bottom: 1px solid rgba(255, 40, 120, 0.3);
}

.cyber-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== LOGO ========== */
.cyber-logo {
  position: relative;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(148, 18, 255, 0.779);
}

.logo-base {
  position: relative;
  z-index: 2;
}

.logo-glitch {
  position: absolute;
  top: 0;
  left: 0;
  color: #7c0bf4;
  opacity: 0;
  animation: glitch 2s infinite;
  clip-path: polygon(0 25%, 100% 65%, 100% 100%, 0% 100%);
}

.logo-hologram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 120%;
  height: 140%;
  background: linear-gradient(45deg, rgba(255, 40, 120, 0.15), rgba(0, 243, 255, 0.15));
  filter: blur(25px);
  z-index: 1;
  opacity: 0.6;
}

/* ========== TOGGLER ========== */
.cyber-toggler {
    background: rgba(16, 16, 24, 0.8);
    border: 1px solid rgba(255, 40, 120, 0.5);
    padding: 0.8rem;
    outline: none;
    cursor: pointer;
    margin-left: 60px; /* <-- Tambahkan ini untuk memberi jarak */
  }
  @media (max-width: 992px) {
  .cyber-toggler {
    margin-left: auto; /* biar push ke kanan */
  }
}


.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger .line {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.cyber-toggler[aria-expanded="true"] .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ff2878;
}

.cyber-toggler[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
}

.cyber-toggler[aria-expanded="true"] .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #00f3ff;
}

/* ========== NAVIGATION ========== */
.cyber-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
/* Center nav on desktop */
.cyber-header .navbar-collapse {
    justify-content: center;
  }
  
  /* Fix toggle button placement */
  .cyber-toggler {
    margin-left: auto;
  }
  
  /* Responsive: full width nav and center content on small screens */
  @media (max-width: 992px) {
    .cyber-header .navbar-collapse {
      justify-content: flex-start;
      padding: 1.5rem;
    }
  
    .cyber-nav {
      align-items: flex-start;
    }
  
    .cyber-toggler {
      margin-left: 0;
    }
  }
  

.cyber-nav .nav-link {
  position: relative;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cyber-nav .nav-link:hover {
  color: #fff;
}

.link-text {
  position: relative;
  z-index: 2;
}

.link-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a600ff, #ffffff);
  transition: all 0.3s ease;
}

.nav-link:hover .link-border {
  width: 100%;
}

/* ========== GRID ANIMATION ========== */
.header-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.1;
}

.grid-line {
  position: absolute;
  background: linear-gradient(to right, transparent, rgba(255, 40, 120, 0.3), transparent);
}

.grid-line.vertical {
  width: 1px;
  height: 100%;
  animation: scanVertical 8s linear infinite;
}

.grid-line.horizontal {
  height: 1px;
  width: 100%;
  animation: scanHorizontal 6s linear infinite;
}

/* ========== ANIMATIONS ========== */
@keyframes scanVertical {
  0% { left: -20%; }
  100% { left: 120%; }
}

@keyframes scanHorizontal {
  0% { top: -20%; }
  100% { top: 120%; }
}

@keyframes glitch {
  0%, 100% { opacity: 0; }
  25% { opacity: 0.3; transform: translateX(-3px); }
  50% { opacity: 0.5; transform: translateX(3px); }
  75% { opacity: 0.8; transform: translateX(-2px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .cyber-nav {
    flex-direction: column;
    background: rgba(16, 16, 24, 0.98);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 40, 120, 0.1);
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(16, 16, 24, 0.98);
  }
}

.hero-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

/* Animated Background */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
  
    animation: particles 20s linear infinite;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.05) 50%, 
        transparent 100%);
}

/* Logo Animation */
.main-logo {
    perspective: 1000px;
}

.logo-core {
    display: inline-block;
    transform-style: preserve-3d;
    animation: floatRotate 6s ease-in-out infinite;
}

.logo-inner {
    position: relative;
    transform: translateZ(50px);
}

.logo-text {
    font-family: 'Arial Black', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0000, #ff6b00, #ffd900);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 100, 0, 0.5);
    position: relative;
    display: inline-block;
    transition: 0.3s ease;
}

.logo-text::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff0000, #ff6b00, #ffd900);
    z-index: -1;
    filter: blur(25px);
    opacity: 0.7;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,100,0,0.4) 0%, rgba(255,100,0,0) 70%);
    animation: glowPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(180deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Hover Effects */
.logo-core:hover .logo-text {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(255, 100, 0, 0.8);
}

.logo-core:hover {
    animation-play-state: paused;
}

/* Text Styling */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #7c0bf4 0%, #f7f7f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-badge {
    display: inline-block;
    font-size: 1rem;
    background: rgba(117, 0, 250, 0.2);
    color: #f8f8f8;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 1rem;
    border: 1px solid rgba(134, 0, 244, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Buttons */
.btn-neon {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    margin: 0 1rem;
    background: linear-gradient(135deg, #7c0bf4 0%, #7c0bf4 100%);
    color: #1a1a1a !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-neon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: 0.5s;
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.4);
}

.btn-neon:hover::after {
    left: 100%;
}

/* Social Buttons */
.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.social-btn i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.social-btn.twitter {
    background: rgba(29,161,242,0.1);
    color: #7c0bf4;
    border-color: rgba(29,161,242,0.3);
}

.social-btn.telegram {
    background: rgba(0,136,204,0.1);
    color: #7c0bf4;
    border-color: rgba(0,136,204,0.3);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-btn:hover.twitter {
    background: rgba(29,161,242,0.2);
}

.social-btn:hover.telegram {
    background: rgba(0,136,204,0.2);
}

/* Animations */
@keyframes glow-pulse {
    0% { opacity: 0.2; }
    50% { opacity: 0.4; }
    100% { opacity: 0.2; }
}

@keyframes particles {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn-neon {
        margin: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-btn {
        justify-content: center;
    }
}

        /* ============ live section ============ */
        .liveon-section {
            background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #8800ff;
            text-shadow: 0 0 15px rgba(0,255,255,0.3);
            position: relative;
            display: inline-block;
            padding: 0 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #9e00fa, transparent);
        }
        
        .partner-card {
            display: block;
            height: 130px;
            background: rgba(255,255,255,0.03);
            border-radius: 12px;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            border: 1px solid rgba(0,255,255,0.15);
            backdrop-filter: blur(5px);
        }
        
        .logo-container {
            padding: 1.5rem;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .partner-logo {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(0.3) brightness(0.9);
            transition: all 0.3s ease;
            object-fit: contain;
        }
        
        .logo-hover-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(0,255,255,0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        /* Hover Effects */
        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,255,255,0.1);
            border-color: rgba(0,255,255,0.3);
            background: rgba(0,255,255,0.05);
        }
        
        .partner-card:hover .partner-logo {
            filter: grayscale(0) brightness(1.1);
            transform: scale(1.08);
        }
        
        .partner-card:hover .logo-hover-glow {
            opacity: 1;
        }
        
        /* Animations */
        .animate-float {
            animation: text-float 3s ease-in-out infinite;
        }
        
        @keyframes text-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .partner-card {
                height: 100px;
            }
            
            .partner-logo {
                max-height: 45px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        /* ============ TOKENOMICS SECTION ============ */
        .tokenomics-section {
            background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 6rem 0;
        }
        
        .tokenomics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .token-card {
            position: relative;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,107,107,0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }
        
        .card-inner {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .percentage-box {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
        }
        
        .percentage {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            z-index: 1;
        }
        
        .percentage-glow {
            position: absolute;
            width: 100%;
            height: 100%;
   
            border-radius: 50%;
            filter: blur(20px);
            opacity: 0.3;
            animation: percentage-glow 2s ease-in-out infinite alternate;
        }
        
        .card-icon {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 1rem;
            background: rgba(191, 0, 255, 0.1);
            padding: 1rem;
            border-radius: 50%;
        }
        
        .token-card h3 {
            color: #FFE66D;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }
        
        .token-card p {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        .card-hover {
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, 
                rgba(255, 0, 238, 0.1) 0%, 
                rgba(152, 0, 246, 0.05) 50%, 
                transparent 70%);
            transition: all 0.4s ease;
            z-index: 0;
        }
        
        .token-card:hover {
            transform: translateY(-10px);
            border-color: rgba(200, 0, 255, 0.3);
            box-shadow: 0 10px 30px rgba(212, 0, 254, 0.1);
        }
        
        .token-card:hover .card-hover {
            bottom: -30%;
            left: -30%;
        }
        
        @keyframes percentage-glow {
            0% { opacity: 0.2; transform: scale(0.95); }
            50% { opacity: 0.4; transform: scale(1.05); }
            100% { opacity: 0.2; transform: scale(0.95); }
        }
        
        @media (max-width: 768px) {
            .tokenomics-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .token-card {
                padding: 1.5rem;
            }
        }
        /* ============ ABOUT SECTION ============ */
        .about-section {
            background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #7c0bf4 0%, #7c0bf4 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .accent-line {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #7c0bf4 0%, #7c0bf4 100%);
            margin: 1rem 0;
        }
        
        .icon-box {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .bg-primary { background: rgba(255,107,107,0.15); }
        .bg-success { background: rgba(76,175,80,0.15); }
        .bg-warning { background: rgba(255,193,7,0.15); }
        
        .glass-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }
        
        .btn-copy {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #7c0bf4;
            transition: all 0.3s ease;
        }
        
        .btn-copy:hover {
            background: rgba(255,255,255,0.1);
            color: #FF6B6B;
        }
        
        .form-control {
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            color: white;
            border-radius: 8px;
        }
        
        @media (max-width: 768px) {
            .about-section {
                padding: 4rem 0;
            }
            
            .display-5 {
                font-size: 2.5rem;
            }
        }

        /* ============ ANIMATIONS ============ */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        @keyframes particle-float {
            to { transform: translateY(-100vh); }
        }

        /* ============ RESPONSIVE DESIGN ============ */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .main-logo {
                width: 150px;
                height: 150px;
            }
            
            .feature-card {
                min-height: auto;
                margin-bottom: 2rem;
            }
        }
        /* How to Buy Section */
.how-to-buy {
    background: rgba(45, 45, 45, 0.4);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #7c0bf4;
    letter-spacing: 1px;
}

.step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,107,107,0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,107,0.3);
}

.step-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon {
    font-size: 1.8rem;
    color: #ffffff;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.step-description {
    color: rgba(255,255,255,0.8);
    text-align: center;
    min-height: 60px;
    margin-bottom: 1.5rem;
}

.step-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #7c0bf4 0%, #7c0bf4 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.step-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.contract-box {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
}

.contract-box code {
    flex-grow: 1;
    color: #7c0bf4;
    font-size: 0.9rem;
}

.copy-button {
    background: none;
    border: none;
    color: #7c0bf4;
    padding: 0;
    transition: all 0.2s ease;
}

.copy-button:hover {
    color: #FFE66D;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-description {
        min-height: auto;
    }
}



.footer {
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    border-top: 4px solid #7c0bf4;
    ;
    position: relative;
    z-index: 2;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-logo img {
    width: 60px;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
  }
  
  .footer-logo h2 {
    font-size: 28px;
    color: #7c0bf4;

    margin: 0;
  }
  
  .footer-logo p {
    font-size: 14px;
    opacity: 0.7;
    max-width: 240px;
  }
  
  .footer-links,
  .footer-socials {
    margin-top: 20px;
    min-width: 160px;
  }
  
  .footer-links h3,
  .footer-socials h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #7c0bf4;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 8px;
  }
  
  .footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #7c0bf4;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #7c0bf4;
    transform: scale(1.2);
  }
  
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    opacity: 0.6;
  }
  
  /* Animation */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-links,
    .footer-socials {
      margin-top: 30px;
    }
  }
  
  .liveon-section {
  
    padding: 80px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.section-title {
    font-size: 3rem;
    color: #7c0bf4;
    text-shadow: 0 0 15px rgba(124, 11, 244, 0.8);
    font-weight: bold;
    position: relative;
    z-index: 3;
}

.partner-card {
    display: block;
    padding: 20px;
    background: rgba(124, 11, 244, 0.05);
    border: 2px solid rgba(124, 11, 244, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.partner-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #7c0bf4;
    background: rgba(124, 11, 244, 0.1);
}

.logo-container {
    width: 100%;
    padding: 10px;
}

.partner-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(124, 11, 244, 0.6));
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.logo-hover-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(124, 11, 244, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.partner-card:hover .logo-hover-glow {
    opacity: 1;
}
