/* CSS Variables - Design System */
:root {

    --background: hsl(220, 15%, 8%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(220, 15%, 12%);
    --card-foreground: hsl(210, 40%, 98%);
    --popover: hsl(220, 15%, 12%);
    --popover-foreground: hsl(210, 40%, 98%);
    --primary: hsl(270, 90%, 60%);
    --primary-foreground: hsl(210, 40%, 98%);
    --secondary: hsl(220, 15%, 15%);
    --secondary-foreground: hsl(210, 40%, 98%);
    --muted: hsl(220, 15%, 15%);
    --muted-foreground: hsl(215, 20%, 65%);
    --accent: hsl(270, 90%, 60%);
    --accent-foreground: hsl(210, 40%, 98%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);
    --border: hsl(220, 15%, 20%);
    --input: hsl(220, 15%, 20%);
    --ring: hsl(270, 90%, 60%);
    --radius: 0.5rem;
    --gold: hsl(45, 100%, 60%);
    --cyan: hsl(190, 100%, 60%);
    --purple-deep: hsl(270, 60%, 20%);
    --purple-light: hsl(270, 100%, 80%);
    --maroon: hsl(0, 60%, 30%);
    --maroon-light: hsl(10, 70%, 45%);


}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-brand a {
    text-decoration: none;
}

.logo {
    height: 3rem;
    width: auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--secondary);
}

.hamburger {
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--foreground);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    bottom: -0.5rem;
}

.mobile-menu-btn.active .hamburger {
    background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: flex;
}

/* Responsive Navigation */
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
    background-image: url('/images/bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background), rgba(17, 24, 39, 0.8), transparent);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    padding: 5rem 0;
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.hero-logo img {
    max-width: 100%;
    height: auto;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    flex-wrap: wrap;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-item .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--muted-foreground);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

/* Responsive Hero */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), hsl(270, 60%, 40%));
    color: var(--primary-foreground);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-secondary {
    background-color: rgba(55, 65, 81, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Responsive Sections */
@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.875rem;
    }
}

/* Text Utilities */
.text-large {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-africa {
    background: linear-gradient(135deg, var(--maroon-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradients */
.gradient-hero {
    background: linear-gradient(135deg, var(--background) 0%, hsl(270, 30%, 12%) 100%);
}

.gradient-africa {
    background: linear-gradient(135deg, var(--background) 0%, var(--maroon) 50%, hsl(270, 30%, 12%) 100%);
}

.gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(270, 60%, 40%) 100%);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Cards */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

/* Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-1 {
    grid-template-columns: 1fr;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-features {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    space-y: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.features-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Responsive About */
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 1.5rem;
}

.event-location {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Responsive Events */
@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* What to Expect Grid */
.expect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.expect-card {
    text-align: center;
}

.expect-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), hsl(270, 60%, 40%));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expect-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.expect-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expect-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Responsive Expect */
@media (min-width: 768px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Awards Section */
.awards-logo {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.awards-logo img {
    max-width: 20rem;
    height: auto;
}

.awards-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.awards-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.awards-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* Responsive Awards */
@media (min-width: 640px) {
    .awards-buttons {
        flex-direction: row;
    }
}

/* Sponsorship Section */
.sponsorship-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.sponsorship-benefits {
    list-style: none;
    margin-top: 2rem;
}

.sponsorship-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sponsorship-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.sponsorship-cta {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Sponsorship */
@media (min-width: 1024px) {
    .sponsorship-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.footer {
    background: rgba(55, 65, 81, 0.3);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    max-width: 12rem;
    height: auto;
}

.footer-contact h4,
.footer-organized h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--muted-foreground);
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary);
}

.organizer-logo {
    height: 4rem;
    width: auto;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.copyright {
    text-align: center;
}

.copyright p {
    color: var(--muted-foreground);
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
    
    .copyright {
        text-align: right;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--foreground);
}

.modal-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Utility Classes */
.icon {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error States */
.success {
    color: hsl(142, 76%, 36%);
}

.error {
    color: var(--destructive);
}

/* Responsive Utilities */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .modal {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
    }
}



/* imported styles from lovable */

.text-muted-foreground {
    color: var(--muted-foreground);
}

.leading-relaxed {
    line-height: 1.625;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.gradient-card
{
    background: linear-gradient(135deg, #1a1d23, #261f2e);
}

.p-8 {
    padding: 2rem;
}

.border-border {
    border-color: var(--border);
}

.border {
    border-width: 1px;
}

.rounded-2xl {
    border-radius: 1rem;
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
    margin: 0;
}

* {
    border-color: var(--border);
}

.group:hover .group-hover\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.duration-300 {
    animation-duration: .3s;
}
.duration-300 {
    transition-duration: .3s;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
.text-primary {
    color: var(--primary);
}
.mb-4 {
    margin-bottom: 1rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-background {
    background-color: var(--background);
}

.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}
.font-bold {
    font-weight: 700;
}
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}


gradient-card {
    background: linear-gradient(135deg, #1a1d23, #261f2e);
}
.p-12 {
    padding: 3rem;
}
.border-border {
    border-color: var(--border);
}
.border {
    border-width: 1px;
}
.rounded-3xl {
    border-radius: 1.5rem;
}
.mt-16 {
    margin-top: 4rem;
}



/* Solid color class (replaces --background) */
.background-color {
  background-color: #2c3e50; /* Example: dark blue-gray */
}

/* Transparent gradient */
.to-transparent {
  background-image: linear-gradient(to top, transparent, transparent);
}

/* Gradient fading to 60% opacity */
.via-background-60 {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1),    /* Solid color */
    rgba(0, 0, 0, 0.6),   /* 60% opacity */
    rgba(0, 0, 0, 0)      /* Fully transparent */
  );
}

/* Basic fade-out gradient */
.from-background {
  background-image: linear-gradient(
    to top,
    #000000,    /* Solid color */
    transparent  /* Fades to transparent */
  );
}

/* Direction class */
.bg-gradient-to-t {
  background-image: linear-gradient(to top, #000000, transparent);
}.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.absolute {
    position: absolute;
}

.mb-0{
    margin-bottom: 0px;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #0000004d;
}
.hover-lift {
    transition: transform .3s ease, box-shadow .3s ease;
}
.p-8 {
    padding: 2rem;
}
.bg-card {
    background-color: var(--card);
}
.border-border {
    border-color: var(--border);
}
.border {
    border-width: 1px;
}
.rounded-2xl {
    border-radius: 1rem;
}

.items-start {
    align-items: flex-start;
}
.flex {
    display: flex
;
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.p-4 {
    padding: 1rem;
}
.to-pink-500 {
    --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.from-purple-500 {
    --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.rounded-xl {
    border-radius: .75rem;
}


.hover-lift {
    transition: transform .3s ease, box-shadow .3s ease;
}
.gradient-card {
    background: linear-gradient(135deg, #1a1d23, #261f2e);
}

.border-border {
    border-color: hsl(var(--border));
}
.border {
    border-width: 1px;
}
.rounded-2xl {
    border-radius: 1rem;
}
.overflow-hidden {
    overflow: hidden;
}
