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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #202124;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Landing Page Styles - Modern Sports Theme */
.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background:
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(220,38,38,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.9;
    animation: backgroundPulse 8s ease-in-out infinite;
    transform: translateZ(0);
    will-change: transform;
}

.landing-page::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(239, 68, 68, 0.02) 0%, transparent 40%),
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(220, 38, 38, 0.02) 90deg, transparent 180deg, rgba(239, 68, 68, 0.01) 270deg, transparent 360deg);
    animation: sciFiRotate 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

@keyframes parallaxFloat {
    0%, 100% {
        transform: translateZ(0) translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateZ(0) translateY(-5px) translateX(3px) scale(1.01);
    }
    50% {
        transform: translateZ(0) translateY(-8px) translateX(-2px) scale(1.02);
    }
    75% {
        transform: translateZ(0) translateY(-3px) translateX(-5px) scale(1.01);
    }
}

@keyframes sciFiRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes dataStream {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateZ(0) translateY(0px);
    }
    50% {
        transform: translateZ(0) translateY(-8px);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.landing-header {
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.api-button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.api-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.auth-button {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.auth-button.logged-in {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.auth-button.logged-in:hover {
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Authentication Modal Styles */
.auth-modal-content {
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 24px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.4s ease;
    margin: 20px;
}

.auth-form {
    text-align: center;
}

.auth-form h2 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.auth-form p {
    color: #d1d5db;
    margin-bottom: 32px;
    font-size: 1rem;
}

.auth-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-form .form-group label {
    display: block;
    color: #e5e7eb;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.auth-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.auth-form .form-group small {
    color: #9ca3af;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

.auth-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 24px 0;
    position: relative;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-submit-btn .btn-loading {
    display: none;
}

.auth-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.auth-links a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #ef4444;
}

.auth-links span {
    color: #6b7280;
}

.auth-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 500;
    display: none;
}

.auth-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.auth-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Usage Limit Warning Styles */
.limit-warning-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.limit-benefits {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    text-align: left;
}

.benefit-item {
    color: #10b981;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Mobile Responsive Styles for Auth Modal */
@media (max-width: 768px) {
    .auth-modal-content {
        max-width: 95%;
        margin: 15px;
        max-height: 85vh;
        overflow-y: auto;
    }

    .auth-form h2 {
        font-size: 1.5rem;
    }

    .auth-form p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .auth-form .form-group input {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .auth-submit-btn {
        padding: 16px 24px;
        font-size: 1.1rem;
    }

    .limit-benefits {
        padding: 16px;
        margin: 20px 0;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    .auth-links {
        flex-direction: column;
        gap: 8px;
    }

    .auth-links span {
        display: none;
    }
}

@media (max-width: 480px) {
    .auth-modal-content {
        max-width: 100%;
        margin: 10px;
        max-height: 90vh;
        border-radius: 16px;
    }

    .popup-header {
        padding: 16px 20px;
    }

    .popup-body {
        padding: 20px;
    }

    .auth-form h2 {
        font-size: 1.3rem;
    }

    .limit-warning-icon {
        font-size: 2.5rem;
    }
}

/* API Modal Styles - Full Page */
.api-modal-content {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    margin: 0;
    border-radius: 0;
    overflow-y: auto;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
    color: white;
}

.api-info {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.api-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.api-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.api-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.api-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.api-section h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.api-section h4 {
    color: #f1f5f9;
    font-size: 1.3rem;
    margin: 24px 0 16px 0;
}

.api-endpoints {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.endpoint-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.endpoint-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.endpoint-method {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.endpoint-path {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.endpoint-description {
    color: #e2e8f0;
    font-size: 0.95rem;
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    font-family: 'Courier New', monospace;
    color: #f1f5f9;
    overflow-x: auto;
}

.api-key-display {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    color: #fbbf24;
    font-weight: 600;
}

.api-contact {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-top: 32px;
}

.api-contact h4 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.api-contact a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.api-contact a:hover {
    text-decoration: underline;
    color: #93c5fd;
}

.api-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.api-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.api-feature h5 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.api-feature p {
    color: #e2e8f0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .api-info {
        padding: 20px;
    }

    .api-header h2 {
        font-size: 2rem;
    }

    .api-section {
        padding: 20px;
    }
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.landing-logo-icon {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.landing-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
    transform: translateZ(0);
    will-change: transform;
}

.landing-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #ffffff, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: #e5e5e5;
    margin-bottom: 50px;
    max-width: 700px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    width: 100%;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 24px;
    padding: 40px 35px;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    will-change: transform;
    /* animation: cardFloat 6s ease-in-out infinite; */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

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

.feature-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(26, 26, 26, 0.98));
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow:
        0 32px 64px rgba(220, 38, 38, 0.25),
        0 16px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: none;
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 16px rgba(220, 38, 38, 0.4));
}

.feature-icon svg {
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 24px rgba(220, 38, 38, 0.6));
}

.feature-card:hover .feature-icon svg {
    filter: brightness(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}




.api-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.api-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.api-feature h5 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.api-feature p {
    color: #e2e8f0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .api-info {
        padding: 20px;
    }

    .api-header h2 {
        font-size: 2rem;
    }

    .api-section {
        padding: 20px;
    }
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.landing-logo-icon {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.landing-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
    transform: translateZ(0);
    will-change: transform;
}

.landing-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #ffffff, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: #e5e5e5;
    margin-bottom: 50px;
    max-width: 700px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    width: 100%;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 24px;
    padding: 40px 35px;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    will-change: transform;
    /* animation: cardFloat 6s ease-in-out infinite; */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

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

.feature-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(26, 26, 26, 0.98));
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow:
        0 32px 64px rgba(220, 38, 38, 0.25),
        0 16px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: none;
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 16px rgba(220, 38, 38, 0.4));
}

.feature-icon svg {
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 24px rgba(220, 38, 38, 0.6));
}

.feature-card:hover .feature-icon svg {
    filter: brightness(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Info Sections Styles */
.info-section {
    padding: 40px 20px;
    position: relative;
    z-index: 10;
    transform: translateZ(0);
    will-change: transform;
}

.info-section.alt {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(0, 0, 0, 0.1));
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.info-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #d1d5db;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.stat-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.3));
}

.stat-item h4 {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.stat-item p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1rem;
}

/* Market Section Styles */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.market-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.7));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.market-item:hover {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
}

.market-number {
    font-family: 'Google Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
}

.market-label {
    font-family: 'Google Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-item p {
    color: #d1d5db;
    line-height: 1.5;
    font-size: 0.95rem;
}

.market-advantages {
    margin-top: 80px;
    text-align: center;
}

.market-advantages h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(26, 26, 26, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.advantage-icon:hover {
    transform: scale(1.1);
    border-color: rgba(220, 38, 38, 0.4);
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.08) 50%, transparent 100%);
}

.advantage-item h4 {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.advantage-item p {
    color: #d1d5db;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* About Us Section Styles */
.contact-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.95));
    position: relative;
    z-index: 10;
    transform: translateZ(0);
    will-change: transform;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.contact-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #d1d5db;
    margin-bottom: 60px;
    line-height: 1.6;
}

.about-content {
    display: grid;
    gap: 40px;
    text-align: left;
}

.about-story, .about-team, .about-beta, .about-contact {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-story h3, .about-team h3, .about-beta h3, .about-contact h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story p, .about-team p, .about-beta p, .about-contact p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.team-list, .beta-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.team-list li, .beta-benefits li {
    color: #d1d5db;
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.beta-cta {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.beta-note {
    color: #fbbf24;
    font-weight: 600;
    margin-top: 12px;
    font-size: 0.95rem;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
}

.contact-email {
    display: inline-block;
    color: #60a5fa;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #93c5fd;
    transform: translateY(-2px);
}

.contact-note {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Google Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Google Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: rgba(220, 38, 38, 0.5);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner {
    width: 20px;
    height: 20px;
}

.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.feature-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.feature-description {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
    font-weight: 400;
}

.landing-actions {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-button {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Google Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.action-button::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;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: rgba(220, 38, 38, 0.5);
}

.action-button.primary {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.action-button.primary:hover {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Full Page Popup Styles - Sports Theme */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(239, 68, 68, 0.05) 0%, transparent 50%),
        rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.popup-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(220, 38, 38, 0.02) 90deg, transparent 180deg, rgba(239, 68, 68, 0.01) 270deg, transparent 360deg);
    animation: sciFiRotate 40s linear infinite;
    pointer-events: none;
}

.popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.popup-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.4s ease;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.popup-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-overlay.active .auth-modal-content {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
}

.popup-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Google Sans', sans-serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.popup-logo-icon {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.close-popup {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.close-popup:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.popup-body {
    padding: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Hide landing page when popup is active */
body.popup-active .landing-page {
    display: none;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    .landing-page::before {
        animation: backgroundPulse 12s ease-in-out infinite;
    }

    .landing-page::after {
        animation: sciFiRotate 60s linear infinite;
    }

    .feature-card {
        /* animation: cardFloat 8s ease-in-out infinite; */
    }

    .feature-card:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .data-particles {
        display: none !important;
    }

    .popup-overlay::before {
        animation: sciFiRotate 60s linear infinite;
    }
}

/* Mobile Responsive Styles for Landing Page */
@media (max-width: 768px) {
    .landing-header {
        padding: 20px 25px;
    }

    .landing-logo {
        font-size: 22px;
    }

    .landing-logo-icon {
        padding: 12px 18px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .landing-main {
        padding: 40px 20px;
    }

    .landing-title {
        margin-bottom: 20px;
    }

    .landing-subtitle {
        margin-bottom: 40px;
        font-size: 1.1rem;
        color: #e5e5e5;
    }

    .landing-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        max-width: 400px;
    }

    .feature-card {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .feature-icon {
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #ffffff;
    }

    .feature-description {
        font-size: 0.95rem;
        color: #d1d5db;
    }

    .landing-actions {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        max-width: 320px;
    }

    .action-button {
        width: 100%;
        padding: 18px 35px;
        font-size: 1.1rem;
        font-weight: 700;
    }

    /* Info sections mobile styles */
    .info-section {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .market-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .market-item {
        padding: 24px 20px;
    }

    .market-number {
        font-size: 2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-item {
        padding: 24px 20px;
    }

    /* About section mobile styles */
    .contact-section {
        padding: 30px 20px;
    }

    .about-story, .about-team, .about-beta, .about-contact {
        padding: 30px 20px;
    }

    .beta-cta {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .submit-btn {
        padding: 16px 32px;
        font-size: 1rem;
        min-width: 180px;
    }

    /* Footer mobile styles */
    .footer {
        padding: 60px 20px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .landing-header {
        padding: 15px 20px;
    }

    .landing-logo {
        font-size: 20px;
    }

    .landing-logo-icon {
        padding: 10px 16px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .landing-main {
        padding: 30px 15px;
    }

    .landing-features {
        max-width: 100%;
        gap: 18px;
        margin-top: 30px;
    }

    .feature-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .action-button {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .popup-header {
        padding: 12px 16px;
    }

    .popup-title {
        font-size: 18px;
    }

    .popup-logo-icon {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Small mobile info sections */
    .info-section {
        padding: 20px 15px;
    }

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

    .info-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .market-number {
        font-size: 1.8rem;
    }

    .market-label {
        font-size: 0.9rem;
    }

    .advantage-item {
        padding: 20px 16px;
    }

    /* Small mobile about section */
    .contact-section {
        padding: 20px 15px;
    }

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

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .about-story, .about-team, .about-beta, .about-contact {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .about-story h3, .about-team h3, .about-beta h3, .about-contact h3 {
        font-size: 1.5rem;
    }

    .beta-cta {
        padding: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-width: 160px;
    }

    /* Small mobile footer */
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-brand-name {
        font-size: 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .footer-section h4 {
        font-size: 15px;
    }

    .footer-section a {
        font-size: 13px;
    }

    .footer-copyright,
    .footer-legal a {
        font-size: 13px;
    }
}

.top-bar {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    border-bottom: 1px solid rgba(220, 38, 38, 0.25);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Google Sans', sans-serif;
    font-size: 22px;
    color: #5f6368;
    font-weight: 400;
}

.logo-icon {
    background: #1a73e8;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px;
}

.header-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 24px;
    padding: 32px 28px;
    margin-bottom: 24px;
    color: #ffffff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-card h1 {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-card p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 12px;
}

.recommendation-badges {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.rec-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.rec-badge.great-pick {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.rec-badge.good-pick {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.rec-badge.risky-pick {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.rec-badge.caution {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.rec-badge.avoid {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.rec-icon {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    letter-spacing: 0.5px;
}

.rec-badge.great-pick .rec-icon {
    background: #2e7d32;
    color: white;
}

.rec-badge.good-pick .rec-icon {
    background: #1976d2;
    color: white;
}

.rec-badge.risky-pick .rec-icon {
    background: #f57c00;
    color: white;
}

.rec-badge.caution .rec-icon {
    background: #ff9800;
    color: white;
}

.rec-badge.avoid .rec-icon {
    background: #d32f2f;
    color: white;
}

.controls-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 16px;
    padding: 20px 28px;
    margin-bottom: 24px;
    color: #ffffff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.controls-card select,
.controls-card input {
    padding: 10px 16px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s;
}

.controls-card select:hover,
.controls-card input:hover {
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.controls-card select:focus,
.controls-card input:focus {
    outline: none;
    border-color: rgba(220, 38, 38, 0.8);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.controls-card input {
    flex: 1;
    min-width: 250px;
}

.btn-primary {
    padding: 10px 24px;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Google Sans', sans-serif;
    transition: all 0.2s;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.btn-primary:hover {
    background: #1a73e8;
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
}

.btn-primary:active {
    background: #1765cc;
}

.stats-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
}

.progress-container {
    flex: 1;
    max-width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-left: 16px;
}

.progress-fill {
    height: 100%;
    background: #4285f4;
    transition: width 0.3s;
    border-radius: 2px;
}

.table-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 16px;
    color: #ffffff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.table-container {
    overflow-x: hidden;
    max-height: calc(100vh - 400px);
    overflow-y: auto;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.table-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

thead {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10;
}

th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 500;
    color: #d1d5db;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    cursor: pointer;
    user-select: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

th:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #ffffff;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.15s;
}

tbody tr:hover {
    background: rgba(220, 38, 38, 0.1);
}

td {
    padding: 12px 16px;
    color: #ffffff;
}

.team-cell {
    font-weight: 500;
    color: #ffffff;
}

.player-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #f1f3f4;
    border: 2px solid #f1f3f4;
}

.player-name {
    font-weight: 500;
    color: #ffffff;
}

.position-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.position-badge.qb { background: rgba(239, 68, 68, 0.2); color: #ef4444; border-color: rgba(239, 68, 68, 0.3); }
.position-badge.rb { background: rgba(34, 197, 94, 0.2); color: #22c55e; border-color: rgba(34, 197, 94, 0.3); }
.position-badge.wr { background: rgba(245, 158, 11, 0.2); color: #f59e0b; border-color: rgba(245, 158, 11, 0.3); }
.position-badge.te { background: rgba(168, 85, 247, 0.2); color: #a855f7; border-color: rgba(168, 85, 247, 0.3); }

.frailty-score {
    font-weight: 600;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 16px;
    display: inline-block;
    min-width: 48px;
    text-align: center;
}

.very-high-frailty {
    background: #d32f2f;
    color: white;
}

.high-frailty {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.medium-frailty {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.low-frailty {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.very-low-frailty {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.recommendation {
    font-weight: 600;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
}

.rec-great-pick {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.rec-good-pick {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.rec-risky-pick {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.rec-caution {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.rec-avoid {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.stat-value {
    font-weight: 500;
    color: #ffffff;
}

.stat-good {
    color: #137333;
}

.stat-average {
    color: #ea8600;
}

.stat-poor {
    color: #c5221f;
}

.loading-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.spinner {
    border: 3px solid #f1f3f4;
    border-top: 3px solid #4285f4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #d1d5db;
    font-size: 14px;
}

/* Full-page loading spinner overlay */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

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

.loading-spinner-container {
    text-align: center;
    color: #ffffff;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(220, 38, 38, 0.2);
    border-top: 4px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.loading-spinner-text {
    font-size: 18px;
    font-weight: 500;
    color: #f3f4f6;
    margin-top: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Checkbox styles for Remember Me */
.checkbox-group {
    margin: 16px 0 !important;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #d1d5db;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #4b5563;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.2s ease;
    background: transparent;
}

.checkbox-label:hover .checkmark {
    border-color: #dc2626;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #dc2626;
    border-color: #dc2626;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.error-card {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 16px 24px;
    margin: 20px;
    border-radius: 16px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(25px);
}

.sort-indicator {
    margin-left: 4px;
    font-size: 12px;
}

.live-feed-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    color: #22c55e;
    font-weight: 500;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #34a853;
    border-radius: 50%;
}

.player-count {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Game Picks Section Styles */
.game-picks-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 24px;
    padding: 32px 28px;
    margin-bottom: 24px;
    color: #ffffff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-picks-header {
    margin-bottom: 20px;
}

.game-picks-header h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.game-picks-header p {
    color: #f3f4f6;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Betting Picks Section Styles */
.betting-picks-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 24px;
    padding: 32px 28px;
    margin-bottom: 24px;
    color: #ffffff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-header {
    margin-bottom: 24px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-header p {
    color: #f3f4f6;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.status-text {
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.picks-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.picks-status {
    font-size: 14px;
    color: #f3f4f6;
    font-weight: 500;
}

.strategy-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8eaed;
}

.strategy-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #5f6368;
}

.strategy-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.strategy-item.low-risk .strategy-indicator {
    background: #34a853;
}

.strategy-item.medium-risk .strategy-indicator {
    background: #fbbc04;
}

.strategy-item.high-risk .strategy-indicator {
    background: #ea4335;
}

.strategy-text strong {
    color: #ffffff;
}

@media (max-width: 768px) {
    .strategy-info {
        flex-direction: column;
        gap: 8px;
    }
}

/* Games Info Section */
.games-info-section {
    margin: 16px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.games-info-section h4 {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.games-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.game-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.15);
    font-size: 12px;
    transition: all 0.3s ease;
}

.game-info-item:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-1px);
}

.game-info-item strong {
    color: #ffffff;
}

.game-info-item span {
    color: #d1d5db;
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 32px;
    padding: 0 16px;
}

.pick-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 24px;
    padding: 32px 28px;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    will-change: transform;
}

.pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pick-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

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

.pick-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.pick-card:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(26, 26, 26, 0.98));
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow:
        0 32px 64px rgba(220, 38, 38, 0.25),
        0 16px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.pick-game-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pick-rank {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-radius: 12px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    white-space: nowrap;
    min-width: fit-content;
}

.pick-confidence {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confidence-high {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.confidence-medium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.confidence-low {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.pick-game {
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.pick-bet {
    font-size: 15px;
    color: #f9fafb;
    margin-bottom: 8px;
    line-height: 1.5;
}

.pick-odds {
    font-weight: 700;
    color: #ef4444;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pick-reasoning {
    font-size: 13px;
    color: #f3f4f6;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    line-height: 1.6;
}

/* Enhanced Betting Action Styles */
.bet-action {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.bet-action::before {
    content: '🎯';
    position: absolute;
    top: -8px;
    left: 16px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.action-label {
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.action-text {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.action-line {
    font-size: 12px;
    color: #f3f4f6;
    font-weight: 500;
}

.bet-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bet-summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.summary-label {
    font-size: 10px;
    color: #f3f4f6;
    font-weight: 500;
    margin-bottom: 2px;
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.action-bet {
    background: #34a853;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.frailty-indicator {
    font-size: 12px;
    color: #f3f4f6;
    text-align: center;
}

.risk-explanation {
    font-weight: 500;
    color: #1a73e8;
}

/* Betting Guide Styles */
.betting-guide {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    border-left: 4px solid #1a73e8;
}

.guide-header h3 {
    color: #1a73e8;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.guide-steps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.step-number {
    background: #1a73e8;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content strong {
    color: #ffffff;
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.step-content p {
    color: #d1d5db;
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
}

/* Bet Action Section Styles */
.bet-action-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-action {
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
}

.action-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.action-button.over {
    background: linear-gradient(135deg, #34a853, #2d8f47);
}

.action-button.under {
    background: linear-gradient(135deg, #ea4335, #d33b2c);
}

/* Ensure action button links look and behave like buttons */
a.action-button {
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

a.action-button:hover {
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

a.action-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.action-subtitle {
    font-size: 12px;
    color: #f3f4f6;
    font-weight: 500;
}

.loading-picks {
    text-align: center;
    padding: 40px 20px;
    color: #f3f4f6;
}

/* Enhanced Pick Card Styles */
.pick-game-info {
    margin-bottom: 12px;
}

.pick-game-details {
    font-size: 12px;
    color: #f3f4f6;
    margin-bottom: 16px;
    line-height: 1.4;
}

.pick-line {
    font-size: 12px;
    color: #1a73e8;
    font-weight: 600;
}

.odds-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.frailty-row {
    font-size: 12px;
    color: #f3f4f6;
}

.ev-positive {
    color: #137333;
}

.betting-links {
    margin-top: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.links-label {
    font-size: 13px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.links-label::before {
    content: '🎯';
    font-size: 14px;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 5;
}

.betting-link {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    color: white !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.betting-link:visited {
    color: white !important;
}

.betting-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0.9;
    color: white !important;
}

.betting-link:active {
    color: white !important;
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    .header-card, .controls-card, .game-picks-card, .table-card {
        margin-bottom: 12px;
        padding: 16px;
    }

    .recommendation-badges {
        flex-direction: column;
        gap: 8px;
    }

    .rec-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .controls-card > div {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .controls-card > div > div {
        width: 100%;
    }

    .controls-card select,
    .controls-card input {
        width: 100%;
        margin-bottom: 8px;
    }

    .picks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }

    .pick-card {
        padding: 20px;
    }

    .pick-rank {
        padding: 4px 8px;
        font-size: 12px;
    }

    .bet-action {
        padding: 12px;
    }

    .odds-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .links-container {
        justify-content: center;
    }

    .table-container {
        font-size: 12px;
    }

    .player-img {
        width: 28px;
        height: 28px;
    }

    .position-badge {
        font-size: 10px;
        padding: 2px 6px;
    }

    .recommendation {
        font-size: 11px;
        padding: 4px 8px;
    }

    .frailty-score {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 8px 12px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        padding: 6px 12px;
        font-size: 12px;
    }

    .header-card h1 {
        font-size: 22px;
    }

    .game-picks-header h2 {
        font-size: 20px;
    }

    .table-container {
        max-height: calc(100vh - 500px);
    }
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #e8eaed;
    margin-top: 0;
    padding: 80px 24px 32px;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.footer-brand-name {
    font-family: 'Google Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: #9aa0a6;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.social-link svg {
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.social-link:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.footer-section h4 {
    color: white;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9aa0a6;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #9aa0a6;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #9aa0a6;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #dc2626;
}

/* Enhanced Prediction Tracker Styles */
.prediction-tracker {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    padding: 24px;
    color: #333333;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.prediction-tracker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.tracker-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.tracker-header h3 {
    margin: 0 0 8px 0;
    color: #333333;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: none;
}

.tracker-subtitle {
    margin: 0;
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.tracker-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.tracker-stats .stat-item {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.tracker-stats .stat-item:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.tracker-stats .stat-label {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tracker-stats .stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc2626;
    text-shadow: none;
}

.tracker-stats .win-stat {
    color: #16a34a !important;
}

.tracker-stats .loss-stat {
    color: #dc2626 !important;
}

.prediction-results {
    max-height: 500px;
    overflow-y: auto;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
}

.prediction-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.prediction-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.prediction-game {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.prediction-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.prediction-details {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.prediction-bet {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.bet-amount {
    font-weight: 600;
    color: #fbbf24;
}

.prediction-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: center;
}

.status-win {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.status-loss {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.status-pending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}



.loading-text {
    text-align: center;
    color: #666666;
    font-style: italic;
    padding: 20px;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.results-table th,
.results-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.results-table th {
    background: #1a1a2e;
    font-weight: 600;
    position: sticky;
    top: 0;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Enhanced table styling */
.enhanced-table {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333333; /* Ensure dark text on light background */
}

.enhanced-table tbody tr {
    transition: all 0.2s ease;
    color: #333333; /* Dark text for all table rows */
}

.enhanced-table tbody tr:hover {
    background: rgba(25, 118, 210, 0.05);
    transform: translateY(-1px);
}

.enhanced-table td {
    color: #333333 !important; /* Force dark text in all cells */
}

.enhanced-table .result-row.win {
    border-left: 4px solid #4caf50;
}

.enhanced-table .result-row.loss {
    border-left: 4px solid #f44336;
}

.result-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.result-badge.win {
    background: #e8f5e8;
    color: #2e7d32;
}

.result-badge.loss {
    background: #ffebee;
    color: #c62828;
}

.profit-cell.profit {
    color: #2e7d32;
    font-weight: 600;
}

.profit-cell.loss {
    color: #c62828;
    font-weight: 600;
}



.upcoming-bet {
    background: #f0f8ff !important;
    border-left: 4px solid #3498db;
}

.upcoming-bet:hover {
    background: #e6f3ff !important;
}

.result-active {
    color: #3498db;
    font-weight: 600;
}

.result-win {
    color: #4caf50;
    font-weight: 600;
}

.result-loss {
    color: #f44336;
    font-weight: 600;
}

.result-pending {
    color: #ff9800;
    font-weight: 600;
}

.confidence-high {
    color: #4caf50;
    font-weight: 600;
}

.confidence-medium {
    color: #ff9800;
    font-weight: 600;
}

.confidence-low {
    color: #f44336;
    font-weight: 600;
}

.bet-description {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tracker-header {
        flex-direction: column;
        align-items: stretch;
    }

    .tracker-stats {
        justify-content: space-around;
    }

    .results-table {
        font-size: 12px;
    }

    .results-table th,
    .results-table td {
        padding: 6px 8px;
    }
}

/* Sci-Fi Historical Analysis Styles */
.historical-analysis-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 24px;
    padding: 40px 35px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.historical-analysis-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(220, 38, 38, 0.02) 90deg, transparent 180deg, rgba(239, 68, 68, 0.01) 270deg, transparent 360deg);
    animation: sciFiRotate 40s linear infinite;
    pointer-events: none;
}

.analysis-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.analysis-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.analysis-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.analysis-guide {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
}

.analysis-guide h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.guide-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Sci-Fi Spreadsheet Styles */
.spreadsheet-summary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.7));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.6), transparent);
}

.stat-item.wins::before {
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6), transparent);
}

.stat-item.losses::before {
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), transparent);
}

.stat-item.win-rate::before {
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.6), transparent);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sci-Fi Results Table */
.results-section {
    position: relative;
    z-index: 2;
}

.section-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
}

.spreadsheet-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.spreadsheet-table th {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1));
    color: #ffffff;
    font-weight: 700;
    padding: 15px 12px;
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
}

.spreadsheet-table td {
    padding: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.spreadsheet-table tr:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: scale(1.01);
}

.row-number {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1));
    color: #ffffff !important;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
}

.won-bet {
    border-left: 4px solid #22c55e;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.1), transparent);
}

.lost-bet {
    border-left: 4px solid #ef4444;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1), transparent);
}

.pending-bet {
    border-left: 4px solid #fbbf24;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1), transparent);
}

.result-won {
    color: #22c55e;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.result-lost {
    color: #ef4444;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.result-pending {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
}

.confidence-high {
    color: #22c55e;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(34, 197, 94, 0.3);
}

.confidence-medium {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(251, 191, 36, 0.3);
}

.confidence-low {
    color: #ef4444;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.3);
}

.pnl-cell.profit {
    color: #22c55e;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.pnl-cell.loss {
    color: #ef4444;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.pnl-cell.neutral {
    color: rgba(255, 255, 255, 0.6);
}