/*
 * 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 - Padel Court Kings (jugadores_rivas style + padelonada structure)
   ========================================================================== */

:root {
    --lp-bg-dark: #030305;
    --lp-bg-card: rgba(255, 255, 255, 0.02);
    --lp-bg-card-hover: rgba(255, 255, 255, 0.04);
    --lp-accent-orange: #FF5E00;
    --lp-accent-cyan: #00F0FF;
    --lp-text-main: #FFFFFF;
    --lp-text-muted: #8892B0;
    --lp-glass-border: rgba(255, 255, 255, 0.06);
    --lp-glass-highlight: rgba(255, 255, 255, 0.12);
}

body.lp-page {
    background-color: var(--lp-bg-dark) !important;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 94, 0, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.03), transparent 25%) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--lp-text-main) !important;
    line-height: 1.7 !important;
    -webkit-font-smoothing: antialiased !important;
}

.lp-page h1, .lp-page h2, .lp-page h3, .lp-page h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

body.lp-page main {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    container: none !important;
}

body.lp-page #flash-messages { display: none; }

/* Landing Navbar */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: all 0.3s ease;
    background: transparent;
}

.lp-navbar.scrolled {
    background: rgba(3, 3, 5, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lp-glass-border);
}

.lp-navbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.lp-navbar__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.lp-navbar__logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.lp-navbar__logo:hover {
    transform: scale(1.05);
}

.lp-navbar__links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lp-navbar__link {
    color: var(--lp-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.lp-navbar__link:hover {
    color: #FFF;
}

.lp-navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-navbar__btn {
    display: inline-block;
    padding: 10px 24px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.02em;
}

.lp-navbar__btn--ghost {
    background: transparent;
    color: var(--lp-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-navbar__btn--ghost:hover {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.lp-navbar__btn--glow {
    border: 1px solid rgba(255, 94, 0, 0.4);
    color: var(--lp-accent-orange);
    background: rgba(255, 94, 0, 0.05);
}

.lp-navbar__btn--glow:hover {
    border-color: var(--lp-accent-orange);
    background: rgba(255, 94, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.15);
}

.lp-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.lp-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFF;
    border-radius: 2px;
    transition: all 0.3s;
}

.lp-navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.lp-navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.lp-navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.lp-navbar__mobile {
    display: none;
    flex-direction: column;
    padding: 20px 24px;
    background: rgba(3, 3, 5, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--lp-glass-border);
}

.lp-navbar__mobile.open {
    display: flex;
}

.lp-navbar__mobile-link {
    color: var(--lp-text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s;
}

.lp-navbar__mobile-link:hover {
    color: #FFF;
}

.lp-navbar__mobile-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.lp-navbar__mobile-actions .lp-navbar__btn {
    flex: 1;
    text-align: center;
}

@media (max-width: 900px) {
    .lp-navbar__links,
    .lp-navbar__actions {
        display: none;
    }

    .lp-navbar__toggle {
        display: flex;
    }
}

/* Stats Strip */
.lp-stats-strip {
    background: var(--lp-bg-card);
    border-top: 1px solid var(--lp-glass-border);
    border-bottom: 1px solid var(--lp-glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lp-stats-strip__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 20px;
    flex-wrap: wrap;
}

.lp-stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.lp-stat__value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lp-accent-orange), #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}

.lp-stat__label {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.lp-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--lp-glass-border);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .lp-stats-strip__inner { gap: 16px; }
    .lp-stat__value { font-size: 1.5rem; }
    .lp-stat__label { font-size: 0.7rem; }
    .lp-stat-divider { height: 30px; }
}

/* Hero */
.lp-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 100px 20px 0;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    filter: contrast(1.1) saturate(1.2);
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 3, 5, 0.6) 0%, var(--lp-bg-dark) 100%);
    z-index: -1;
}

.lp-hero__content {
    max-width: 900px;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    animation: lpFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 94, 0, 0.05);
    border: 1px solid rgba(255, 94, 0, 0.2);
    color: var(--lp-accent-orange);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.1);
}

.lp-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFF 30%, #A0AABF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

.lp-hero__subtitle {
    font-size: 1.1rem;
    color: var(--lp-text-muted);
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

@media (max-width: 600px) {
    .lp-hero__subtitle { font-size: 1rem; }
}

.lp-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.lp-btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.lp-btn--lg {
    font-size: 1.2rem;
    padding: 18px 44px;
}

.lp-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lp-btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lp-btn--glow {
    border: 1px solid rgba(255, 94, 0, 0.4);
    color: var(--lp-accent-orange);
    background: rgba(255, 94, 0, 0.05);
}

.lp-btn--glow:hover {
    border-color: var(--lp-accent-orange);
    background: rgba(255, 94, 0, 0.1);
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.2);
    transform: translateY(-3px);
}

/* Sections */
.lp-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.lp-section + .lp-section {
    padding-top: 40px;
}

.lp-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section backgrounds */
.lp-section--has-bg {
    position: relative;
    overflow: hidden;
}

.lp-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
}

.lp-section__bg--yellow {
    opacity: 0.08;
}

.lp-section__bg--b2b {
    opacity: 0.12;
    background-size: contain;
    background-position: right center;
}

/* Section dividers */
.lp-section::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.lp-section:last-of-type::after {
    display: none;
}

.lp-cta-bottom::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* Section Headers */
.lp-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.lp-section-header__accent {
    color: var(--lp-accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lp-accent--cyan {
    color: var(--lp-accent-cyan) !important;
}

.lp-section-header__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #FFF, #CCC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

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

.lp-section-header__sub {
    color: var(--lp-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* About section */
.lp-about-content {
    max-width: 800px;
    margin: 0 auto 36px;
    text-align: center;
}

.lp-about-text {
    color: var(--lp-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.lp-about-text strong {
    color: #FFF;
    font-weight: 600;
}

/* Pillars (4-col grid) */
.lp-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.lp-pillar {
    text-align: center;
    padding: 24px 16px;
    border-radius: 20px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-glass-border);
    border-top: 1px solid var(--lp-glass-highlight);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.lp-pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

.lp-pillar.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-pillar:hover {
    background: var(--lp-bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lp-pillar__icon {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--lp-accent-orange);
}

.lp-pillar__icon svg {
    width: 1.75rem;
    height: 1.75rem;
    filter: drop-shadow(0 0 12px currentColor);
}

.lp-pillar__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 10px;
}

.lp-pillar__desc {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Differentiators grid */
.lp-diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.lp-diff-card {
    padding: 24px 20px;
    border-radius: 24px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-glass-border);
    border-top: 1px solid var(--lp-glass-highlight);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.lp-diff-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

.lp-diff-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-diff-card:hover {
    background: var(--lp-bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lp-diff-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 12px;
}

.lp-diff-card__desc {
    color: var(--lp-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Steps */
.lp-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.lp-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-glass-border);
    border-top: 1px solid var(--lp-glass-highlight);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.lp-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

.lp-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-step:hover {
    background: var(--lp-bg-card-hover);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.lp-step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 94, 0, 0.08);
    border: 1px solid rgba(255, 94, 0, 0.3);
    color: var(--lp-accent-orange);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-step__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.lp-step__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 8px;
}

.lp-step__desc {
    color: var(--lp-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 10px;
}

.lp-step__details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-step__details li {
    color: var(--lp-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    padding-left: 16px;
    position: relative;
}

.lp-step__details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-accent-orange);
}

/* Seasons */
.lp-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.lp-preview-card {
    border-radius: 20px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-glass-border);
    border-top: 1px solid var(--lp-glass-highlight);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}

.lp-preview-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-preview-card:hover {
    background: var(--lp-bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lp-preview-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-preview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-preview-card:hover .lp-preview-card__image img {
    transform: scale(1.05);
}

.lp-preview-card__content {
    padding: 24px 20px;
}

.lp-preview-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 8px;
}

.lp-preview-card__desc {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Seasons */
.lp-seasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.lp-season {
    padding: 24px 20px;
    border-radius: 20px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-glass-border);
    border-top: 1px solid var(--lp-glass-highlight);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.lp-season::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

.lp-season.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-season:hover {
    background: var(--lp-bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lp-season__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.lp-season__tag {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--lp-accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    padding: 4px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.lp-season__period {
    color: #FFF;
    font-weight: 600;
    font-size: 1rem;
}

.lp-season__desc {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* B2B Card */
.lp-b2b-card {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 50px 40px;
    border-radius: 28px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-glass-border);
    border-top: 1px solid var(--lp-glass-highlight);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.lp-b2b-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .lp-b2b-card {
        flex-direction: column;
        padding: 30px 24px;
        text-align: center;
    }
}

.lp-b2b-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.lp-b2b__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 16px;
    background: linear-gradient(to right, #FFF, #CCC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .lp-b2b__title { font-size: 2.5rem; }
}

.lp-b2b__desc {
    color: var(--lp-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
}

.lp-b2b__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-b2b__features li {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.lp-b2b__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-accent-orange);
}

.lp-b2b-visual {
    flex-shrink: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-b2b-visual__icon {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    background: rgba(255, 94, 0, 0.05);
    border: 1px solid rgba(255, 94, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    overflow: hidden;
    padding: 12px;
}

.lp-b2b-visual__icon svg {
    width: 2.5rem;
    height: 2.5rem;
    filter: drop-shadow(0 0 16px rgba(255, 94, 0, 0.3));
}

.lp-b2b-visual__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 94, 0, 0.15));
}

.lp-b2b-visual__label {
    color: #FFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

/* Final CTA */
.lp-cta-bottom {
    text-align: center;
    padding: 60px 20px 80px;
    background: radial-gradient(ellipse at bottom, rgba(255, 94, 0, 0.05) 0%, transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.lp-cta-bottom--has-bg {
    background: none;
    border-top: none;
}

.lp-cta-bottom__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.lp-cta-bottom::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.lp-cta-bottom__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-cta-bottom__content.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-cta-bottom__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(to right, #FFF, #CCC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .lp-cta-bottom__title { font-size: 3.5rem; }
}

@media (max-width: 600px) {
    .lp-cta-bottom__title { font-size: 2rem; }
}

.lp-cta-bottom__desc {
    color: var(--lp-text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    font-weight: 300;
}

@media (max-width: 600px) {
    .lp-cta-bottom__desc { font-size: 1rem; }
}

.lp-cta-bottom__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes lpFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide old landing elements */
.landing-hero,
.landing-stats,
.landing-features,
.landing-steps,
.landing-cta-b2b,
.landing-final-cta {
    display: none !important;
}

/* --------------------------------------------------------------------------
   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 */
}
