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

:root {
    --neon-green: #00FF41;
    --light-gray: #F1F5F9;
    --gold-start: #F59E0B;
    --gold-end: #D97706;
    --pink: #FF1493;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar {
    background: var(--light-gray);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.brand-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 255, 132, 0.3));
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #000 0%, #00FF84 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-green);
}

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

.login-btn {
    background: var(--neon-green);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 65, 0.4);
}

.hero-section {
    min-height: 60vh;
    background: url('/static/images/stadium.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 26, 0.7), rgba(10, 10, 26, 0.9));
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--neon-green);
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #ccc;
}

.predictions-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prediction-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.prediction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 255, 65, 0.2);
}

.card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.eye-icon {
    animation: blink 3s infinite;
}

@keyframes blink {
    0%, 48%, 52%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
}

.eye-icon.high-odds .dollar-sign {
    animation: orbit 2s infinite, flash 1s infinite;
}

@keyframes orbit {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(5px, -5px);
    }
    50% {
        transform: translate(0, -10px);
    }
    75% {
        transform: translate(-5px, -5px);
    }
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.match-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.prediction-text {
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.odds-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
}

.odds-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

.pricing-section {
    background: url('/static/images/audience-bg-bold.webp') center center / cover no-repeat fixed;
    color: #fff;
    padding: 4rem 2rem;
    min-height: 100vh;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #ccc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 255, 132, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 255, 132, 0.3);
    border-color: rgba(0, 255, 132, 0.4);
}

.pricing-card.featured {
    background: rgba(0, 255, 132, 0.15);
    border-color: var(--neon-green);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 255, 132, 0.4);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--neon-green);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.checkmark {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--neon-green);
    color: #000;
    border: 2px solid var(--neon-green);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 132, 0.5);
    background: #00FF41;
}

.featured-btn {
    background: var(--neon-green);
    color: #000;
}

.faq-section {
    max-width: 800px;
    margin: 4rem auto;
}

.faq-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(0, 255, 132, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
}

.faq-question:hover {
    background: rgba(0, 255, 132, 0.1);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--neon-green);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ccc;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 132, 0.2);
    border-radius: 20px;
}

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

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--neon-green);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.4);
}

.split-login-container {
    display: flex;
    min-height: calc(100vh - 60px);
    background: #f5f5f5;
}

.login-left-panel {
    flex: 1;
    background: linear-gradient(135deg, #00D9A5 0%, var(--neon-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3rem;
}

.login-left-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 400px;
}

.login-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.login-welcome-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.login-welcome-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.login-decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.login-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.login-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    background: rgba(255, 255, 255, 0.05);
}

.login-right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #0a0a0a;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.login-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00D9A5;
    margin-bottom: 2rem;
    text-align: center;
}

.login-error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modern-login-form {
    margin-top: 2rem;
}

.modern-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.modern-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #333;
    border-radius: 50px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #fff;
    transition: all 0.3s ease;
}

.modern-input:focus {
    outline: none;
    border-color: var(--neon-green);
    background: #222;
    box-shadow: 0 0 0 3px rgba(0, 217, 165, 0.1);
}

.modern-input::placeholder {
    color: #666;
}

.modern-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00D9A5 0%, var(--neon-green) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 217, 165, 0.3);
}

.login-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    color: #999;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-green);
}

.submit-btn,
.save-btn {
    width: 100%;
    padding: 1rem;
    background: var(--neon-green);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover,
.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 65, 0.4);
}

.admin-section {
    background: #0a0a0a;
    min-height: 80vh;
    padding: 4rem 2rem;
}

.admin-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--neon-green);
}

.admin-form-container,
.admin-table-container {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-form-container h2,
.admin-table-container h2 {
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.admin-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
}

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

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table th {
    color: var(--neon-green);
    font-weight: 600;
}

.actions-cell {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.edit-btn,
.delete-btn,
.save-edit-btn,
.cancel-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.edit-btn {
    background: #3b82f6;
    color: #fff;
}

.save-edit-btn {
    background: var(--neon-green);
    color: #000;
}

.cancel-btn {
    background: #6b7280;
    color: #fff;
}

.delete-btn {
    background: #ef4444;
    color: #fff;
}

.edit-btn:hover,
.delete-btn:hover,
.save-edit-btn:hover,
.cancel-btn:hover {
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    padding: 3rem 2rem 1rem;
    color: #fff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-green);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 40px;
    }

    .predictions-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .split-login-container {
        flex-direction: column;
    }

    .login-left-panel {
        min-height: 40vh;
        padding: 2rem;
    }

    .login-welcome-title {
        font-size: 2rem;
    }

    .login-welcome-text {
        font-size: 1rem;
    }

    .login-right-panel {
        padding: 2rem;
    }

    .login-form-title {
        font-size: 2rem;
    }
}
