
        /* Base Styles */
        :root {
            --primary: #8e2de2;
            --primary-gradient: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
            --secondary: #14f195;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --card-bg: rgba(255, 255, 255, 0.08);
            --card-border: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        
         /* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Flowing background gradient & particles - USED */
.cinematic-bg,
.floating-particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  padding: 0.4rem 5%;
  min-height: 44px;
  background-color: rgba(26, 26, 46, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
}

.logo span {
  color: var(--secondary);
}

.logo-icon {
  margin-right: 10px;
  font-size: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2.5rem;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(26, 26, 46, 0.95);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  top: 100%;
  left: 0;
  margin-top: 10px;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-content a {
  color: var(--light);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:hover {
  background-color: rgba(142, 45, 226, 0.3);
  color: var(--secondary);
  padding-left: 20px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1001;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-menu {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light);
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--secondary);
  background-color: rgba(142, 45, 226, 0.1);
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  color: var(--light);
  background: none;
  border: none;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-dropdown-btn:hover {
  color: var(--secondary);
  background-color: rgba(142, 45, 226, 0.1);
}

.mobile-dropdown-content {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  padding-left: 1rem;
}

.mobile-dropdown-content.active {
  display: block;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

@keyframes horizontalGradient {
  0% {
    background-position: 0% 0;
  }

  50% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0% 0;
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(142, 45, 226, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(20, 241, 149, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(74, 0, 224, 0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

section,
footer {
  position: relative;
  z-index: 1;
}

        /* Header */
        header {
            padding: 100px 20px 80px;
            text-align: center;
            background: var(--primary-gradient);
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--secondary);
            box-shadow: 0 20px 60px rgba(20, 241, 149, 0.2);
        }

        header::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 60vw;
            height: 60vw;
            max-width: 500px;
            max-height: 500px;
            background: rgba(20, 241, 149, 0.15);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            filter: blur(50px);
        }

        header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 40vw;
            height: 40vw;
            max-width: 300px;
            max-height: 300px;
            background: rgba(255, 0, 110, 0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
            filter: blur(50px);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(30px); }
        }

        h1 {
            font-size: clamp(2.5rem, 9vw, 4.5rem);
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            line-height: 1.1;
            text-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 1;
        }

        .subtitle {
            font-size: clamp(1.1rem, 4vw, 1.4rem);
            color: rgba(255, 255, 255, 0.95);
            font-weight: 300;
            max-width: 90%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .date-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.4);
            padding: 12px 30px;
            border-radius: 50px;
            margin-top: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        /* Share Buttons */
        .share-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 35px;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: var(--light);
            cursor: pointer;
            font-size: 1.3rem;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            position: relative;
        }

        .share-btn:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: scale(1.2) translateY(-5px) rotate(5deg);
            box-shadow: 0 15px 40px rgba(20, 241, 149, 0.4);
            border-color: var(--secondary);
        }

        .share-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -35px;
            background: rgba(0, 0, 0, 0.9);
            color: var(--secondary);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            z-index: 10;
        }

        .share-btn:hover::after {
            opacity: 1;
        }

        /* Main Content */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Devotional Card */
        .devotional-card {
            background: var(--card-bg);
            border: 2px solid var(--card-border);
            border-radius: 20px;
            padding: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(142, 45, 226, 0.15);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .devotional-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(20, 241, 149, 0.1), transparent);
            border-radius: 50%;
            transition: all 0.6s ease;
        }

        .devotional-card:hover::before {
            right: -20%;
        }

        /* Scripture Section */
        .scripture-section {
            background: linear-gradient(135deg, rgba(142, 45, 226, 0.25), rgba(20, 241, 149, 0.15));
            border-left: 5px solid var(--secondary);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            box-shadow: 0 10px 30px rgba(20, 241, 149, 0.15);
            z-index: 1;
        }

        .scripture-section::before {
            content: '📖';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            opacity: 0.2;
        }

        .scripture-label {
            color: var(--secondary);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
        }

        .scripture-text {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .scripture-reference {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.1rem;
            text-align: right;
        }

        /* Devotional Content */
        .devotional-content {
            position: relative;
            z-index: 1;
        }

        .devotional-content h3 {
            color: var(--secondary);
            font-size: 1.5rem;
            margin: 40px 0 20px 0;
        }

        .devotional-content p {
            font-size: 1.05rem;
            margin-bottom: 25px;
            color: rgba(248, 249, 250, 0.92);
            line-height: 1.9;
        }

        .devotional-content strong {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Key Points Section */
        .key-points {
            background: var(--card-bg);
            border: 2px solid var(--card-border);
            border-radius: 15px;
            padding: 30px;
            margin: 35px 0;
            backdrop-filter: blur(10px);
        }

        .key-points h4 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .key-points ul {
            list-style: none;
            margin-left: 0;
        }

        .key-points li {
            padding: 15px;
            margin-bottom: 10px;
            background: rgba(142, 45, 226, 0.1);
            border-left: 4px solid var(--secondary);
            border-radius: 8px;
            color: rgba(248, 249, 250, 0.9);
            transition: all 0.3s ease;
        }

        .key-points li:hover {
            background: rgba(20, 241, 149, 0.15);
            transform: translateX(10px);
        }

        /* Reflection Questions */
        .reflection-section {
            background: linear-gradient(135deg, rgba(20, 241, 149, 0.15), rgba(142, 45, 226, 0.15));
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            border: 2px solid rgba(20, 241, 149, 0.3);
        }

        .reflection-section h3 {
            color: var(--secondary);
            font-size: 1.6rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reflection-question {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            color: rgba(248, 249, 250, 0.9);
            font-size: 1.05rem;
            border-left: 3px solid var(--secondary);
        }

        /* Prayer Section */
        .prayer-section {
            background: var(--primary-gradient);
            border-radius: 20px;
            padding: 45px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 20px 60px rgba(142, 45, 226, 0.3);
            position: relative;
            overflow: hidden;
        }

        .prayer-section::before {
            content: '🙏';
            position: absolute;
            font-size: 10rem;
            opacity: 0.1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .prayer-section h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .prayer-text {
            font-size: 1.2rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.9;
            position: relative;
            z-index: 1;
        }

        /* Action Steps */
        .action-steps {
            background: linear-gradient(135deg, var(--secondary), #10b981);
            border-radius: 20px;
            padding: 45px;
            margin: 40px 0;
            box-shadow: 0 20px 60px rgba(20, 241, 149, 0.3);
        }

        .action-steps h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .action-item {
            background: rgba(26, 26, 46, 0.8);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            color: var(--light);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .action-item:hover {
            transform: translateX(10px);
            background: rgba(26, 26, 46, 0.95);
        }

        .action-number {
            background: var(--primary-gradient);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Media Container */
        .media-container {
            background: var(--card-bg);
            border: 2px solid var(--card-border);
            border-radius: 20px;
            overflow: hidden;
            margin: 40px 0;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(142, 45, 226, 0.1);
        }

        .media-container:hover {
            border-color: var(--secondary);
            box-shadow: 0 20px 60px rgba(20, 241, 149, 0.25);
            transform: translateY(-5px);
        }

        .media-label {
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(142, 45, 226, 0.3), rgba(20, 241, 149, 0.15));
            color: var(--secondary);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .video-player {
            aspect-ratio: 16 / 9;
            width: 100%;
            border: none;
            background: #000;
        }

        /* Related Verses */
        .related-verses {
            background: var(--card-bg);
            border: 2px solid var(--card-border);
            border-radius: 15px;
            padding: 30px;
            margin: 35px 0;
            backdrop-filter: blur(10px);
        }

        .related-verses h4 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .verse-item {
            padding: 15px;
            margin-bottom: 12px;
            background: rgba(142, 45, 226, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .verse-item:hover {
            background: rgba(20, 241, 149, 0.15);
            transform: translateX(5px);
        }

        .verse-ref {
            color: var(--secondary);
            font-weight: 700;
            display: block;
            margin-bottom: 8px;
        }

        .verse-text {
            color: rgba(248, 249, 250, 0.85);
            font-style: italic;
        }

        

 /* Prevent any horizontal scroll */
        img, video, iframe, table, .media-container, .image-container {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Media */
        .video-player {
            aspect-ratio: 16 / 9;
            width: 100%;
            border: none;
            border-radius: 16px;
            background: #000;
        }

        .media-container {
            margin: 40px 0;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid var(--card-border);
            background: var(--card-bg);
            box-shadow: 0 10px 40px rgba(142, 45, 226, 0.1);
        }

        .media-label {
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(142, 45, 226, 0.3), rgba(20, 241, 149, 0.15));
            color: var(--secondary);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        /* Responsive Tables */
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 40px 0;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(142, 45, 226, 0.1);
        }

        table {
            min-width: 600px; /* Forces horizontal scroll if needed */
        }

        /* Mobile First Adjustments */
        @media (max-width: 768px) {
            header {
                padding: 80px 15px 60px;
            }

            .container {
                padding: 40px 15px;
            }

            .share-btn {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }

            .toc, .case-study, .testimonial, .takeaway, .blockquote {
                padding: 24px;
                border-radius: 16px;
            }

            .image-container {
                height: 240px;
                padding: 20px;
                font-size: 1rem;
            }

            h2 {
                margin-top: 50px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                letter-spacing: -1px;
            }

            .subtitle {
                font-size: 1.15rem;
            }

            p, li {
                font-size: 1rem;
            }

            .takeaway, .blockquote {
                padding: 28px 20px;
            }
        }

        /* Smooth scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary), var(--secondary));
            border-radius: 10px;
        }

        
/* Animations */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    width: 55%;
  }
  
  .hero-image {
    width: 45%;
  }
}

@media (max-width: 768px) {
  
   
  .hero {
    flex-direction: column;
    height: auto;
    padding: 120px 5% 5rem;
  }
  
  .hero-content {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

        /* Toast */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--secondary), #10b981);
            color: var(--dark);
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: 600;
            z-index: 1000;
            animation: slideIn 0.4s ease-out;
            box-shadow: 0 10px 30px rgba(20, 241, 149, 0.4);
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            header {
                padding: 80px 15px 60px;
            }

            .container {
                padding: 40px 15px;
            }

            .devotional-card,
            .scripture-section,
            .prayer-section,
            .action-steps {
                padding: 30px 20px;
            }

            h1 {
                letter-spacing: -1px;
            }
        }


         /* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.nav-btn {
    flex: 1;
    min-width: 280px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(20, 241, 149, 0.25);
}

.nav-arrow {
    font-size: 2rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.prev-btn:hover .nav-arrow {
    transform: translateX(-5px);
}

.next-btn {
    flex-direction: row-reverse;
    text-align: right;
}

.next-btn:hover .nav-arrow {
    transform: translateX(5px);
}

.nav-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-label {
    font-size: 0.85rem;
    color: rgba(248, 249, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    font-size: 1.05rem;
    color: var(--light);
    font-weight: 600;
}

/* Jump to Article Button */
.jump-to-article-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gradient);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    padding: 15px 25px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(142, 45, 226, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.jump-to-article-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(20, 241, 149, 0.5);
}

/* Article Navigator Modal */
.article-navigator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.article-navigator-modal.active {
    display: flex;
}

.navigator-content {
    background: var(--dark);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.navigator-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--card-border);
    gap: 20px;
}

.navigator-header h3 {
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.navigator-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-articles {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--card-border);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--light);
    font-size: 0.95rem;
    width: 250px;
    outline: none;
    transition: all 0.3s ease;
}

.search-articles:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.search-articles::placeholder {
    color: rgba(248, 249, 250, 0.4);
}

.navigator-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(248, 249, 250, 0.6);
}

.navigator-stats span {
    background: rgba(142, 45, 226, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(142, 45, 226, 0.3);
}

.close-navigator {
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-navigator:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.navigator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.navigator-item {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.navigator-item:hover:not(.current) {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 241, 149, 0.2);
}

.navigator-item.active {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.2), rgba(20, 241, 149, 0.1));
}

.navigator-item.active::after {
    content: '📍 You are here';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: var(--dark);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.navigator-item.current {
    opacity: 0.5;
    cursor: not-allowed;
}

.item-number {
    width: 35px;
    height: 35px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.item-title {
    font-size: 0.95rem;
    color: rgba(248, 249, 250, 0.9);
    line-height: 1.4;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination-btn {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 8px;
    padding: 10px 18px;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--secondary);
    background: rgba(20, 241, 149, 0.1);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: var(--primary-gradient);
    border-color: var(--secondary);
}

.pagination-info {
    color: rgba(248, 249, 250, 0.6);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-navigation {
        flex-direction: column;
    }

    .nav-btn {
        min-width: 100%;
    }

    .jump-to-article-btn {
        bottom: 70px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .navigator-content {
        padding: 25px;
    }

    .navigator-header {
        flex-direction: column;
    }

    .navigator-controls {
        width: 100%;
        flex-direction: column;
    }

    .search-articles {
        width: 100%;
    }

    .navigator-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navigator-header h3 {
        font-size: 1.4rem;
    }
}























/* Footer */
.footer {
  background-color: #14142b;
  padding: 5rem 5% ;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary-gradient);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Suggested Section in Mobile Nav */
.suggested-section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.suggested-section h4 {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.suggested-section a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(142, 45, 226, 0.1);
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--secondary);
}

.suggested-section a:hover {
  background: rgba(142, 45, 226, 0.2);
  color: var(--secondary);
  padding-left: 2rem;
}

/* Animations */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    width: 55%;
  }

  .hero-image {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 5%;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    flex-direction: column;
    height: auto;
    padding: 120px 5% 5rem;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }
}


