:root {
    --obsidian: #10002B;
    --royal-purple: #240046;
    --electric-lavender: #C77DFF;
    --neon-gold: #FDC500;
    --white: #FFFFFF;
    --gray-light: #E0E0E0;
    --gray-mid: #9E9E9E;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 8px;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--obsidian);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo Black', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(16, 0, 43, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(199, 125, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.logo-accent {
    color: var(--electric-lavender);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item:hover {
    color: var(--electric-lavender);
}

.dropdown-trigger {
    position: relative;
}

.dropdown-trigger svg {
    transition: transform 0.3s ease;
}

.dropdown-trigger.active svg {
    transform: rotate(180deg);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--electric-lavender);
    color: var(--obsidian);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--neon-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 197, 0, 0.3);
}

/* Mega Dropdown */
.mega-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--royal-purple);
    border-bottom: 1px solid rgba(199, 125, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
}

.mega-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 600px;
}

.mega-dropdown-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.dropdown-category h3 {
    color: var(--electric-lavender);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-category a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-category a:hover {
    color: var(--electric-lavender);
    padding-left: 0.5rem;
}

.dropdown-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(199, 125, 255, 0.1);
    color: var(--gray-mid);
    font-size: 0.875rem;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    background: var(--electric-lavender);
    color: var(--obsidian);
}

.btn-primary:hover {
    background: var(--neon-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(253, 197, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--electric-lavender);
}

.btn-secondary:hover {
    background: var(--electric-lavender);
    color: var(--obsidian);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--neon-gold);
    color: var(--obsidian);
}

.btn-accent:hover {
    background: var(--electric-lavender);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(199, 125, 255, 0.4);
}

.btn-full {
    width: 100%;
}

/* Pages */
.page {
    display: none;
    padding-top: 80px;
    min-height: 100vh;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease;
}

.title-accent {
    color: var(--electric-lavender);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease 0.1s backwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease 0.2s backwards;
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-mid);
    font-size: 0.875rem;
    animation: slideUp 0.8s ease 0.3s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--electric-lavender) 0%, transparent 70%);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-text {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 800px;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Why XO */
.why-xo {
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--obsidian) 100%);
    text-align: center;
}

/* centering now handled by base .section-title / .section-text */

/* Intent Grid */
.intent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.intent-card {
    background: var(--royal-purple);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(199, 125, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    display: block;
}

.intent-card:hover {
    transform: translateY(-8px);
    border-color: var(--electric-lavender);
    box-shadow: 0 16px 48px rgba(199, 125, 255, 0.2);
}

.intent-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--electric-lavender);
}

.intent-card p {
    color: var(--gray-light);
    font-size: 1rem;
}

/* XO Advantage */
.xo-advantage {
    background: var(--royal-purple);
}

.advantage-content {
    max-width: 900px;
    margin: 0 auto;
}

.myth-buster {
    background: var(--obsidian);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--neon-gold);
    margin: 2rem 0;
}

.myth-label,
.reality-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.myth-label {
    color: var(--neon-gold);
}

.reality-label {
    color: var(--electric-lavender);
    margin-top: 1rem;
}

.myth-text,
.reality-text {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    color: var(--electric-lavender);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
}

/* Social Proof */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.proof-card {
    background: var(--royal-purple);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(199, 125, 255, 0.1);
}

.proof-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--royal-purple) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.proof-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.proof-author {
    color: var(--electric-lavender);
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--obsidian) 100%);
}

.final-cta .hero-ctas {
    justify-content: center;
}

.final-cta-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--obsidian) 100%);
}

.page-hero .hero-ctas {
    justify-content: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.status-badge {
    display: inline-block;
    background: var(--neon-gold);
    color: var(--obsidian);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

/* Marketplace */
.marketplace-intro {
    text-align: center;
    padding: 4rem 2rem;
}

.marketplace-intro .section-title {
    text-align: center;
}

.marketplace-categories {
    padding: 2rem;
}

.category-section {
    margin-bottom: 6rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--electric-lavender);
}

.category-description {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Builds Grid */
.builds-section {
    padding: 4rem 0;
}

.builds-range {
    color: var(--gray-mid);
    font-size: 1.25rem;
    font-weight: 400;
}

.builds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.build-card {
    background: var(--royal-purple);
    border: 1px solid rgba(199, 125, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.build-card:hover {
    transform: translateY(-8px);
    border-color: var(--electric-lavender);
    box-shadow: 0 16px 48px rgba(199, 125, 255, 0.2);
}

.build-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--royal-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.build-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.build-content {
    padding: 1.5rem;
}

.build-tier {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--neon-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.build-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.build-price {
    font-size: 2rem;
    color: var(--electric-lavender);
    font-weight: 700;
    margin-bottom: 1rem;
}

.build-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.build-tag {
    background: var(--obsidian);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--gray-light);
}

.build-why {
    color: var(--gray-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.build-specs {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(199, 125, 255, 0.1);
}

.build-spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.build-spec-label {
    color: var(--gray-mid);
}

.build-spec-value {
    font-weight: 600;
}

.build-actions {
    display: flex;
    gap: 0.75rem;
}

.build-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

/* What Matters */
.what-matters {
    background: var(--royal-purple);
    padding: 4rem 0;
}

.matters-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.matters-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(199, 125, 255, 0.1);
    font-size: 1.125rem;
    padding-left: 2rem;
    position: relative;
}

.matters-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--electric-lavender);
    font-weight: 700;
}

/* Coming Soon */
.coming-soon-section {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-section .hero-ctas {
    justify-content: center;
}

.trust-micro {
    margin-top: 2rem;
    color: var(--gray-mid);
    font-style: italic;
}

/* Contact */
.contact-section {
    padding: 4rem 2rem;
}

.contact-form {
    max-width: 680px;
    margin: 0 auto;
    background: var(--royal-purple);
    padding: 2.5rem 3rem 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(199, 125, 255, 0.12);
    box-shadow: 0 8px 40px rgba(199, 125, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-lavender), var(--neon-gold));
}

.form-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-mid);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-light);
}

.label-optional {
    font-weight: 400;
    color: var(--gray-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--obsidian);
    border: 1px solid rgba(199, 125, 255, 0.15);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239E9E9E' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-lavender);
    box-shadow: 0 0 0 3px rgba(199, 125, 255, 0.15);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray-mid);
    font-size: 0.85rem;
}

.contact-alt {
    max-width: 680px;
    margin: 2rem auto 0;
    text-align: center;
}

.contact-alt-label {
    color: var(--gray-mid);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-alt .contact-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

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

/* About */
.about-story,
.about-mission {
    text-align: center;
    padding: 4rem 2rem;
}

.about-mission .btn {
    display: inline-block;
}

.about-known-for {
    padding: 4rem 2rem;
    background: var(--royal-purple);
}

.known-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.known-item {
    background: var(--obsidian);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(199, 125, 255, 0.1);
    text-align: center;
}

.known-item h3 {
    font-size: 1.25rem;
    color: var(--electric-lavender);
}

/* Footer */
.footer {
    background: var(--royal-purple);
    border-top: 1px solid rgba(199, 125, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    color: var(--gray-mid);
    font-style: italic;
}

.footer-col h4 {
    color: var(--electric-lavender);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--electric-lavender);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(199, 125, 255, 0.1);
    color: var(--gray-mid);
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.markdown-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--gray-light);
}

.markdown-body hr {
    border: none;
    border-top: 1px solid rgba(199, 125, 255, 0.12);
    margin: 2.5rem 0;
}

.markdown-body h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.markdown-body h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.markdown-body p {
    margin-bottom: 1rem;
}

.markdown-body ul,
.markdown-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.markdown-body li {
    margin-bottom: 0.5rem;
}

.markdown-body a {
    color: var(--electric-lavender);
    text-decoration: underline;
}

.markdown-body a:hover {
    color: var(--neon-gold);
}

.markdown-body strong {
    color: var(--white);
}

.markdown-body blockquote {
    border-left: 3px solid var(--electric-lavender);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--gray-mid);
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content .hero-ctas {
        justify-content: center;
    }

    .trust-line {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        height: 400px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

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

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .nav-cta {
        display: none;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-alt .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }

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

    .trust-line {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

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