/* 
 * Leapfrog Landing Page Styles
 * Theme inspired by the four Grand Slam tournaments
 * - Australian Open: Blue (#0085CA)
 * - Roland Garros (French Open): Orange/Red (#D4522A)
 * - Wimbledon: Purple/Green (#00643C, #4B0082)
 * - US Open: Blue (#0033A0)
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Grand Slam Colors */
    --ao-blue: #0085CA;
    --fo-orange: #D4522A;
    --wimbledon-purple: #4B0082;
    --wimbledon-green: #00643C;
    --uso-blue: #0033A0;
    
    /* Base Colors */
    --primary: #2563eb;
    --secondary: #10b981;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
    --white: #ffffff;
    
    /* Spacing */
    --container-max: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.nav {
    background-color: var(--white);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark);
    transition: color 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

.mobile-menu-toggle .material-symbols-outlined {
    font-size: 1.75rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

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

.nav-links button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-links .btn-sign-up {
    margin-left: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-color, var(--primary));
    text-decoration: none;
}

/* Sign in and Sign up buttons - professional button styling */
.nav-links .btn-sign-in {
    padding: 0.625rem 1.25rem;
    background-color: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links .btn-sign-in:hover {
    background-color: var(--dark);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-links .btn-sign-up {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-links .btn-sign-up:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    text-decoration: none;
}

.nav-links .btn-sign-out {
    padding: 0.625rem 1.25rem;
    background-color: transparent;
    color: var(--dark);
    border: 1.5px solid var(--gray);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-links .btn-sign-out:hover {
    background-color: var(--gray);
    color: var(--white);
    border-color: var(--gray);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* User Button Container in Navbar */
.nav-links #user-button-container {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--dark);
    padding-bottom: 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Theme-aware hero background */
.theme-wimbledon .hero,
.theme-roland-garros .hero,
.theme-australian-open .hero,
.theme-us-open .hero {
    background: var(--bg-light);
}

.hero-content {
    padding: 4rem 0 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    /* Prevent word breaking - only break at natural word boundaries, not mid-word */
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-screenshot-container {
    width: 100%;
    max-width: 500px;
}

.hero-screenshot-frame {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-screenshot-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.hero-screenshot-header {
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: var(--spacing-md);
    border-bottom: 2px solid var(--light);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.hero-screenshot-dots {
    display: flex;
    gap: 0.5rem;
}

.hero-screenshot-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
}

.hero-screenshot-dots span:nth-child(1) {
    background: #ff5f57;
}

.hero-screenshot-dots span:nth-child(2) {
    background: #ffbd2e;
}

.hero-screenshot-dots span:nth-child(3) {
    background: #28ca42;
}

.hero-screenshot-title {
    flex: 1;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
    text-align: center;
}

.hero-screenshot-content {
    padding: var(--spacing-md);
    background: var(--white);
}

.ladder-preview {
    width: 100%;
}

.ladder-preview-header {
    display: grid;
    grid-template-columns: 50px 1fr 80px 100px;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid var(--light);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ladder-preview-row {
    display: grid;
    grid-template-columns: 50px 1fr 80px 100px;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--light);
    font-size: 0.95rem;
    color: var(--dark);
    transition: background-color 0.2s ease;
}

.ladder-preview-row:hover {
    background-color: var(--light);
}

.ladder-row-highlight {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    border-left: 3px solid var(--primary);
}

.ladder-rank {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.ladder-player {
    font-weight: 500;
    color: var(--dark);
}

.ladder-stats {
    color: var(--gray);
    font-size: 0.875rem;
}

.ladder-status {
    display: flex;
    align-items: center;
}

.status-badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ladder-preview-more {
    text-align: center;
    padding: var(--spacing-md);
    color: var(--gray);
    font-size: 0.875rem;
    font-style: italic;
}

.hero-screenshot-footer {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-top: 2px solid var(--light);
    text-align: center;
}

.hero-screenshot-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.hero-screenshot-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-screenshot-link .material-symbols-outlined {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-screenshot-link:hover .material-symbols-outlined {
    transform: translateX(3px);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

/* Primary Button - matches Sign Up button style */
.btn-primary,
.btn-sign-up {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover,
.btn-sign-up:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    text-decoration: none;
}

/* Secondary Button - matches Sign In button style */
.btn-secondary {
    padding: 0.625rem 1.25rem;
    background-color: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Theme-aware secondary button - outside hero section */
/* Hero buttons are styled in themes.css with higher specificity, so these apply to buttons outside hero */
.theme-wimbledon .btn-secondary:not(.hero .btn-secondary),
.theme-roland-garros .btn-secondary:not(.hero .btn-secondary),
.theme-australian-open .btn-secondary:not(.hero .btn-secondary),
.theme-us-open .btn-secondary:not(.hero .btn-secondary) {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.theme-wimbledon .btn-secondary:not(.hero .btn-secondary):hover,
.theme-roland-garros .btn-secondary:not(.hero .btn-secondary):hover,
.theme-australian-open .btn-secondary:not(.hero .btn-secondary):hover,
.theme-us-open .btn-secondary:not(.hero .btn-secondary):hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

/* Grand Slam Banner */
.grand-slam-banner {
    background-color: var(--dark);
    padding: var(--spacing-md) 0;
}

.slam-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.slam-item {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.slam-item.ao {
    background-color: var(--ao-blue);
}

.slam-item.fo {
    background-color: var(--fo-orange);
}

.slam-item.wim {
    background-color: var(--wimbledon-purple);
}

.slam-item.uso {
    background-color: var(--uso-blue);
}

/* KPI Section */
.kpi-section {
    padding: 3rem 0;
    background-color: var(--white);
    border-top: 1px solid #e5e7eb;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.kpi-card {
    background-color: transparent;
    padding: var(--spacing-md);
    text-align: center;
    transition: transform 0.2s ease;
    opacity: 0;
    transform: translateY(30px);
}

.kpi-card[data-animated="true"] {
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.6s ease-out forwards;
}

.kpi-card[data-animate="fade-up"] {
    animation-delay: calc(var(--delay, 0) * 1ms);
}

.kpi-card:hover {
    transform: translateY(-2px);
}

.kpi-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
}

.kpi-number.animating {
    animation: pulse 0.5s ease-in-out;
}

.kpi-label {
    font-size: 1.125rem;
    color: var(--gray);
}

/* KPI Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-card {
    background-color: var(--light);
    padding: var(--spacing-md);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Advantages Section */
.advantages-section {
    padding: 3rem 0;
    background-color: var(--white);
    border-top: 1px solid #e5e7eb;
}

.advantages-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.advantage-item {
    background-color: transparent;
    padding: var(--spacing-md);
    text-align: center;
    transition: transform 0.2s ease;
}

.advantage-item:hover {
    transform: translateY(-2px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    display: block;
}

.advantage-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.advantage-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.benefit-card {
    background-color: var(--light);
    padding: var(--spacing-lg);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background-color: var(--white);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background-color: var(--white);
    border-top: 1px solid #e5e7eb;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: var(--spacing-lg);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card {
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--dark);
    opacity: 0.15;
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-lg);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    z-index: 0;
}

.testimonial-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    font-style: normal;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    border: 3px solid var(--dark);
    margin-bottom: var(--spacing-xs);
}

.author-name {
    font-size: 1rem;
    color: var(--dark);
    margin: 0;
    font-weight: 600;
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 400;
    margin: 0;
}

/* Theme-specific testimonial card accents */
.theme-wimbledon .testimonial-card::before {
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 102, 64, 0.3) 100%);
}

.theme-wimbledon .testimonial-card:hover {
    border-color: rgba(0, 102, 64, 0.2);
}

.theme-wimbledon .quote-icon {
    color: var(--primary-color);
}

.theme-wimbledon .testimonial-heading {
    color: var(--primary-color);
}

.theme-wimbledon .author-avatar {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 102, 64, 0.6) 100%);
    border-color: var(--primary-color);
}

.theme-wimbledon .author-name {
    color: var(--primary-color);
}

.theme-roland-garros .testimonial-card::before {
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(212, 82, 42, 0.3) 100%);
}

.theme-roland-garros .testimonial-card:hover {
    border-color: rgba(212, 82, 42, 0.2);
}

.theme-roland-garros .quote-icon {
    color: var(--primary-color);
}

.theme-roland-garros .testimonial-heading {
    color: var(--primary-color);
}

.theme-roland-garros .author-avatar {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(212, 82, 42, 0.6) 100%);
    border-color: var(--primary-color);
}

.theme-roland-garros .author-name {
    color: var(--primary-color);
}

.theme-australian-open .testimonial-card::before {
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 133, 202, 0.3) 100%);
}

.theme-australian-open .testimonial-card:hover {
    border-color: rgba(0, 133, 202, 0.2);
}

.theme-australian-open .quote-icon {
    color: var(--primary-color);
}

.theme-australian-open .testimonial-heading {
    color: var(--primary-color);
}

.theme-australian-open .author-avatar {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 133, 202, 0.6) 100%);
    border-color: var(--primary-color);
}

.theme-australian-open .author-name {
    color: var(--primary-color);
}

.theme-us-open .testimonial-card::before {
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 48, 135, 0.3) 100%);
}

.theme-us-open .testimonial-card:hover {
    border-color: rgba(0, 48, 135, 0.2);
}

.theme-us-open .quote-icon {
    color: var(--primary-color);
}

.theme-us-open .testimonial-heading {
    color: var(--primary-color);
}

.theme-us-open .author-avatar {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 48, 135, 0.6) 100%);
    border-color: var(--primary-color);
}

.theme-us-open .author-name {
    color: var(--primary-color);
}

/* Pricing Section - Column-based layout */
.pricing-section {
    padding: 3rem 0;
    background-color: #faf9f7;
    border-top: 1px solid #e5e7eb;
}

/* Theme-specific pricing section backgrounds */
.theme-wimbledon .pricing-section {
    background-color: #f0f7ed;
}

.theme-roland-garros .pricing-section {
    background-color: #fff5f5;
}

.theme-australian-open .pricing-section {
    background-color: #f0f7fc;
}

.theme-us-open .pricing-section {
    background-color: #f0f2f7;
}

.pricing-header-section {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.pricing-intro {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

.pricing-table-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-loading {
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--gray);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.pricing-table-header-row {
    background-color: #f9fafb;
}

.pricing-table-header-label {
    background-color: var(--primary-color, #ef4444);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    padding: 1.25rem;
}

.pricing-table-plan-header {
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem 1rem;
    vertical-align: top;
}

/* Park plan uses theme primary color */
.pricing-table-plan-park {
    background-color: var(--primary-color, #0ea5e9);
    color: var(--white);
}

/* Club plan uses theme secondary color or a complementary color */
.pricing-table-plan-club {
    background-color: var(--secondary-color, #10b981);
    color: var(--white);
}

/* Master and Slam plans use neutral colors that work with all themes */
.pricing-table-plan-master {
    background-color: #6b7280;
    color: var(--white);
}

.pricing-table-plan-slam {
    background-color: #9ca3af;
    color: var(--white);
}

.pricing-table-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-table-coming-soon {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.pricing-table-feature-label {
    text-align: left;
    font-weight: 500;
    color: #374151;
    background-color: #f9fafb;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.pricing-table-cell {
    background-color: var(--white);
    padding: 0.75rem 1rem;
}

.pricing-table-row:nth-child(even) .pricing-table-cell {
    background-color: #f9fafb;
}

.pricing-table-price-row .pricing-table-cell {
    background-color: var(--white);
    padding: 1.25rem 1rem;
}

.pricing-table-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
}

/* Price colors match plan header colors */
.pricing-table-plan-park .pricing-table-price {
    color: var(--primary-color, #0ea5e9);
}

.pricing-table-plan-club .pricing-table-price {
    color: var(--secondary-color, #10b981);
}

.pricing-table-plan-master .pricing-table-price {
    color: #6b7280;
}

.pricing-table-plan-slam .pricing-table-price {
    color: #9ca3af;
}

.pricing-table-price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
    margin-left: 0.25rem;
}

.pricing-table-check {
    color: #10b981;
    font-size: 1.5rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.pricing-table-x {
    color: #9ca3af;
    font-size: 1.5rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.pricing-table-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    display: inline-block;
}

.pricing-table-button-row .pricing-table-cell {
    padding: 1.25rem 1rem;
    background-color: var(--white);
}

.pricing-table-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--white);
}

/* Button colors match plan header colors */
.pricing-table-btn-park {
    background-color: var(--primary-color, #0ea5e9);
}

.pricing-table-btn-park:hover {
    background-color: var(--primary-color, #0ea5e9);
    opacity: 0.9;
    filter: brightness(0.9);
}

.pricing-table-btn-club {
    background-color: var(--secondary-color, #10b981);
}

.pricing-table-btn-club:hover {
    background-color: var(--secondary-color, #10b981);
    opacity: 0.9;
    filter: brightness(0.9);
}

.pricing-table-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.pricing-table-feature-row:nth-child(even) {
    background-color: #f9fafb;
}

.pricing-table-feature-row:nth-child(even) .pricing-table-cell {
    background-color: #f9fafb;
}

.pricing-table-feature-row:nth-child(odd) .pricing-table-cell {
    background-color: var(--white);
}

/* Legacy grid styles - keeping for backward compatibility */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #f5f3f0;
    border: none;
    border-radius: 0.75rem;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

/* Theme-specific pricing card backgrounds */
.theme-wimbledon .pricing-card {
    background: #e8f5e9;
}

.theme-roland-garros .pricing-card {
    background: #ffebee;
}

.theme-australian-open .pricing-card {
    background: #e3f2fd;
}

.theme-us-open .pricing-card {
    background: #e8eaf6;
}

.pricing-card:hover {
    transform: translateY(-2px);
}

.pricing-card-featured {
    border: none;
}

/* Park (Free) Plan - Special Color */
.pricing-card-park {
    background: #e0f2fe;
    border: 2px solid #0ea5e9;
}

.pricing-card-park .pricing-plan-name {
    color: #0ea5e9;
}

.pricing-card-park .pricing-price-amount {
    color: #0ea5e9;
}

.pricing-card-park .pricing-btn-default {
    background: #0ea5e9;
    color: var(--white);
}

.pricing-card-park .pricing-btn-default:hover {
    background: #0284c7;
}

/* Theme-specific Park card backgrounds */
.theme-wimbledon .pricing-card-park {
    background: #e8f5e9;
    border-color: #006640;
}

.theme-wimbledon .pricing-card-park .pricing-plan-name,
.theme-wimbledon .pricing-card-park .pricing-price-amount {
    color: #006640;
}

.theme-wimbledon .pricing-card-park .pricing-btn-default {
    background: #006640;
}

.theme-wimbledon .pricing-card-park .pricing-btn-default:hover {
    background: #004d31;
}

.theme-roland-garros .pricing-card-park {
    background: #fff5f5;
    border-color: #D4522A;
}

.theme-roland-garros .pricing-card-park .pricing-plan-name,
.theme-roland-garros .pricing-card-park .pricing-price-amount {
    color: #D4522A;
}

.theme-roland-garros .pricing-card-park .pricing-btn-default {
    background: #D4522A;
}

.theme-roland-garros .pricing-card-park .pricing-btn-default:hover {
    background: #b83f1f;
}

.theme-australian-open .pricing-card-park {
    background: #e3f2fd;
    border-color: #0085CA;
}

.theme-australian-open .pricing-card-park .pricing-plan-name,
.theme-australian-open .pricing-card-park .pricing-price-amount {
    color: #0085CA;
}

.theme-australian-open .pricing-card-park .pricing-btn-default {
    background: #0085CA;
}

.theme-australian-open .pricing-card-park .pricing-btn-default:hover {
    background: #0066a3;
}

.theme-us-open .pricing-card-park {
    background: #e8eaf6;
    border-color: #003087;
}

.theme-us-open .pricing-card-park .pricing-plan-name,
.theme-us-open .pricing-card-park .pricing-price-amount {
    color: #003087;
}

.theme-us-open .pricing-card-park .pricing-btn-default {
    background: #003087;
}

.theme-us-open .pricing-card-park .pricing-btn-default:hover {
    background: #001d4a;
}

.pricing-card-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pricing-plan-name .pricing-recommended-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f97316;
    margin-left: 0.5rem;
    display: inline;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 0.5rem;
    margin-bottom: var(--spacing-lg);
}

.pricing-price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    line-height: 1;
}

.pricing-price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-features {
    flex: 1;
    margin-bottom: var(--spacing-lg);
}

.pricing-feature-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: var(--spacing-sm);
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #374151;
}

.pricing-feature .material-symbols-outlined {
    font-size: 1.125rem;
    color: #374151;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    display: block;
    border: none;
    margin-top: auto;
}

.pricing-btn-default {
    background: #e5e7eb;
    color: #374151;
}

.pricing-btn-default:hover {
    background: #d1d5db;
}

.pricing-btn-primary {
    background: #374151;
    color: var(--white);
}

.pricing-btn-primary:hover {
    background: #1f2937;
}

.pricing-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

.pricing-guarantee {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Search Section */
.search-section {
    padding: 3rem 0;
    background-color: var(--white);
    border-top: 1px solid #e5e7eb;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.search-box {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 800px;
    margin: var(--spacing-md) auto;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray);
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input.zip-input {
    flex: 0 0 150px;
    min-width: 120px;
}

.search-input:focus {
    border-color: var(--primary);
}

.btn-secondary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    background-color: transparent;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled) {
    background-color: var(--primary);
    color: var(--white);
}

.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary .material-symbols-outlined {
    font-size: 1.25rem;
}

.search-results {
    margin-top: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100px;
    text-align: left;
    color: var(--gray);
}

.search-result-item {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.search-result-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
/* Tablet and below: 2x2 grid */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        max-width: 100%;
    }
    
    .pricing-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        min-width: 800px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .pricing-table-header-label {
        font-size: 0.875rem;
        padding: 1rem 0.75rem;
    }
    
    .pricing-table-plan-header {
        font-size: 1rem;
        padding: 1rem 0.5rem;
    }
    
    .pricing-table-plan-name {
        font-size: 1.125rem;
    }
    
    .pricing-table-feature-label {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
    }
    
    .pricing-table-price {
        font-size: 1.25rem;
    }
    
    .pricing-table-btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 1rem;
    }
    
    .nav-links a:last-of-type {
        border-bottom: none;
    }
    
    .nav-links .btn-login,
    .nav-links .btn-sign-in,
    .nav-links .btn-sign-up,
    .nav-links .btn-sign-out {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
    }
    
    .nav-links .btn-sign-in {
        margin-bottom: 0.5rem;
    }
    
    .nav-branding {
        flex: 1;
        min-width: 0;
        gap: 0.75rem;
    }
    
    .nav-branding .theme-toggle {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .nav-branding .theme-toggle .material-symbols-outlined {
        font-size: 1.1rem;
    }
    
    .nav-branding .logo h1 {
        font-size: 1.1rem;
    }
    
    .nav-branding .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-content {
        position: relative;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Close icon when menu is open - handled via JavaScript */
    
    /* Hero Section */
    .hero-content {
        padding: 6rem var(--spacing-md) 4rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.25;
        margin-bottom: 2rem;
        padding: 0 var(--spacing-xs);
        /* Prevent word breaking - only break at natural word boundaries, not mid-word */
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none;
    }
    
    .hero-lead {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        padding: 0 var(--spacing-xs);
        line-height: 1.6;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.875rem;
        padding: 0 var(--spacing-xs);
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .ladder-preview-header,
    .ladder-preview-row {
        grid-template-columns: 40px 1fr 60px 80px;
        font-size: 0.875rem;
    }
    
    .ladder-player {
        font-size: 0.875rem;
    }
    
    .status-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2rem;
    }
    
    .advantages-intro,
    .testimonials-intro {
        font-size: 1.125rem;
    }
    
    .slam-logos {
        font-size: 0.875rem;
    }
    
    /* Search */
    .search-box {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
        flex: 1;
    }
    
    .search-input.zip-input {
        flex: 1;
        min-width: 100%;
    }
    
    .search-box .btn {
        width: 100%;
    }
    
    .search-results {
        padding: 0 var(--spacing-sm);
    }
    
    /* Grid layouts */
    .kpi-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    /* KPI cards */
    .kpi-card {
        padding: var(--spacing-md);
    }
    
    .kpi-number {
        font-size: 2.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    /* Pricing Section - 2x2 grid for tablet and mobile */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .pricing-table {
        min-width: 700px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.625rem 0.375rem;
        font-size: 0.8125rem;
    }
    
    .pricing-table-header-label {
        font-size: 0.8125rem;
        padding: 0.875rem 0.625rem;
    }
    
    .pricing-table-plan-header {
        font-size: 0.9375rem;
        padding: 0.875rem 0.375rem;
    }
    
    .pricing-table-plan-name {
        font-size: 1rem;
    }
    
    .pricing-table-coming-soon {
        font-size: 0.75rem;
    }
    
    .pricing-table-feature-label {
        font-size: 0.8125rem;
        padding: 0.5rem 0.625rem;
    }
    
    .pricing-table-price {
        font-size: 1.125rem;
    }
    
    .pricing-table-price-period {
        font-size: 0.875rem;
    }
    
    .pricing-table-check,
    .pricing-table-x {
        font-size: 1.25rem;
    }
    
    .pricing-table-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }
    
    .pricing-card {
        padding: var(--spacing-md);
    }
    
    .pricing-plan-name {
        font-size: 1.5rem;
    }
    
    .pricing-price-amount {
        font-size: 1.25rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 5rem var(--spacing-md) 3.5rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1.5rem;
        padding: 0;
        padding-top: 2rem;
        letter-spacing: -0.01em;
        /* Prevent word breaking - only break at natural word boundaries, not mid-word */
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none;
    }
    
    .hero-lead {
        font-size: 1rem;
        margin-bottom: 2.25rem;
        padding: 0;
        line-height: 1.6;
    }
    
    .hero-feature {
        font-size: 1rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
        padding: 0;
    }
    
    .hero-actions .btn {
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .kpi-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: var(--spacing-md);
    }
    
    .ladder-preview-header,
    .ladder-preview-row {
        grid-template-columns: 35px 1fr 50px 70px;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .ladder-player {
        font-size: 0.75rem;
    }
    
    .hero-screenshot-header {
        padding: var(--spacing-sm);
    }
    
    .hero-screenshot-content {
        padding: var(--spacing-sm);
    }
}

