:root {
    --primary-orange: #f39c12;
    --light-orange: #fff4e6;
    --deep-charcoal: #2c3e50;
    --accent-gold: #ffb347;
    --text-main: #4a4a4a;
    --bg-gradient: linear-gradient(180deg, #fff9f0 0%, #ffffff 100%);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: transparent;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--deep-charcoal);
}

.nav-links {
    color: var(--deep-charcoal);
    font-weight: 600;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 10%;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 480px; /* Large Icon as requested */
    border-radius: 60px;
    box-shadow: 0 25px 50px rgba(243, 156, 18, 0.25);
    border: 8px solid white;
}

.ai-pill {
    display: inline-block;
    background: var(--light-orange);
    color: #d35400;
    padding: 6px 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin: 0;
    color: var(--deep-charcoal);
    line-height: 1.1;
}

.variant-list {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0 25px 0;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 500px;
}

.punchline {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Buttons and Tags */
.btn-google-play {
    background: #e67e22;
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
}

.btn-google-play:hover {
    transform: translateY(-2px);
    background: #d35400;
}

.btn-secondary {
    background: white;
    color: var(--deep-charcoal);
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.no-ads-tag {
    display: block;
    margin-top: 15px;
    color: #27ae60;
    font-weight: 600;
}

/* Feature Sections */
.tavli-card {
    background: var(--deep-charcoal);
    color: white;
    margin: 4rem 10%;
    padding: 50px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.tavli-text {
    flex: 2;
}

.tavli-text h2 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 10% 4rem 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-bottom: 5px solid var(--accent-gold);
}

.feature-item h3 {
    margin-top: 0;
    color: var(--deep-charcoal);
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    background: #fef5e7;
    color: #555;
}

.footer-punch {
    font-weight: 800;
    color: var(--deep-charcoal);
    margin-bottom: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .hero { 
        flex-direction: column-reverse; 
        text-align: center; 
        padding-top: 2rem;
    }
    .hero-content { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }
    .tavli-card { 
        flex-direction: column; 
        text-align: center; 
    }
    h1 { font-size: 2.8rem; }
}