:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
    --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Featured Grid */
.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card-image {
    height: 180px;
    background: #2d3748;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content {
    padding: 1.5rem;
}

.card-category {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.payout {
    font-weight: 600;
    color: #10b981;
    font-size: 0.9rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.btn-link:hover {
    color: var(--primary);
}

/* Footer */
.footer {
    background: #020617;
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4, .footer-legal h4 {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-links a, .footer-legal a {
    color: var(--text-muted);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/ *   U p d a t e d   C a r d   S t y l e s   f o r   F a s t   L o a d i n g   &   P r e m i u m   L o o k   * /  
 . c a r d - h e a d e r   {  
         b a c k g r o u n d :   # 1 e 2 9 3 b ;  
         p a d d i n g :   2 r e m ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         p o s i t i o n :   r e l a t i v e ;  
         h e i g h t :   1 6 0 p x ;  
 }  
  
 . l o g o - w r a p p e r   {  
         b a c k g r o u n d :   w h i t e ;  
         p a d d i n g :   1 r e m ;  
         b o r d e r - r a d i u s :   1 r e m ;  
         w i d t h :   8 0 p x ;  
         h e i g h t :   8 0 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         b o x - s h a d o w :   0   4 p x   6 p x   - 1 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . l o g o - w r a p p e r   i m g   {  
         m a x - w i d t h :   1 0 0 % ;  
         m a x - h e i g h t :   1 0 0 % ;  
         o b j e c t - f i t :   c o n t a i n ;  
 }  
  
 . c a r d - h e a d e r . m i n i   {  
         h e i g h t :   1 0 0 p x ;  
         p a d d i n g :   1 . 5 r e m ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
 }  
  
 . l o g o - w r a p p e r . s m a l l   {  
         w i d t h :   5 0 p x ;  
         h e i g h t :   5 0 p x ;  
         p a d d i n g :   0 . 5 r e m ;  
         b o r d e r - r a d i u s :   0 . 7 5 r e m ;  
 }  
  
 / *   E n h a n c i n g   t y p o g r a p h y   f o r   s p e e d / r e a d a b i l i t y   * /  
 . p a y o u t   {  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . p a y o u t - s m   {  
         f o n t - s i z e :   0 . 8 r e m ;  
         c o l o r :   # 1 0 b 9 8 1 ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . c a t e g o r y - t a g   {  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         p a d d i n g :   0 . 2 5 r e m   0 . 7 5 r e m ;  
         b o r d e r - r a d i u s :   9 9 p x ;  
 }  
  
 / *   L i n t   f i x e s   * /  
 . l o g o - i c o n   {  
         b a c k g r o u n d :   v a r ( - - g r a d i e n t ) ;  
         b a c k g r o u n d - c l i p :   t e x t ;  
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ;  
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ;  
 }  
  
 . h e r o   h 1   {  
         f o n t - s i z e :   3 . 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         m a r g i n - b o t t o m :   1 r e m ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   # f f f ,   # 9 4 a 3 b 8 ) ;  
         b a c k g r o u n d - c l i p :   t e x t ;  
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ;  
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ;  
 }  
 / *   A d d   t o   e x i s t i n g   C S S   * /  
  
 / *   P r e m i u m   G l o w   E f f e c t   o n   H o v e r   * /  
 . c a r d : : b e f o r e   {  
         c o n t e n t :   " " ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( 8 0 0 p x   c i r c l e   a t   v a r ( - - x )   v a r ( - - y ) ,  
                         r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 6 ) ,  
                         t r a n s p a r e n t   4 0 % ) ;  
         z - i n d e x :   1 ;  
         o p a c i t y :   0 ;  
         t r a n s i t i o n :   o p a c i t y   0 . 5 s ;  
         p o i n t e r - e v e n t s :   n o n e ;  
 }  
  
 . c a r d : h o v e r : : b e f o r e   {  
         o p a c i t y :   1 ;  
 }  
  
 . c a r d - t i t l e   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   # f f f ,   # e 2 e 8 f 0 ) ;  
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ;  
         b a c k g r o u n d - c l i p :   t e x t ;  
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ;  
 }  
  
 / *   A n i m a t i o n s   * /  
 @ k e y f r a m e s   f a d e I n   {  
         f r o m   {  
                 o p a c i t y :   0 ;  
                 t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ;  
         }  
  
         t o   {  
                 o p a c i t y :   1 ;  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
         }  
 }  
  
 . c a r d   {  
         a n i m a t i o n :   f a d e I n   0 . 6 s   e a s e - o u t   f o r w a r d s ;  
         o p a c i t y :   0 ;  
 }  
  
 / *   S t a g g e r   a n i m a t i o n s   f o r   f i r s t   f e w   i t e m s   * /  
 . c a r d : n t h - c h i l d ( 1 )   {  
         a n i m a t i o n - d e l a y :   0 . 1 s ;  
 }  
  
 . c a r d : n t h - c h i l d ( 2 )   {  
         a n i m a t i o n - d e l a y :   0 . 1 5 s ;  
 }  
  
 . c a r d : n t h - c h i l d ( 3 )   {  
         a n i m a t i o n - d e l a y :   0 . 2 s ;  
 }  
  
 . c a r d : n t h - c h i l d ( 4 )   {  
         a n i m a t i o n - d e l a y :   0 . 2 5 s ;  
 }  
  
 . c a r d : n t h - c h i l d ( 5 )   {  
         a n i m a t i o n - d e l a y :   0 . 3 s ;  
 }  
  
 . c a r d : n t h - c h i l d ( 6 )   {  
         a n i m a t i o n - d e l a y :   0 . 3 5 s ;  
 }  
  
 / *   . . .   a n d   s o   o n ,   b u t   c s s   n t h - c h i l d   i s   e n o u g h   f o r   t h e   " f e e l "   * /  
  
 / *   C u s t o m   S c r o l l b a r   * /  
 : : - w e b k i t - s c r o l l b a r   {  
         w i d t h :   1 0 p x ;  
 }  
  
 : : - w e b k i t - s c r o l l b a r - t r a c k   {  
         b a c k g r o u n d :   # 0 f 1 7 2 a ;  
 }  
  
 : : - w e b k i t - s c r o l l b a r - t h u m b   {  
         b a c k g r o u n d :   # 3 3 4 1 5 5 ;  
         b o r d e r - r a d i u s :   5 p x ;  
 }  
  
 : : - w e b k i t - s c r o l l b a r - t h u m b : h o v e r   {  
         b a c k g r o u n d :   # 4 7 5 5 6 9 ;  
 }  
 