/* Click For Crypto - Neonic Dark Theme */
:root {
    --crypto-primary: #00d4ff;
    --crypto-secondary: #7c3aed;
    --crypto-accent: #10b981;
    --crypto-warning: #f59e0b;
    --crypto-danger: #ef4444;
    
    --bg-dark: #0a0e27;
    --bg-darker: #050811;
    --bg-card: #111827;
    --bg-card-hover: #1f2937;
   
    --text-primary: #ffffff;
        --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #050811 100%);
    
    /* Bootstrap overrides */
    --bs-success-rgb: #f8f9fa;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --neon-cyan: #00d4ff;
    --neon-purple: #7c3aed;
    --neon-green: #10b981;
    
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #050811 100%);
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}




.text-success {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
}
/* Navbar */
.navbar {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    transition: all 0.3s ease;
    margin: 0 5px;
    border-radius: 8px;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--neon-cyan) !important;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.navbar-nav .nav-link i {
    margin-right: 0.5rem;
}

/* Cards */
.card {
    background: rgba(12, 8, 29, 0.938);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    
    border-radius: 16px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding: 1rem 1.5rem;
}

.card-body {
    color: var(--text-primary);
}

/* Buttons */
.btn-success, .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-success:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
    background: var(--gradient-secondary);
}

.btn-outline-success, .btn-outline-primary {
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    background: transparent;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-outline-success:hover, .btn-outline-primary:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.btn-info {
    background: var(--gradient-secondary);
    border: none;
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border: none;
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: white;
}

/* Tables */
.table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.table thead {
    background: var(--gradient-primary);
    color: white;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Forms */
.form-control, .form-select {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: var(--neon-cyan);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

/* Dropdown Options */
.form-select option {
    background: rgba(10, 14, 39, 0.95);
    color: var(--text-primary);
}

/* Ensure dropdown arrow is visible */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300d4ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
}

.bg-success {
    background: var(--gradient-secondary) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
}

.bg-light {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Modals */
.modal-content {
    background-color: #212529;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: #05040e;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: var(--gradient-primary);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    color: white;
}

.modal-footer {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(10, 14, 39, 0.5);
}

.modal-body {
    color: var(--text-primary);
   background-color: #212529;
}

/* Pagination */
.pagination .page-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--neon-cyan);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--neon-cyan);
    color: white;
}

.pagination .page-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-cyan);
}

/* Images */
img {
    max-width: 100%;
    border-radius: 12px;
}

/* Section Headers */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
}

h2, h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Alert Messages */
.alert {
    border-radius: 12px;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.alert-success {
    border-color: var(--neon-green);
    color: var(--neon-green);
    background: rgba(16, 185, 129, 0.1);
}

.alert-info {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 212, 255, 0.1);
}

.alert-warning {
    border-color: var(--crypto-warning);
    color: var(--crypto-warning);
    background: rgba(245, 158, 11, 0.1);
}

.alert-danger {
    border-color: var(--crypto-danger);
    color: var(--crypto-danger);
    background: rgba(239, 68, 68, 0.1);
}

/* List Groups */
.list-group-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border-left: 3px solid var(--neon-cyan);
    margin-bottom: 10px;
    border-radius: 8px;
}

.list-group-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-cyan);
}

/* Homepage Hero */
.hero-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.15);
    color: var(--neon-cyan);
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1rem;
}

.hero-illustration {
    position: relative;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 18px;
    padding: 1rem 1.3rem;
    box-shadow: 0 18px 38px rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.floating-card.fc-1 {
    top: 12%;
    left: 5%;
}

.floating-card.fc-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.floating-card.fc-3 {
    top: 45%;
    right: 35%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Stats */
.stats-section {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4rem 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 70%);
    border-radius: 50%;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-value {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.15rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About */
.about-section {
    background: var(--bg-dark);
    padding: 5rem 0;
}

.about-bubble {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 28px;
    padding: 2.7rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.about-bubble::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 70%);
    border-radius: 50%;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.about-list i {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.7rem;
}

.about-tile {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.about-tile:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.about-tile i {
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-tile h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-tile p {
    color: var(--text-secondary);
    margin: 0;
}

/* How it works */
.how-it-works-section {
    background: var(--bg-darker);
    padding: 5rem 0;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.1rem 1.6rem;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: white;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Opportunities */
.opportunity-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 2.4rem 1.9rem;
    box-shadow: 0 32px 58px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    border-radius: 50%;
}

.opportunity-header {
    position: relative;
    z-index: 1;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 18px;
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.opportunity-header i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.opportunity-header .title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.opportunity-header .subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.opportunity-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.opportunity-pill {
    position: relative;
    z-index: 1;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.opportunity-pill:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-cyan);
}

.opportunity-pill strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.02rem;
    color: var(--text-primary);
}

.opportunity-pill span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.35rem 0;
}

.opportunity-pill p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.empty-pill {
    background: rgba(0, 212, 255, 0.05);
    color: var(--text-secondary);
    text-align: center;
    padding: 1.2rem;
}

/* Resources */
.resources-section {
    background: var(--bg-darker);
    padding: 5rem 0;
}

.resource-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.resource-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.15);
    color: var(--neon-cyan);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.resource-image, .listing-cover {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 1.3rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    height: 190px;
}

.resource-image img, .listing-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-image.placeholder {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), rgba(17, 24, 39, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0, 212, 255, 0.5);
}

.thumb-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.thumb-strip img {
    width: 100%;
    height: 100%;
    min-height: 90px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.thumb-strip img:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* CTA */
.cta-section {
    background: var(--gradient-primary);
    border-radius: 36px;
    margin: 3rem 1.5rem;
    padding: 3rem 3rem;
    box-shadow: 0 35px 55px rgba(0, 212, 255, 0.4);
    text-align: center;
}

.cta-section .section-title {
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.cta-section .btn-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

@media (max-width: 992px) {
    .cta-section {
        margin: 2rem 0.75rem;
        padding: 2.7rem 2rem;
    }
}

/* Footer */
.footer-dark {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
    padding: 2rem 0;
}

.footer-dark h5 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-dark p {
    color: var(--text-secondary);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animate-fade-left {
    transform: translateX(35px);
}

.animate-on-scroll.animate-fade-right {
    transform: translateX(-35px);
}

.animate-on-scroll.animate-zoom-in {
    transform: scale(0.92);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Article page */
.article-hero {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.article-hero.has-image {
    color: #ffffff;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

.article-content {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.article-content h2, .article-content h3, .article-content h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2rem;
}

.article-content p, .article-content li {
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-title {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.text-white {
    color: var(--text-primary) !important;
}

.text-white-50 {
    color: var(--text-secondary) !important;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 17, 0.95);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1050;
}

.lightbox-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: min(90vw, 960px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3);
    transition: transform 0.2s ease;
}

.lightbox-close, .lightbox-prev, .lightbox-next, .lightbox-toolbar button {
    position: absolute;
    border: none;
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-cyan);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover, .lightbox-toolbar button:hover {
    background: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.lightbox-close { top: -22px; right: -22px; }
.lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }

.lightbox-toolbar {
    position: absolute;
    right: -60px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lightbox-toolbar button {
    position: static;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-toolbar { right: 10px; bottom: -60px; flex-direction: row; }
    .lightbox-close { top: 10px; right: 10px; }
}

body.lightbox-open { overflow: hidden; }

/* Messenger */
.messenger-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    min-height: 70vh;
    padding: 1.5rem;
}

.conversation-list {
    max-height: 70vh;
    overflow-y: auto;
}

.conversation-item.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-cyan);
}

.message-thread {
    overflow-y: auto;
    max-height: 60vh;
    padding-right: 0.5rem;
}

.message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 16px;
    max-width: 75%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.message-in {
    background: var(--bg-darker);
    color: var(--text-primary);
}

.message-out {
    background: var(--gradient-primary);
    color: #ffffff;
}

.message-out small {
    color: rgba(255, 255, 255, 0.85);
}

.message-thread::-webkit-scrollbar, .conversation-list::-webkit-scrollbar {
    width: 6px;
}

.message-thread::-webkit-scrollbar-thumb, .conversation-list::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.4);
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    
    .card {
        margin-bottom: 15px;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* Remove microjobs new feature badge animation */
.microjobs-new-feature {
    display: none;
}

/* Additional glass effect for any white backgrounds */
.bg-white,
[class*="bg-white"],
.border.rounded.bg-light {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Ensure text remains visible on glass backgrounds */
.bg-light.text-dark,
.bg-light .text-dark {
    color: var(--text-primary) !important;
}



