.ftr-footer {
    background-color: var(--color-bg);
    padding-top: 6rem;
    /* pt-24 */
    padding-bottom: 3rem;
    /* pb-12 */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* --- Main Content Grid --- */
.ftr-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: Single column */
    gap: 3rem;
    /* gap-12 */
    margin-bottom: 5rem;
    /* mb-20 */
}

@media (min-width: 768px) {
    .ftr-main-grid {
        /* Desktop: 12-column grid */
        grid-template-columns: repeat(12, 1fr);
        gap: 3rem;
    }
}

/* --- Logo / Description Section --- */
.ftr-logo-section {
    /* md:col-span-6 */
    grid-column: span 1 / span 1;
}

@media (min-width: 768px) {
    .ftr-logo-section {
        grid-column: span 6 / span 6;
    }
}

.ftr-logo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3rem;
    /* 5xl */
    line-height: 1;
    color: white;
    letter-spacing: -0.05em;
    /* tracking-tighter */
    margin-bottom: 2rem;
    /* mb-8 */
}

@media (min-width: 768px) {
    .ftr-logo-title {
        font-size: 4.5rem;
        /* md:text-7xl */
    }
}

/* The Text Stroke Effect */
.ftr-text-stroke {
    color: transparent;
    /* Make the fill color transparent */
    -webkit-text-stroke: 1px white;
    /* Add a 1px white stroke */
    text-stroke: 1px white;
    /* Standard stroke property (less supported) */
}

.ftr-description {
    color: #94a3b8;
    /* slate-400 */
    max-width: 28rem;
    /* max-w-md */
    font-size: 1.125rem;
    /* text-lg */
}

/* --- Navigation Columns --- */

.ftr-nav-column {
    /* Default span 1 */
    grid-column: span 1 / span 1;
}

/* Event Column Positioning */
.ftr-nav-event {
    /* md:col-span-2 md:col-start-9 */
    grid-column: span 1 / span 1;
}

@media (min-width: 768px) {
    .ftr-nav-event {
        grid-column: span 2 / span 2;
        grid-column-start: 9;
    }
}

/* Socials Column Positioning */
.ftr-nav-socials {
    /* md:col-span-2 */
    grid-column: span 1 / span 1;
}

@media (min-width: 768px) {
    .ftr-nav-socials {
        grid-column: span 2 / span 2;
    }
}

.ftr-nav-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /* mb-6 */
}

.ftr-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* space-y-4 */
    color: #94a3b8;
    /* slate-400 */
}

.ftr-nav-list a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.ftr-nav-list a:hover {
    color: var(--color-primary);
    /* hover:text-neon-400 */
}


/* --- Bottom Bar --- */
.ftr-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    /* pt-8 */
    display: flex;
    flex-direction: column;
    /* Mobile: Stacked */
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    /* gap-4 */
    color: #475569;
    /* slate-600 */
    font-size: 0.875rem;
    /* text-sm */
}

@media (min-width: 768px) {
    .ftr-bottom-bar {
        flex-direction: row;
        /* Desktop: Row */
    }
}

.ftr-bottom-tag {
    font-family: var(--font-mono);
    text-transform: uppercase;
}