:root {
    --primary-color: #2ecc71; /* Green accent */
    --primary-hover: #27ae60;
    --bg-dark: #0a0e14; /* Deep dark blue/black */
    --bg-card: #151a21; /* Slightly lighter for cards */
    --bg-light: #ffffff;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark: #333333;
    --gradient-bronze: linear-gradient(135deg, #cd7f32, #e6ac78);
    --gradient-silver: linear-gradient(135deg, #c0c0c0, #e6e6e6);
    --gradient-gold: linear-gradient(135deg, #ffd700, #ffec8b);
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
}

.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray); }
.mt-4 { margin-top: 2rem; }
.mt-high { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-white);
}

.btn-outline-light:hover {
    border-color: var(--text-white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background-color: var(--bg-dark);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--text-white);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-white);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/LddluNomdy.jpg') no-repeat center center/cover;
    margin-top: 60px; /* offset for fixed navbar */
    color: var(--text-white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 14, 20, 0.4), rgba(10, 14, 20, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.football-icon {
    font-size: 3rem;
    color: #e6b15c; /* Gold-ish color like the screenshots */
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 800;
}

/* Features Section */
.section {
    padding: 80px 0;
}

.features {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 50px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-label {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.feature-text p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Mockups */
.mockup-card {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.squad-mockup {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pitch {
    position: relative;
    width: 80%;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
}

.player {
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    color: #333;
}

.p1 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.p2 { bottom: 60px; left: 30%; }
.p3 { bottom: 60px; right: 30%; }
.p4 { top: 60px; left: 50%; transform: translateX(-50%); }
.p5 { top: 20px; left: 50%; transform: translateX(-50%); }

.player-stats-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-info { display: flex; flex-direction: column; }
.p-name { font-size: 0.8rem; font-weight: bold; }
.p-points { font-size: 1rem; color: var(--primary-color); font-weight: bold; }

.predict-mockup {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.match-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.prediction-options {
    display: flex;
    justify-content: space-between;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 5px;
}

.option {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
}

.option.selected {
    background: var(--primary-color);
    color: white;
}

.leaderboard-mockup, .stats-mockup {
    background: #fff5f5; /* Light reddish/pinkish background from screenshots */
}

.rank-row {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rank-row.top {
    transform: scale(1.05);
    border: 1px solid #ffcccc;
}

.rank { font-weight: bold; color: #e74c3c; width: 30px; }
.points { font-weight: bold; }

.stat-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.stat-box h4 { font-size: 0.8rem; color: #888; margin-bottom: 5px; }
.stat-value { font-size: 1.5rem; font-weight: bold; color: #e74c3c; }
.stat-player { font-size: 0.9rem; color: #333; }


/* Prizes Section */
.prizes {
    background-color: #1a0505; /* Dark reddish/brown background */
    color: white;
}

.prizes .section-title {
    color: white;
}

.prizes .section-subtitle {
    color: var(--text-gray);
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.prize-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s;
}

.prize-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
}

.trophy-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.trophy-icon.gold { color: #ffd700; text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
.trophy-icon.silver { color: #c0c0c0; text-shadow: 0 0 20px rgba(192, 192, 192, 0.5); }
.trophy-icon.bronze { color: #cd7f32; text-shadow: 0 0 20px rgba(205, 127, 50, 0.5); }

.prize-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.prize-highlight {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 800;
    margin-bottom: 20px;
}

.prize-list {
    text-align: left;
    font-size: 0.9rem;
    color: #ccc;
    list-style: none;
    padding-left: 20px;
}

.prize-list li {
    margin-bottom: 8px;
}

/* News Section */
.news {
    background-color: #1a0505;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 100px;
}

.news .section-title {
    color: white;
}

.news .section-subtitle {
    color: var(--text-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background-color: #2a0a0a;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 180px;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

.img-1 { background-image: url('https://images.unsplash.com/photo-1517927033932-b3d18e61fb3a?q=80&w=2000&auto=format&fit=crop'); }
.img-2 { background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?q=80&w=2000&auto=format&fit=crop'); }
.img-3 { background-image: url('https://images.unsplash.com/photo-1489944440615-453fc2b6a9a9?q=80&w=2000&auto=format&fit=crop'); }

.news-content {
    padding: 20px;
    color: white;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    font-size: 0.8rem;
    color: #888;
}

/* FAQ Section */
.faq-section {
    background-color: #fcfcfc;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--bg-dark);
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-body p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: url('images/uttgqshnumtecsfkumzp.avif') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 14, 20, 0.6), rgba(10, 14, 20, 0.9));
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #ddd;
}

.cta-icon {
    color: #e74c3c; /* Reddish trophy icon color */
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: #0a0e14;
    padding: 60px 0 30px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
}

.footer-links a:hover {
    color: white;
}

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

.footer-social a {
    color: white;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title, .cta-title { font-size: 2.5rem; }
    .feature-row { flex-direction: column; gap: 40px; }
    .feature-row.reverse { flex-direction: column; }
    .prizes-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .auth-buttons { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title, .cta-title { font-size: 2rem; }
    .prizes-grid, .news-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
}
