/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *

 */

:root {
    --brand-orange: #f19542;
    --brand-orange-hover: #e88b3d;
}

body {
    background-color: #030612 !important;
    background-image: radial-gradient(circle at top, #1a2333 0%, #030612 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

/* Input Fields - Premium Style with Depth */
.input-field {
    display: block;
    width: 100%;
    border-radius: 0.75rem;
    border: 2px solid rgba(51, 65, 85, 0.5);
    background-color: #0a1929;
    color: white;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    outline: none;
}

.input-field::placeholder {
    color: rgb(100, 116, 139);
}

.input-field:hover {
    border-color: rgba(71, 85, 105, 0.5);
    background-color: #0b1b2d;
}

.input-field:focus {
    border-color: rgba(241, 149, 66, 0.7);
    background-color: #0d1f33;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(241, 149, 66, 0.3);
}

/* Select dropdowns - Extra padding for arrow */
select.input-field {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Action Buttons - Premium Style */
.btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: rgb(148, 163, 184);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-cancel:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-1px);
}

.btn-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    border-radius: 1rem;
    border: none;
    background: linear-gradient(135deg, #f19542 0%, #e88b3d 50%, #f19542 100%);
    background-size: 200% 100%;
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(241, 149, 66, 0.3);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-save:hover {
    background-position: 100% 0;
    box-shadow: 0 15px 40px rgba(241, 149, 66, 0.5);
    transform: translateY(-2px);
}


.btn-save:active {
    transform: translateY(0);
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
    background: linear-gradient(135deg, #f19542 0%, #e88b3d 50%, #f19542 100%);
    background-size: 200% 100%;
    color: white;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(241, 149, 66, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background-position: 100% 0;
    box-shadow: 0 15px 40px rgba(241, 149, 66, 0.5);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0.5px);
}

/* Footer - Professional Dark Theme */
.footer-main {
    background: linear-gradient(180deg, transparent 0%, rgba(8, 21, 45, 0.5) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.footer-link {
    color: rgb(148, 163, 184);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.footer-link:hover {
    color: white;
}

.footer-creator-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.footer-creator-link:hover {
    transform: translateY(-1px);
}

/* Footer logo with zoom effect */
.footer-logo {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.6);
}

/* Orange text color */
.text-orange {
    color: #f19542;
}

/* Fixed Navigation Bar */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(3, 6, 18, 0.95) 0%, rgba(3, 6, 18, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Navbar Logo */
.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transform: scale(1.6);
    transition: transform 0.2s;
}

.navbar-logo:hover {
    transform: scale(1.7);
}

/* Orange Glass Panel - High Visibility Brand Style */
.glass-panel-orange {
    background-color: rgba(10, 25, 41, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 3px solid #f19542 !important;
    /* Solid Brand Orange */
    border-radius: 1.5rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

/* Modal System - Premium Standard */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(3, 6, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-overlay:not(.hidden) {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-container {
    background-color: #0B1120;
    width: 100%;
    max-width: 28rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.score-input {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #0d1f33;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: #f19542 !important;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 0.75rem 0;
    transition: all 0.2s;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.score-input:focus {
    color: #f19542 !important;
    border-color: #f19542;
    background-color: #112944;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(241, 149, 66, 0.2);
}


/* Hide number input spinners globally */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}

/* ==========================================================================
   LANDING PAGE (BEM Methodology)
   ========================================================================== */

/* Variables / Utility Defaults for Landing */
:root {
    --landing-orange: #f19542;
    --landing-orange-fade: rgba(241, 149, 66, 0.2);
    --landing-yellow: #ffe600;
    --landing-yellow-fade: rgba(255, 230, 0, 0.2);
    --landing-midnight: #08152d;
    --landing-dark: #0a1526;
    --landing-text-muted: #94a3b8;
    --landing-border: rgba(255, 255, 255, 0.1);
}

.landing-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 10;
}

.landing-text-orange {
    color: var(--landing-orange);
}

.landing-text-yellow {
    color: var(--landing-yellow);
}

.landing-icon {
    width: 1.75rem;
    height: 1.75rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.landing-hero {
    position: relative;
    padding: 8rem 1.25rem 5rem;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 1024px) {
    .landing-hero {
        padding: 12rem 1.25rem 8rem;
    }
}

.landing-hero__bg {
    position: absolute;
    inset: 0;
    background-color: var(--landing-midnight);
    background-image: linear-gradient(to bottom, rgba(8, 21, 45, 0.7), rgba(8, 21, 45, 0.95)), url(/assets/padel_hero_bg_yellow-9ad9551830c0cc1d020409a6eba77941ba3236853e2583862d1106f8c15422fa.png);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.landing-hero__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.landing-hero__glow--orange {
    top: 0;
    right: 0;
    background-color: var(--landing-orange-fade);
    transform: translateY(-50%) translateX(33%);
}

.landing-hero__glow--yellow {
    bottom: 0;
    left: 0;
    background-color: var(--landing-blue-fade);
    transform: translateY(33%) translateX(-33%);
}

.landing-hero__content {
    max-width: 56rem;
    margin: 0 auto;
}

.landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--landing-border);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: landingFadeIn 0.4s ease-out;
}

.landing-hero__badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--landing-orange);
    animation: landingPulseSlow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.landing-hero__badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.landing-hero__title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    animation: landingSlideUp 0.5s ease-out backwards;
    animation-delay: 100ms;
}

@media (min-width: 768px) {
    .landing-hero__title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .landing-hero__title {
        font-size: 6rem;
    }
}

.landing-hero__title-highlight {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--landing-orange), #fb923c, var(--landing-yellow));
}

.landing-hero__subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin: 0 auto 2.5rem;
    max-width: 42rem;
    font-weight: 500;
    animation: landingSlideUp 0.5s ease-out backwards;
    animation-delay: 200ms;
}

@media (min-width: 768px) {
    .landing-hero__subtitle {
        font-size: 1.25rem;
    }
}

.landing-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: landingSlideUp 0.5s ease-out backwards;
    animation-delay: 300ms;
}

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

.landing-hero__btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    box-shadow: 0 0 30px rgba(241, 149, 66, 0.3);
    text-decoration: none;
}

@media (min-width: 640px) {
    .landing-hero__btn-primary {
        width: auto;
    }
}

.landing-hero__btn-primary:hover {
    box-shadow: 0 0 40px rgba(241, 149, 66, 0.5);
}

.landing-hero__btn-secondary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid var(--landing-border);
    border-radius: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .landing-hero__btn-secondary {
        width: auto;
    }
}

.landing-hero__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 230, 0, 0.5);
    color: white;
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.landing-stats {
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    padding: 2rem 1.25rem;
}

.landing-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .landing-stats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.landing-stats__item {
    position: relative;
}

@media (min-width: 768px) {
    .landing-stats__item:not(:first-child)::before {
        content: '';
        position: absolute;
        left: -1rem;
        top: 50%;
        transform: translateY(-50%);
        height: 80%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
}

.landing-stats__value {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.landing-stats__value.landing-text-orange,
.landing-stats__value.landing-text-yellow {
    text-shadow: 0 0 10px currentColor;
}

.landing-stats__label {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.landing-features {
    padding: 6rem 1.25rem;
    background-color: var(--landing-midnight);
    position: relative;
}

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

.landing-section-header__subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.landing-section-header__title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .landing-section-header__title {
        font-size: 3rem;
    }
}

.landing-section-header__description {
    color: var(--landing-text-muted);
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.landing-features__bento {
    display: grid;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-auto-rows: 24rem;
    grid-auto-flow: dense;
}

@media (min-width: 768px) {
    .landing-features__bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 20rem;
    }

    .landing-bento-card--large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .landing-bento-card--wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (min-width: 1024px) {
    .landing-features__bento {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 18rem;
    }

    .landing-bento-card--tall {
        grid-column: span 1;
        grid-row: span 2;
    }
}

.landing-bento-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background-color: var(--landing-midnight);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.landing-bento-card--no-img {
    background: radial-gradient(circle at top right, rgba(241, 149, 66, 0.1), transparent 60%),
        radial-gradient(circle at bottom left, rgba(255, 230, 0, 0.05), transparent 60%),
        var(--landing-midnight);
}

.landing-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.landing-bento-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.landing-bento-card:hover .landing-bento-card__bg {
    transform: scale(1.05);
}

.landing-bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.landing-bento-card__overlay--gradient {
    background: linear-gradient(to right, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.5) 60%, transparent 100%);
}

.landing-bento-card__content {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.landing-bento-card__icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-bento-card__title {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.landing-bento-card__description {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Steps Section
   -------------------------------------------------------------------------- */
.landing-steps {
    padding: 6rem 1.25rem;
    background-color: var(--landing-dark);
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.landing-steps__grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

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

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

.landing-step-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.landing-step-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.04);
}

.landing-step-card__number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: -0.05em;
    margin-bottom: -1rem;
}

.landing-step-card__content {
    flex: 1;
}

.landing-step-card__title {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.landing-step-card__description {
    color: var(--landing-text-muted);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
    margin-top: 0;
}

.landing-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-step-list__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}

.landing-step-list__icon {
    width: 1rem;
    height: 1rem;
}

/* --------------------------------------------------------------------------
   B2B CTA Section
   -------------------------------------------------------------------------- */
.landing-cta-b2b {
    padding: 6rem 1.25rem;
    position: relative;
    overflow: hidden;
    background-color: var(--landing-midnight);
}

.landing-cta-b2b__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.landing-cta-b2b__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--landing-midnight), rgba(5, 11, 20, 0.4));
    z-index: 1;
}

.landing-cta-b2b__container {
    text-align: center;
    max-width: 64rem;
    position: relative;
    z-index: 2;
}

.landing-cta-b2b__card-wrapper {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), transparent);
    padding: 1px;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.02);
}

.landing-cta-b2b__card {
    background-color: rgba(5, 11, 20, 0.5);
    backdrop-filter: blur(24px);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .landing-cta-b2b__card {
        padding: 4rem;
    }
}

.landing-cta-b2b__title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .landing-cta-b2b__title {
        font-size: 3.75rem;
    }
}

.landing-cta-b2b__title-highlight {
    color: var(--landing-yellow);
}

.landing-cta-b2b__description {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-weight: 500;
    line-height: 1.625;
}

.landing-cta-b2b__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .landing-cta-b2b__actions {
        flex-direction: row;
    }
}

.landing-cta-b2b__btn-primary {
    width: 100%;
    padding: 1.25rem 2rem;
    background-color: var(--landing-orange);
    color: white;
    font-weight: 900;
    font-size: 0.875rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 0 30px rgba(241, 149, 66, 0.4);
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .landing-cta-b2b__btn-primary {
        width: auto;
    }
}

.landing-cta-b2b__btn-primary:hover {
    background-color: #ff9d00;
    color: white;
    box-shadow: 0 0 50px rgba(241, 149, 66, 0.6);
    transform: translateY(-2px);
}

.landing-cta-b2b__btn-secondary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .landing-cta-b2b__btn-secondary {
        width: auto;
    }
}

.landing-cta-b2b__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.landing-final-cta {
    padding: 4rem 1.25rem;
    background: linear-gradient(to bottom, var(--landing-dark), var(--landing-midnight));
    text-align: center;
    border-top: 1px solid var(--landing-border);
}

@media (min-width: 768px) {
    .landing-final-cta {
        padding: 6rem 1.25rem;
    }
}

.landing-final-cta__title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .landing-final-cta__title {
        font-size: 3.75rem;
    }
}

.landing-final-cta__actions {
    display: flex;
    justify-content: center;
    margin: 0 auto 2rem;
    max-width: 42rem;
    width: 100%;
}

a.landing-final-cta__btn {
    width: 100%;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 900;
    border-radius: 0.75rem;
    box-shadow: 0 0 50px rgba(241, 149, 66, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--landing-orange);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    a.landing-final-cta__btn {
        font-size: 1.25rem;
        padding: 1.5rem 3rem;
    }
}

a.landing-final-cta__btn:hover {
    box-shadow: 0 0 70px rgba(241, 149, 66, 0.7);
    background-color: #ea580c;
}

.landing-final-cta__note {
    color: var(--landing-text-muted);
    font-weight: 500;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Dashboard Empty State
   -------------------------------------------------------------------------- */
.dashboard-empty-state {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background-color: rgba(5, 11, 20, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
    .dashboard-empty-state {
        padding: 3rem;
    }
}

.dashboard-empty-state__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(241, 149, 66, 0.05) 0%, transparent 60%),
        radial-gradient(circle at bottom, rgba(255, 230, 0, 0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.dashboard-empty-state__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dashboard-empty-state__icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: rgba(241, 149, 66, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(241, 149, 66, 0.3);
}

@media (min-width: 640px) {
    .dashboard-empty-state__icon-wrapper {
        width: 5rem;
        height: 5rem;
    }
}

.dashboard-empty-state__icon {
    width: 2rem;
    height: 2rem;
    color: var(--landing-orange);
}

@media (min-width: 640px) {
    .dashboard-empty-state__icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.dashboard-empty-state__title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    margin-top: 0;
}

@media (min-width: 640px) {
    .dashboard-empty-state__title {
        font-size: 1.875rem;
    }
}

.dashboard-empty-state__title-highlight {
    color: var(--landing-orange);
}

.dashboard-empty-state__description {
    color: #94a3b8;
    /* slate-400 */
    font-size: 0.875rem;
    max-width: 32rem;
    margin: 0 auto 2rem;
    line-height: 1.625;
    font-weight: 500;
}

@media (min-width: 640px) {
    .dashboard-empty-state__description {
        font-size: 1rem;
    }
}

.dashboard-empty-state__break {
    display: none;
}

@media (min-width: 640px) {
    .dashboard-empty-state__break {
        display: block;
    }
}

.dashboard-empty-state__subtext {
    color: #cbd5e1;
    /* slate-300 */
    margin-top: 0.5rem;
    display: block;
}

.dashboard-empty-state__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dashboard-empty-state__btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.dashboard-empty-state__btn-icon {
    width: 1rem;
    height: 1rem;
    color: var(--landing-yellow);
    transition: transform 0.3s ease;
}

.dashboard-empty-state__btn:hover .dashboard-empty-state__btn-icon {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Keyframes Additions
   -------------------------------------------------------------------------- */
@keyframes landingSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes landingPulseSlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes landingFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
.landing-footer {
    position: relative;
    z-index: 50;
    background-color: rgba(5, 11, 20, 0.6);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-footer__container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .landing-footer__container {
        padding: 4rem 2rem;
    }
}

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

@media (min-width: 768px) {
    .landing-footer__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.landing-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .landing-footer__brand {
        align-items: flex-start;
        text-align: left;
    }
}

.landing-footer__logo-wrapper {
    margin-bottom: 1rem;
    overflow: hidden;
}

.landing-footer__logo {
    height: 5rem;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
    -webkit-mask-image: radial-gradient(circle, black 50%, transparent 95%);
    mask-image: radial-gradient(circle, black 50%, transparent 95%);
}

.landing-footer__logo:hover {
    opacity: 1;
}

.landing-footer__tagline {
    color: var(--landing-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.landing-footer__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .landing-footer__column {
        align-items: flex-start;
        text-align: left;
    }
}

.landing-footer__heading {
    color: white;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.landing-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-footer__link {
    color: #94a3b8;
    /* slate-400 */
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s, text-shadow 0.2s;
}

.landing-footer__link:hover {
    color: white;
}

.landing-footer__link--highlight {
    color: var(--landing-orange);
    font-weight: 700;
}

.landing-footer__link--highlight:hover {
    color: var(--landing-orange);
    text-shadow: 0 0 10px rgba(241, 149, 66, 0.5);
}

.landing-footer__divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

.landing-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .landing-footer__bottom {
        flex-direction: row;
    }
}

.landing-footer__copyright {
    color: #64748b;
    /* slate-500 */
}

.landing-footer__credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-footer__credits-text {
    color: #64748b;
}

.landing-footer__creator-link {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-footer__creator-name {
    transition: color 0.3s;
}

.landing-footer__creator-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    transition: color 0.3s, transform 0.3s;
}

.landing-footer__creator-link:hover .landing-footer__creator-name {
    color: var(--landing-orange);
}

.landing-footer__creator-link:hover .landing-footer__creator-icon {
    color: var(--landing-yellow);
    transform: scale(1.1);
}

/* Match Confirmation Badges (Pure CSS overrides) */
.badge-pending-match {
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(241, 149, 66, 0.3) !important;
    box-shadow: 0 0 0 1px rgba(241, 149, 66, 0.2), 0 20px 25px -5px rgba(0, 0, 0, 0.5) !important;
}

.badge-pending-text {
    color: #f19542 !important;
}

.badge-confirmed-match {
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2), 0 20px 25px -5px rgba(0, 0, 0, 0.5) !important;
}

.badge-confirmed-text {
    color: #4ade80 !important;
}

/* Dashboard and Match Confirm Banner (Pure CSS) */
.banner-confirm-match {
    background-color: rgba(241, 149, 66, 0.1) !important;
    border: 1px solid rgba(241, 149, 66, 0.3) !important;
}

.banner-confirm-glow {
    background-color: rgba(241, 149, 66, 0.2) !important;
}

.text-confirm-match {
    color: #f19542 !important;
}

.btn-confirm-match {
    background-color: #f19542 !important;
    color: white !important;
    box-shadow: 0 10px 15px -3px rgba(241, 149, 66, 0.2), 0 4px 6px -4px rgba(241, 149, 66, 0.1) !important;
    border: none !important;
}

.btn-confirm-match:hover {
    background-color: #f97316 !important;
    /* Tailwind orange-500 */
}
