@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;900&family=Plus+Jakarta+Sans:wght@300;400;500;700&display=swap');

:root {
    --primary: #1B5E20;
    --primary-light: #4CAF50;
    --primary-glow: #76FF03;
    --accent: #76FF03;
    --bg: #030a04;
    /* Deep jungle/football pitch base */
    --surface: #0a140b;
    --surface-light: #162517;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --border-radius: 32px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.logo span {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Background Effects */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(at 0% 0%, #0d2a10 0, transparent 50%),
        radial-gradient(at 100% 100%, #1a4a1d 0, transparent 50%),
        radial-gradient(at 50% 50%, #051406 0, transparent 100%);
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 20, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
}

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

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

.logo img {
    height: 48px;
    /* filter: drop-shadow(0 0 15px var(--primary-glow)); */
}

.logo span {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav a:hover {
    color: var(--text);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-nav {
    background: white;
    color: black;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-nav:hover {
    transform: scale(1.05);
    background: var(--accent);
    color: black;
}

/* Hero Section */
.hero {
    padding: 15rem 0 10rem;
    position: relative;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-tag {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 6.5rem;
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 2rem;
    max-width: 1000px;
}

.hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px white;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-dim);
    max-width: 700px;
    margin-bottom: 4rem;
}

.hero-btns {
    display: flex;
    gap: 2rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.download-link.apk {
    background: var(--primary);
    border: 1px solid var(--primary-light);
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.4);
}

.download-link.apk:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(27, 94, 32, 0.6);
    background: var(--primary-light);
}

.download-link.apk .icon-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 12px;
}

.download-link.ios {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .download-link {
        width: 100%;
        justify-content: center;
    }
}

.download-link .label {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-link .label .top {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
}

.download-link .label .bottom {
    font-size: 1.2rem;
}

/* Bento Features */
.features {
    padding: 10rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 2rem;
}

.bento-item {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    background: var(--surface-light);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item i {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    color: var(--accent);
    opacity: 0.2;
    transition: var(--transition);
}

.bento-item:hover i {
    opacity: 1;
    transform: scale(1.1) rotate(-10deg);
}

.bento-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.bento-item p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.bento-item.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #051406 100%);
    border: 1px solid rgba(118, 255, 3, 0.2);
}

.bento-item.featured h3 {
    color: var(--accent);
}

/* Mockup Animation */
.mockup-reveal {
    margin-top: -5rem;
    opacity: 0;
    transform: translateY(100px);
}

.mockup-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.phone {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 50px;
    border: 12px solid #1a1a1a;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 100px 200px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.phone::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #000 100%);
}

.phone-screen img {
    width: 150px;
    /* filter: drop-shadow(0 0 30px var(--accent)); */
    animation: pulse 4s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Footer Section */
.footer {
    padding: 8rem 0;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.footer-left h4 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
}

.footer-right {
    text-align: right;
    color: var(--text-dim);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(300px, auto);
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-item.large {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 10rem 0 5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .logo span {
        font-size: 1.25rem;
    }

    .logo img {
        height: 36px;
    }

    .bento-item {
        padding: 2rem;
    }

    .bento-item h3 {
        font-size: 1.5rem;
    }
}