/* --- CSS VARIABLES & TOKENS --- */
:root {
    /* Colors */
    --color-dark: #0f172a;
    /* Slate 900 */
    --color-blue: #2563eb;
    /* Blue 600 */
    --color-bg: #f8fafc;
    /* Slate 50 */
    --color-white: #ffffff;

    /* Fonts */
    --font-display: 'Barlow', 'Inter', system-ui, sans-serif;
    --font-body: 'JetBrains Mono', 'Roboto Mono', monospace;

    /* Shadows & Borders (Neo-brutalism) */
    --border-thick: 3px solid var(--color-dark);
    --shadow-hard: 6px 6px 0px 0px var(--color-dark);
    --shadow-hard-hover: 2px 2px 0px 0px var(--color-dark);

    /* Transition timings */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-bg);
}

body {
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    /* Subtle noise texture base */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- UTILITY CLASSES --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.text-blue {
    color: var(--color-blue);
}

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

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

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

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    text-transform: uppercase;
    border: var(--border-thick);
    background-color: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--shadow-hard);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--shadow-hard-hover);
}

.btn-primary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Utilities */
.d-none-mobile {
    display: none;
}

@media (min-width: 768px) {
    .d-none-mobile {
        display: inline-flex;
    }
}

/* --- COMPONENTS --- */

/* Header & Nav */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--color-bg);
    border-bottom: var(--border-thick);
}

/* Needs solid background behind noise */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-bg);
    z-index: -1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
}

.nav-links {
    display: none;
    gap: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    transition: color var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--color-blue);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    text-wrap: balance;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-blue);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #334155;
    text-wrap: balance;
}

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

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Marquee */
.marquee-wrapper {
    overflow: hidden;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    padding: 1rem 0;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Video Section */
.video-section {
    padding: 6rem 0;
}

.video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    background-color: var(--color-dark);
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Features Grid */
.features {
    padding: 6rem 0;
    background-color: var(--color-white);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background-color: var(--color-bg);
    border: var(--border-thick);
    padding: 2.5rem;
    box-shadow: var(--shadow-hard);
    transition: transform var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Schedule Matrix */
.schedule-matrix-container {
    overflow-x: auto;
    background-color: var(--color-dark);
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.schedule-matrix {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    color: var(--color-white);
    font-family: var(--font-display);
}

@media (max-width: 767px) {
    .d-none-mobile {
        display: none !important;
    }
}

.schedule-matrix th,
.schedule-matrix td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #1e293b;
    border-top: 1px solid #1e293b;
    font-size: 0.95rem;
}

.schedule-matrix th {
    font-weight: 900;
    color: #94a3b8;
    letter-spacing: 0.05em;
    padding-bottom: 2rem;
    border-top: none;
}

.schedule-matrix .time-col {
    text-align: left;
    font-weight: 800;
    width: 15%;
}

.empty-dash {
    color: #334155;
    font-weight: 800;
}

.matrix-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.matrix-tag.kids {
    color: #f87171;
    border: 1px solid #991b1b;
    background-color: rgba(153, 27, 27, 0.2);
}

.matrix-tag.adults {
    color: var(--color-white);
    border: 1px solid #475569;
    background-color: rgba(71, 85, 105, 0.2);
}

.matrix-tag.womens {
    color: #f472b6;
    border: 1px solid #831843;
    background-color: rgba(131, 24, 67, 0.2);
}

.matrix-tag.open {
    color: #60a5fa;
    border: 1px solid #1e3a8a;
    background-color: rgba(30, 58, 138, 0.2);
}

.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    color: #94a3b8;
    font-family: var(--font-body);
    font-size: 0.85rem;
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-tag {
    width: 20px;
    height: 20px;
    padding: 0;
    color: transparent !important;
}

/* Secondary Layout Utilities */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--color-bg);
    color: var(--color-dark);
    border-top: var(--border-thick);
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* Gymdesk Button Component */
.btn-gymdesk {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 1rem;
    background-color: #f1f5f9;
    /* Light gray base from the image */
    color: var(--color-dark);
    border: 3px solid var(--color-dark);
    box-shadow: 8px 8px 0px 0px var(--color-dark);
    /* Hard offset shadow, matching original */
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-gymdesk:hover {
    transform: translate(2px, 2px);
    box-shadow: 6px 6px 0px 0px var(--color-dark);
}

.btn-gymdesk-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-dark);
    flex-shrink: 0;
}

.btn-gymdesk-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-gymdesk-text {
    text-align: center;
    flex-grow: 1;
}

@media (min-width: 640px) {
    .btn-gymdesk {
        font-size: 1.5rem;
        padding: 1.75rem 2.5rem;
        gap: 1.5rem;
    }

    .btn-gymdesk-text {
        flex-grow: 0;
    }

    .btn-gymdesk-icon,
    .btn-gymdesk-arrow {
        width: 32px;
        height: 32px;
    }
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: var(--border-thick);
    background-color: var(--color-white);
}

.footer-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row !important;
    }

    .mobile-footer {
        display: none !important;
    }
}

/* Premium Mobile Schedule layout */
.mobile-schedule {
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-day-card {
    background-color: var(--color-white);
    border: var(--border-thick);
    box-shadow: 6px 6px 0px 0px var(--color-dark);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition-fast);
}

.mobile-day-card:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px 0px var(--color-dark);
}

.mobile-day-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-dark);
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-dark);
    padding-bottom: 0.5rem;
    margin: 0;
}

.mobile-class-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #cbd5e1;
}

.mobile-class-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-class-time {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-dark);
}

/* Color overrides for invisible tags on white mobile cards */
.mobile-schedule .matrix-tag.kids {
    color: #991b1b;
    background-color: rgba(248, 113, 113, 0.2);
    border-color: #f87171;
}

.mobile-schedule .matrix-tag.adults {
    color: #1e293b;
    background-color: rgba(71, 85, 105, 0.1);
    border-color: #94a3b8;
}

.mobile-schedule .matrix-tag.womens {
    color: #9d174d;
    background-color: rgba(244, 114, 182, 0.2);
    border-color: #f472b6;
}

.mobile-schedule .matrix-tag.open {
    color: #1e3a8a;
    background-color: rgba(96, 165, 250, 0.2);
    border-color: #60a5fa;
}

@media (max-width: 767px) {
    .mobile-schedule {
        display: flex !important;
    }

    .mobile-sticky-cta {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        padding: 1rem 1.5rem;
        border-top: var(--border-thick);
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;

        /* Scroll Default Hidden State */
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-sticky-cta.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Ensure footer doesn't get hidden behind the sticky CTA */
    body {
        padding-bottom: 120px;
    }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-top: var(--border-thick);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.5;
    font-weight: 500;
}

.cookie-text a {
    color: var(--color-blue);
    text-decoration: underline;
    font-weight: 700;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.cookie-btn {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.cookie-btn-accept {
    background-color: var(--color-dark);
    color: var(--color-white);
    box-shadow: 4px 4px 0px 0px var(--color-dark);
}

.cookie-btn-accept:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--color-dark);
}

.cookie-btn-decline {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.cookie-btn-decline:hover {
    background-color: #f1f5f9;
}

@media (min-width: 768px) {
    .cookie-banner {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
    }

    .cookie-text {
        flex: 1;
        padding-right: 2rem;
    }

    .cookie-actions {
        flex-direction: row;
        width: auto;
    }
}

/* --- PRIVATE 1-ON-1 SECTION --- */
.private-section {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 6rem 1rem;
    border-bottom: var(--border-thick);
}

.private-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .private-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        /* Align items vertically if needed */
    }
}

.private-content {
    flex: 1;
    max-width: 600px;
}

.private-label {
    color: #ef4444;
    /* red-500 */
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.private-label::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
}

.private-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: white;
    /* Ensure it stays strictly white */
}

.private-description {
    font-size: 1.1rem;
    color: #94a3b8;
    /* slate-400 */
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.private-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.private-check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e1;
    /* slate-300 */
    font-size: 0.95rem;
    font-weight: 500;
}

.private-check-item svg {
    color: #2563eb;
    /* blue-600 */
    flex-shrink: 0;
}

/* The interactive booking card that looks like a button */
.private-booking-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (min-width: 900px) {
    .private-booking-wrapper {
        justify-content: flex-end;
        /* Push card to the right on desktop */
    }
}

.private-booking-card {
    background-color: #f8fafc;
    /* very light grey/white */
    border: var(--border-thick);
    padding: 3rem 2rem;
    box-shadow: 12px 12px 0px 0px rgba(0, 0, 0, 0.5);
    /* Heavy shadow matching inspiration */
    display: flex;
    align-items: flex-start;
    /* Arrow top right relative to text */
    justify-content: space-between;
    text-decoration: none;
    color: var(--color-dark);
    transition: all var(--transition-fast);
    width: 100%;
    max-width: 450px;
    /* Keep it constrained */
}

.private-booking-card:hover {
    transform: translate(4px, 4px);
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.5);
}

.booking-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--color-dark);
}

.booking-price {
    color: #2563eb;
    /* blue-600 */
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-arrow {
    width: 32px;
    height: 32px;
    stroke: var(--color-dark);
    flex-shrink: 0;
    margin-top: 0.25rem;
    /* Optical alignment with title */
    transition: transform 0.2s ease;
}

.private-booking-card:hover .booking-arrow {
    transform: translate(2px, -2px);
    /* Diagonal arrow move on hover */
}

/* --- LINKS PAGE SPECIFIC STYLES --- */
.links-wrapper {
    max-width: 600px;
    margin: 3rem auto 6rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: var(--border-thick);
    box-shadow: 4px 4px 0px 0px var(--color-dark);
    margin-bottom: 1.5rem;
}

.links-title {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.links-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border: 3px solid var(--color-dark);
    box-shadow: 4px 4px 0px 0px var(--color-dark);
    color: var(--color-dark);
    transition: all var(--transition-fast);
}

.social-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--color-dark);
}

/* Specific Social Hover Colors */
.social-btn:nth-child(1):hover {
    background-color: #000000;
    /* TikTok Black */
    color: var(--color-white);
}

.social-btn:nth-child(2):hover {
    background-color: #E1306C;
    /* Instagram Pink/Purple */
    color: var(--color-white);
}

.social-btn:nth-child(3):hover {
    background-color: #FF0000;
    /* YouTube Red */
    color: var(--color-white);
}

.social-btn:nth-child(4):hover {
    background-color: #5865F2;
    /* Discord Blue */
    color: var(--color-white);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.banner-accepting {
    background-color: var(--color-dark);
    color: #ccff00;
    /* Neon Lime Background Color from design */
    width: 100%;
    padding: 0.75rem;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    border: var(--border-thick);
    box-shadow: 4px 4px 0px 0px #ccff00;
    /* Add neon green shadow to match */
}

.links-section {
    width: 100%;
    text-align: left;
    margin-bottom: 2.5rem;
}

.links-section-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 3px solid var(--color-dark);
    margin-bottom: 1.25rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    box-shadow: 6px 6px 0px 0px var(--color-dark);
}

.link-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px 0px var(--color-dark);
}

.link-blue {
    background-color: #5a67d8;
    /* Match the specific blue */
    color: var(--color-white);
}

.link-white {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.link-navy {
    background-color: #1e253c;
    /* Match specific dark shade */
    color: var(--color-white);
}

.link-red {
    background-color: #dc2626;
    /* YouTube Red */
    color: var(--color-white);
}

.link-primary {
    background-color: #ccff00;
    /* Neon Lime */
    color: var(--color-dark);
}

.link-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.link-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.link-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.link-desc {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.link-badge {
    padding: 0.25rem 0.5rem;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 0.75rem;
    border: 2px solid var(--color-dark);
    text-transform: uppercase;
    margin-right: 0.75rem;
}

.badge-free,
.badge-premium,
.badge-vip {
    background-color: #ccff00;
    /* Neon Lime */
    color: var(--color-dark);
}

.link-external-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    flex-shrink: 0;
}