/* Custom Reset & Variable Layouts */
:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #151c2c;
    --accent-color: #00ff66;
    --accent-hover: #00cc52;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: #242f47;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.margin-y { margin: 2.5rem 0; }

/* Sticky Top Bar & Header */
.sticky-top-bar {
    background: linear-gradient(90deg, #02a343, #00ff66);
    color: #000;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.btn-sm-download {
    background-color: #000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.2s;
}

.main-header {
    background-color: rgba(11, 15, 25, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 37px;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span { color: var(--accent-color); }

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-color);
}

.nav-download-btn {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color) !important;
    padding: 6px 16px;
    border-radius: 30px;
}

.nav-download-btn:hover {
    background-color: var(--accent-color);
    color: #000 !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 102, 0.05), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    background-color: rgba(0, 255, 102, 0.1);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-main-download {
    background-color: var(--accent-color);
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 255, 102, 0.3);
    transition: transform 0.2s, background 0.2s;
}

.btn-main-download:hover {
    transform: translateY(-2px);
    background-color: var(--accent-hover);
}

.btn-main-download span {
    font-size: 0.8rem;
    display: block;
    opacity: 0.8;
}

.hero-subtext {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* App Mockup Dynamic Component */
.mockup-container {
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 280px;
    height: 540px;
    border: 12px solid #242f47;
    border-radius: 36px;
    background-color: #000;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.mockup-screen {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23151c2c"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23242f47" stroke-width="2"/></svg>');
}

.live-tag {
    background-color: #ef4444;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
    position: absolute;
    top: 20px;
    left: 20px;
}

.mockup-match {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
}

/* Match Dashboard Style Cards */
.section-title {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.match-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.sport-tag {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.sport-tag.cricket { background-color: #3b82f6; }
.sport-tag.football { background-color: #a855f7; }

.live-indicator {
    color: #ef4444;
    font-weight: 700;
}

.live-indicator .dot {
    height: 8px;
    width: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.match-teams {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.match-teams .vs {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 5px 0;
}

.match-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-card-stream {
    background-color: rgba(0, 255, 102, 0.1);
    color: var(--accent-color);
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-card-stream:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Monetization Ad Units Placeholders */
.adsense-placeholder {
    background-color: #111827;
    border: 1px dashed #374151;
    color: #4b5563;
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sports News Architecture */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.view-all-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.news-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
}

.news-img-holder {
    width: 35%;
    background-color: #1e293b;
    background-image: linear-gradient(45deg, #1e293b, #0f172a);
}

.news-content {
    padding: 20px;
    width: 65%;
}

.news-cat {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.news-content h3 a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.3;
}

.news-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Expandable Schema Accordions */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 18px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}

/* Newsletter System */
.newsletter-section {
    background-color: var(--bg-secondary);
    padding: 60px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.newsletter-form {
    margin-top: 25px;
    display: inline-flex;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 6px 0 0 6px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: #fff;
    outline: none;
}

.newsletter-form button {
    background-color: var(--accent-color);
    border: none;
    padding: 0 24px;
    font-weight: 700;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* Footer Section */
.main-footer {
    background-color: #070a10;
    padding: 50px 0 20px 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h4 { margin-bottom: 15px; font-size: 1.1rem; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--text-muted); text-decoration: none; }
.footer-grid ul li a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating High-Conversion Layer Button */
.floating-apk-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--accent-color);
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.4);
    z-index: 1001;
    transition: 0.3s;
}

.floating-apk-btn:hover { transform: scale(1.05); }

/* Mobile Optimization Overrides */
@media(max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-graphic { order: -1; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--bg-secondary); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border-color); }
    .nav-menu.active { display: flex; }
    .hamburger { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card { flex-direction: column; }
    .news-img-holder { width: 100%; height: 150px; }
    .news-content { width: 100%; }
}