/* Tournament Page Specific Styles */
/* Only includes styles unique to tournament.html that are NOT in style.css */

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

/* TD$ Highlight - Consistent green styling for Tournament Dollars */
.td-highlight {
    color: var(--bma-green);
    font-weight: 700;
    position: relative;
    text-shadow: 0 0 20px rgba(46, 139, 87, 0.4);
}

/* Tournament Hero - Subpage Style with Background Image */
.tournament-hero {
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    padding: 4rem 2rem 3rem;
}

/* Sports background image */
.tournament-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Green tinge overlay with texture */
.tournament-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.02) 2px,
            rgba(255,255,255,0.02) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.02) 2px,
            rgba(255,255,255,0.02) 4px
        ),
        linear-gradient(135deg, rgba(46, 139, 87, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.tournament-hero .subpage-hero-container {
    position: relative;
    z-index: 2;
}

.tournament-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
}

.tournament-hero-content {
    max-width: 600px;
}

.tournament-hero-content .subpage-hero-title {
    font-size: clamp(2rem, 6vw, 3.25rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0;
    align-items: start;
}

.title-x-icon {
    width: clamp(3.5rem, 9vw, 5.5rem);
    height: clamp(3.5rem, 9vw, 5.5rem);
    margin-right: -1.5rem;
}

.tournament-hero-content .subpage-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
}

.tournament-hero-content .subpage-site-name {
    margin-bottom: 1.5rem;
}

/* Tournament Intro Section */
.tournament-intro-section {
    background: var(--bma-dark-200);
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 50/50 Grid Layout */
.tournament-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tournament-intro-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tournament-intro-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.2));
    display: block;
    margin: 0 auto;
}

.tournament-intro-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tournament-intro-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

.tournament-intro-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.tournament-hero-logo img {
    max-width: 400px;
    height: auto;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .tournament-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tournament-hero-logo {
        order: -1;
    }

    .tournament-hero-logo img {
        max-width: 300px;
    }
}

/* Operator Outcomes Section */
.operator-outcomes-section {
    background: var(--bma-dark-200);
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.outcome-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(46, 139, 87, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    border-color: rgba(46, 139, 87, 0.5);
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.08) 0%, rgba(0, 0, 0, 0.7) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.2);
}

.outcome-icon {
    color: var(--bma-green);
    margin-bottom: 1.5rem;
}

.outcome-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bma-yellow);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.outcome-description {
    font-size: 0.95rem;
    color: var(--bma-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.outcome-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.outcome-features li:last-child {
    margin-bottom: 0;
}

.feature-check {
    color: var(--bma-green);
    flex-shrink: 0;
}

/* Platform CTA Section */
.platform-cta-section {
    background: url('/betmaxaction/images/bma texture.jpg') center/cover no-repeat;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(46, 139, 87, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: rgba(46, 139, 87, 0.5);
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.highlight-icon {
    flex-shrink: 0;
    color: var(--bma-green);
}

.highlight-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Platform Features 50/50 Sections */
.platform-section {
    background: var(--bma-dark-200);
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-section.gray-bg {
    background: var(--bma-dark-300);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bma-yellow);
}

.content-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--bma-white);
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-text p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Proficiencies Panel */
.proficiencies-panel {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    min-height: 280px;
    border: 1px solid rgba(46, 139, 87, 0.3);
}

.proficiencies-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(46, 139, 87, 0.3);
    border-color: var(--bma-green);
    background: rgba(0, 0, 0, 0.5);
}

.proficiencies-header {
    position: absolute;
    top: -5px;
    left: -20px;
    transform: rotate(-2deg);
}

.sticky-tab-scuffed {
    background: linear-gradient(135deg, var(--bma-green) 0%, #1e6b42 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.4);
    position: relative;
    overflow: hidden;
}

.texture-noise {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.02) 2px,
            rgba(255,255,255,0.02) 3px
        );
    mix-blend-mode: overlay;
    pointer-events: none;
}

.proficiencies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proficiencies-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
    transition: all 0.2s ease;
}

.proficiencies-list li:last-child {
    border-bottom: none;
}

.proficiencies-list li:hover {
    color: var(--bma-yellow);
    transform: translateX(4px);
}

.proficiencies-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--bma-green);
    font-weight: 600;
    transition: all 0.2s ease;
}

.proficiencies-list li:hover::before {
    color: var(--bma-yellow);
}

/* Screenshot Placeholder */
.screenshot-placeholder {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px dashed rgba(46, 139, 87, 0.4);
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.platform-screenshot {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(46, 139, 87, 0.2);
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    width: 100%;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slides {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.02);
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--bma-yellow);
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    user-select: none;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%), rgba(20, 20, 20, 0.95);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.carousel-nav.prev {
    left: 16px;
}

.carousel-nav.next {
    right: 16px;
}

.carousel-nav.hidden {
    display: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--bma-yellow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Lightbox CSS moved to style.css (global) */

.placeholder-icon {
    font-size: 80px;
    color: var(--bma-green);
    margin-bottom: 20px;
    opacity: 0.7;
    text-shadow: 0 0 20px rgba(46, 139, 87, 0.5);
}

.placeholder-text {
    font-size: 14px;
    color: var(--bma-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.placeholder-dimensions {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
.gallery-section {
    background: url('/betmaxaction/images/bma texture.jpg') center/cover no-repeat;
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: var(--bma-green);
}

.gallery-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--bma-white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
    padding: 3rem;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoomIn 0.3s;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 300;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: var(--bma-white);
    background: var(--bma-red);
    border-color: var(--bma-red);
    transform: rotate(90deg);
}

.lightbox-caption {
    color: var(--bma-white);
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* Live Demo Section / Tournament Lobby */
.demo-section {
    padding: 6rem 2rem;
    background: var(--bma-dark-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Display large styling like Bet Max Tourney */
.display-large h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--bma-white);
    text-transform: uppercase;
}

/* Accent color for highlighted words */
.accent {
    color: #2E8B57 !important;
    text-shadow: 0 0 30px rgba(46, 139, 87, 0.5);
    font-weight: 900 !important;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--bma-white);
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
}

.section-title .title-x-icon {
    width: clamp(2.5rem, 6vw, 4rem);
    height: clamp(2.5rem, 6vw, 4rem);
    margin-right: -1.5rem;
}

/* Tournament Lobby */
.tournament-lobby {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 1px rgba(46, 139, 87, 0.3);
    padding: 2rem;
    border: 1px solid rgba(46, 139, 87, 0.2);
    position: relative;
}

/* Enhanced shimmer effect - more sophisticated */
.tournament-lobby::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(46, 139, 87, 0.05) 25%,
        rgba(255, 215, 0, 0.03) 50%,
        rgba(46, 139, 87, 0.05) 75%,
        transparent 100%
    );
    animation: shimmer 10s infinite ease-in-out;
    pointer-events: none;
    will-change: transform;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(200%); }
}

/* Tournament Info Card - Enhanced glassmorphic design */
.tournament-card {
    background: linear-gradient(135deg,
        rgba(46, 139, 87, 0.15) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(46, 139, 87, 0.4);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: blur(10px) saturate(150%);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(46, 139, 87, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tournament-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(46, 139, 87, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(46, 139, 87, 0.6);
}

.tournament-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.25) 0%, rgba(46, 139, 87, 0.1) 100%);
    border: 1px solid var(--bma-green);
    border-radius: 24px;
    color: var(--bma-green);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    user-select: none;
    -webkit-user-select: none;
}

.tournament-badge.live {
    color: var(--bma-green);
    border-color: var(--bma-green);
    text-shadow: 0 0 8px rgba(46, 139, 87, 0.6);
    animation: breathingPulse 2s infinite ease-in-out;
}

.live-indicator {
    animation: pulseGlow 2s infinite;
    margin-right: 0.25rem;
}

@keyframes breathingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 16px rgba(46, 139, 87, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tournament-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--bma-yellow);
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
}

.tournament-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    user-select: none;
    -webkit-user-select: none;
}

.tournament-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(46, 139, 87, 0.3);
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    user-select: none;
    -webkit-user-select: none;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bma-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-select: none;
}

.stat-value.highlight {
    color: var(--bma-yellow);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-join-tournament {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--bma-green) 0%, #1e6b42 100%);
    color: white;
    border: 1px solid rgba(46, 139, 87, 0.4);
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 16px rgba(46, 139, 87, 0.3),
        0 0 40px rgba(46, 139, 87, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-join-tournament::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-join-tournament:hover {
    background: linear-gradient(135deg, #3aa068 0%, var(--bma-green) 100%);
    transform: translateY(-2px);
    border-color: var(--bma-green);
    box-shadow:
        0 8px 24px rgba(46, 139, 87, 0.5),
        0 0 60px rgba(46, 139, 87, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    will-change: transform;
}

.btn-join-tournament:hover::before {
    left: 100%;
}

.btn-join-tournament:active {
    transform: translateY(0);
    box-shadow:
        0 2px 8px rgba(46, 139, 87, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Slate Section */
.slate-section {
    margin: 2rem 0;
}

.slate-header {
    text-align: center;
    margin-bottom: 2rem;
}

.slate-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bma-white);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.slate-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

/* Sport Slate */
.sport-slate {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(10, 10, 10, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.sport-slate-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sport-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sport-slate-header h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bma-white);
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    user-select: none;
    -webkit-user-select: none;
}

.game-count {
    color: var(--bma-yellow);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
}

/* Slate Games */
.slate-games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Enhanced hover effect with sweep animation */
.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        transparent 0%,
        rgba(46, 139, 87, 0.1) 50%,
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.game-card:hover {
    border-color: rgba(46, 139, 87, 0.6);
    background: linear-gradient(135deg,
        rgba(46, 139, 87, 0.12) 0%,
        rgba(255, 215, 0, 0.02) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(46, 139, 87, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    will-change: transform;
}

.game-card:hover::before {
    transform: translateX(0);
}

.game-card:active {
    transform: translateY(-2px) scale(1.01);
}

.game-time {
    color: var(--bma-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-select: none;
}

.game-matchup {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.game-matchup .team {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
}

.team-name {
    color: var(--bma-white);
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.team-record {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    font-weight: 600;
    user-select: none;
    -webkit-user-select: none;
}

.vs {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    user-select: none;
    -webkit-user-select: none;
}

.market-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.market-badge {
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.2) 0%, rgba(46, 139, 87, 0.1) 100%);
    border: 1px solid rgba(46, 139, 87, 0.35);
    border-radius: 6px;
    color: var(--bma-green);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
}

.game-card:hover .market-badge {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.3) 0%, rgba(46, 139, 87, 0.15) 100%);
    border-color: var(--bma-green);
    box-shadow: 0 2px 8px rgba(46, 139, 87, 0.3);
}

/* Leaderboard Preview */
.leaderboard-preview {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(10, 10, 10, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.leaderboard-preview h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bma-white);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-table th {
    padding: 0.75rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    user-select: none;
    -webkit-user-select: none;
}

.leaderboard-table th:first-child {
    width: 60px;
    text-align: center;
}

.leaderboard-table th:last-child,
.leaderboard-table td:last-child {
    text-align: right;
}

.leaderboard-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.leaderboard-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.leaderboard-row.highlighted {
    background: linear-gradient(90deg, rgba(46, 139, 87, 0.15) 0%, rgba(46, 139, 87, 0.05) 100%);
    border-left: 3px solid var(--bma-green);
    box-shadow: inset 0 0 20px rgba(46, 139, 87, 0.1);
}

.leaderboard-row td {
    padding: 1rem 0.75rem;
}

.rank-cell {
    text-align: center;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #E8E8E8 0%, #A8A8A8 100%);
    color: #000;
    box-shadow: 0 2px 12px rgba(192, 192, 192, 0.4);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(205, 127, 50, 0.4);
}

.rank-badge.default {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-name {
    color: var(--bma-white);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.balance {
    color: var(--bma-white);
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.roi {
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.roi.positive {
    color: var(--bma-green);
}

.roi.negative {
    color: var(--bma-red);
}

/* How It Works Section */
.how-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bma-dark-400) 0%, var(--bma-dark-200) 100%);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.how-left {
    padding-right: 2rem;
}

.how-right {
    position: relative;
}

.how-description {
    color: var(--bma-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tournament-dollars {
    color: var(--bma-white);
    position: relative;
    display: inline-block;
}

.tournament-dollars::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bma-green);
    animation: underlineExpand 0.5s ease 0.5s forwards;
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


.how-steps {
    margin: 3rem 0;
}

.how-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(46, 139, 87, 0.1);
    border-left: 4px solid var(--bma-green);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.how-step:hover {
    background: rgba(46, 139, 87, 0.2);
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bma-yellow);
    color: var(--bma-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--bma-white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.how-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.how-highlight {
    color: var(--bma-white);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
}

/* Device Mockups */
.device-mockups {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Laptop Mockup */
.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.laptop-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid #333;
    border-radius: 8px 8px 0 0;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #2a2a2a;
    border-bottom: 1px solid #444;
}

.laptop-base {
    background: linear-gradient(to bottom, #d1d1d1 0%, #a8a8a8 100%);
    height: 20px;
    border-radius: 0 0 12px 12px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #888;
    border-radius: 2px;
}

/* Phone Mockup */
.phone-mockup {
    position: absolute;
    right: -30px;
    bottom: -20px;
    width: 140px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 12px;
    height: 240px;
    overflow: hidden;
}

/* Placeholder Content */
.screen-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    color: var(--bma-white);
}

.laptop-screen .screen-placeholder {
    height: 300px;
    margin-top: 20px;
}

.screen-placeholder svg {
    margin-bottom: 1rem;
    color: var(--bma-green);
}

.screen-placeholder p {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem 0;
    color: var(--bma-yellow);
}

.screen-placeholder span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-header {
    color: var(--bma-yellow);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    height: 1.5rem;
    line-height: 1.5rem;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

.mockup-stats .stat {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--bma-green);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mockup-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bma-white);
    margin-bottom: 0.25rem;
    height: 2rem;
    line-height: 2rem;
    position: relative;
}

/* Animation with absolute positioning */
.fade-text {
    position: absolute;
    width: 100%;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-text.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-text.next {
    opacity: 0;
    transform: translateY(20px);
}

.fade-text.prev {
    opacity: 0;
    transform: translateY(-20px);
}

.mockup-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--bma-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Entry Points / Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--bma-dark-300);
}

.pricing-section .container {
    padding: 0 1rem;
    max-width: 1400px;
}

/* Entry Tabs */
.entry-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem auto;
    max-width: 800px;
    flex-wrap: wrap;
}

.entry-tab-button {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%), rgba(20, 20, 20, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.entry-tab-button svg {
    flex-shrink: 0;
}

.entry-tab-button:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%), rgba(20, 20, 20, 0.8);
    border-color: var(--bma-yellow);
    color: var(--bma-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.entry-tab-button.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%), rgba(20, 20, 20, 0.9);
    border-color: var(--bma-yellow);
    color: var(--bma-yellow);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.entry-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bma-yellow);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Entry Tab Content */
.entry-tab-content {
    display: none;
}

.entry-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.entry-tab-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Entry Badge (for F2P and Custom tabs) */
.entry-badge {
    font-size: 2rem;
    font-weight: 900;
    color: var(--bma-yellow);
    margin-bottom: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid var(--bma-yellow);
    border-radius: 8px;
    display: inline-block;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

@media (min-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: scale(1.05);
    border-color: var(--bma-yellow);
    background: rgba(255, 215, 0, 0.05);
}

.price-card.featured {
    border-color: var(--bma-green);
    background: rgba(46, 139, 87, 0.1);
}

.entry-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bma-yellow);
    margin-bottom: 0.5rem;
}

.prize-pool {
    color: var(--bma-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.entry-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.entry-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
}

/* Footer - removed generic styles as footer is a shared partial with styles in style.css */

/* Mobile Responsive - Tournament Specific */
@media (max-width: 768px) {
    /* Operator Outcomes Mobile */
    .operator-outcomes-section {
        padding: 60px 0;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .outcome-card {
        padding: 2rem 1.5rem;
    }

    .outcome-icon {
        width: 40px;
        height: 40px;
    }

    .outcome-headline {
        font-size: 1.25rem;
    }

    .outcome-description {
        font-size: 0.875rem;
    }

    .outcome-features li {
        font-size: 0.8125rem;
    }

    /* Platform CTA Mobile */
    .platform-cta-section {
        padding: 60px 0;
    }

    .platform-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .highlight-item {
        padding: 1.25rem;
    }


    .highlight-text {
        font-size: 0.875rem;
    }

    /* Platform Sections Mobile */
    .platform-section {
        padding: 60px 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .proficiencies-panel {
        padding: 40px 24px;
        min-height: auto;
    }

    .proficiencies-header {
        position: static;
        transform: none;
        margin-bottom: 24px;
    }

    .screenshot-placeholder {
        min-height: 300px;
        padding: 60px 24px;
    }

    .content-text h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .content-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Entry Tabs Mobile */
    .entry-tabs {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .entry-tab-button {
        width: 100%;
        padding: 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .entry-tab-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Demo Section Mobile */
    .demo-section {
        padding: 3rem 1rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .section-x {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
        line-height: 1;
    }

    /* Tournament Lobby Mobile */
    .tournament-lobby {
        padding: 1.25rem;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 1px rgba(46, 139, 87, 0.2);
    }

    .tournament-card {
        padding: 1.25rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }

    .tournament-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 0.5rem;
    }

    .tournament-badge {
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .tournament-name {
        font-size: 1.35rem;
        line-height: 1.25;
        word-break: break-word;
        margin-top: 0;
    }

    .tournament-tagline {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .tournament-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .stat-item {
        padding: 0.875rem 0.625rem;
        border-radius: 10px;
        min-height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .stat-value {
        font-size: 1.35rem;
        margin-top: 0.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

    .btn-join-tournament {
        font-size: 0.95rem;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        letter-spacing: 0.5px;
    }

    .slate-header h3 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .slate-info {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .sport-slate {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .sport-slate-header {
        flex-wrap: wrap;
        gap: 0.625rem;
        margin-bottom: 1rem;
        padding-bottom: 0.875rem;
    }

    .sport-slate-header h4 {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }

    .sport-icon {
        font-size: 1.35rem;
    }

    .game-count {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
        border-radius: 12px;
        white-space: nowrap;
    }

    .slate-games {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .game-card {
        padding: 1rem;
        border-radius: 10px;
        min-height: 120px;
    }

    .game-time {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.3px;
    }

    .game-matchup {
        margin-bottom: 0.875rem;
    }

    .team-name {
        font-size: 0.875rem;
        line-height: 1.3;
        margin-bottom: 0.125rem;
    }

    .team-record {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }

    .market-options {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .market-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        border-radius: 6px;
        white-space: nowrap;
    }

    .leaderboard-preview {
        padding: 1rem;
        overflow-x: auto;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .leaderboard-preview h3 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        letter-spacing: 0.3px;
    }

    .leaderboard-table {
        font-size: 0.875rem;
        min-width: 100%;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }

    .leaderboard-table th {
        position: sticky;
        top: 0;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(5px);
        z-index: 1;
    }

    .rank-badge {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .player-name {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .balance {
        font-size: 0.875rem;
        font-weight: 700;
    }

    .roi {
        font-size: 0.85rem;
        font-weight: 700;
    }

    /* How It Works Mobile */
    .how-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Device Mockups Mobile */
    .device-mockups {
        height: auto;
        padding: 2rem 0;
    }

    .laptop-mockup {
        max-width: 100%;
    }

    .phone-mockup {
        display: none; /* Hide phone on mobile to avoid clutter */
    }

    .laptop-screen .screen-placeholder {
        height: 200px;
    }

    .how-steps {
        margin: 2rem 0;
    }

    .how-step {
        padding: 1rem;
        gap: 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .how-mockup {
        height: 350px;
    }

    .mockup-header {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0 0.5rem;
    }

    .mockup-stats {
        gap: 0.25rem;
        padding: 0 0.5rem;
    }

    .mockup-stats .stat {
        padding: 0.75rem 0.25rem;
        flex: 1;
        min-width: 0;
    }

    .mockup-stats .stat-value {
        font-size: 1.1rem;
        min-height: 1.8rem;
        word-break: break-word;
    }

    .mockup-stats .stat-label {
        font-size: 0.65rem;
    }

    .mockup-content {
        width: 90%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-card h3 {
        font-size: 1.25rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .price {
        font-size: 1.75rem;
    }

    .pricing-card ul {
        font-size: 0.875rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-actions .btn-primary {
        width: 100%;
        padding: 0.875rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo {
        max-width: 250px;
        margin-bottom: 1rem;
    }

    .footer p {
        font-size: 0.875rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

    .footer a {
        font-size: 0.875rem;
    }

    /* General Typography Mobile */
    .container {
        padding: 0 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Tournament Hero Mobile */
    .tournament-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .tournament-hero-grid {
        gap: 1.5rem;
    }

    .tournament-intro-section {
        padding: 2rem 1.5rem;
    }

    /* Stack grid on mobile */
    .tournament-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .tournament-intro-logo {
        max-width: 280px;
    }

    .tournament-intro-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

    .tournament-intro-actions {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .tournament-intro-actions .btn-primary,
    .tournament-intro-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Carousel Mobile - larger touch targets */
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-nav.prev {
        left: 8px;
    }

    .carousel-nav.next {
        right: 8px;
    }

    .carousel-indicators {
        gap: 8px;
        margin-top: 12px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.85rem;
    }

    /* Tournament Hero Extra Small */
    .tournament-hero-content .subpage-hero-title {
        font-size: 2rem;
    }

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

    /* Breadcrumb Extra Small */
    .breadcrumb-nav {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    /* Tournament Lobby Extra Small Mobile */
    .tournament-lobby {
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }

    .tournament-card {
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1.25rem;
    }

    .tournament-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 0.625rem;
    }

    .tournament-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        border-radius: 12px;
        margin-bottom: 0.875rem;
    }

    .tournament-name {
        font-size: 1.15rem;
        line-height: 1.2;
        margin: 0 0 0.25rem 0;
        word-break: break-word;
    }

    .tournament-tagline {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
        line-height: 1.4;
    }

    .tournament-stats {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    .stat-item {
        padding: 0.75rem 0.625rem;
        border-radius: 8px;
        min-height: 65px;
        text-align: center;
    }

    .stat-value {
        font-size: 1.25rem;
        margin-top: 0.25rem;
    }

    .stat-label {
        font-size: 0.675rem;
        margin-bottom: 0.25rem;
        letter-spacing: 0.25px;
    }

    .btn-join-tournament {
        font-size: 0.875rem;
        padding: 0.875rem;
        border-radius: 8px;
        margin-top: 0.75rem;
        letter-spacing: 0.5px;
        font-weight: 800;
    }

    .slate-header {
        margin-bottom: 1.5rem;
    }

    .slate-header h3 {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .slate-info {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .sport-slate {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .sport-slate-header {
        gap: 0.5rem;
        flex-wrap: wrap;
        padding-bottom: 0.75rem;
        margin-bottom: 1rem;
    }

    .sport-slate-header h4 {
        font-size: 0.95rem;
        width: 100%;
        order: 2;
    }

    .sport-icon {
        font-size: 1.25rem;
        order: 1;
    }

    .game-count {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        border-radius: 10px;
        order: 3;
        margin-left: auto;
    }

    .slate-games {
        gap: 0.75rem;
    }

    .game-card {
        padding: 0.875rem;
        border-radius: 8px;
    }

    .game-time {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .game-matchup {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .team-name {
        font-size: 0.825rem;
        line-height: 1.3;
    }

    .team-record {
        font-size: 0.65rem;
        margin-top: 0.125rem;
    }

    .vs {
        font-size: 0.65rem;
    }

    .market-options {
        gap: 0.375rem;
    }

    .market-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.45rem;
        border-radius: 4px;
    }

    .leaderboard-preview {
        padding: 1rem;
        border-radius: 12px;
    }

    .leaderboard-preview h3 {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
    }

    .leaderboard-table {
        font-size: 0.75rem;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 0.5rem 0.375rem;
    }

    .leaderboard-table th {
        font-size: 0.7rem;
    }

    .rank-badge {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .player-name {
        font-size: 0.8rem;
    }

    .balance {
        font-size: 0.85rem;
    }

    .roi {
        font-size: 0.8rem;
    }

    /* How it works section */
    .how-note,
    .how-highlight {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .how-step {
        padding: 0.75rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 0.9rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    /* Pricing cards mobile optimization */
    .pricing-grid {
        gap: 1rem;
    }

    .price-card {
        padding: 1.25rem;
    }

    .entry-price {
        font-size: 2rem;
    }

    .prize-pool {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .entry-features {
        font-size: 0.8rem;
    }

    .entry-features li {
        padding: 0.4rem 0;
    }

    /* CTA section improvements */
    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .cta-section p {
        font-size: 0.85rem;
    }

    .cta-actions {
        margin-top: 1.25rem;
    }

    .cta-actions .btn-primary {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    /* Button improvements */
    .btn-primary {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    /* General spacing improvements */
    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 0.75rem;
    }

    /* Footer mobile optimization */
    .footer {
        padding: 1.5rem 0.75rem;
    }

    .footer p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .footer a {
        font-size: 0.8rem;
    }

    /* Step cards */
    .step-card {
        padding: 1.25rem;
    }

    /* Mockup improvements */
    .how-mockup {
        height: 300px;
        margin-top: 2rem;
    }

    .mockup-header {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .mockup-stats {
        padding: 0.5rem;
    }

    .stat {
        padding: 0.75rem 0.5rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

/* Tablet View */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
