:root {
    --primary: #22c55e;
    --primary-glow: rgba(34, 197, 94, 0.5);
    --secondary: #f97316;
    --background: #0a0a0b;
    --card-bg: #161618;
    --border: #27272a;
    --text: #ffffff;
    --text-muted: #a1a1aa;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.1), transparent);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: 20px;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s;
}

.btn-store:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.btn-store .icon {
    font-size: 1.5rem;
}

.btn-store .text {
    font-size: 0.75rem;
    line-height: 1.2;
}

.btn-store strong {
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    height: 400px;
}

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

.logo img {
    height: 60px;          /* adjust if needed */
    width: auto;
    object-fit: contain;
}


.hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mockup-3d {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ball {
    width: 40px;
    height: 40px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    position: absolute;
    top: 30%;
    left: 40%;
}

.bat {
    width: 20px;
    height: 150px;
    background: #8b4513;
    border-radius: 4px;
    transform: rotate(45deg);
}

.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
}

.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero p { margin: 0 auto 40px; }
    .download-buttons { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}