/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

/* CSS Custom Properties - Design System */
:root {
    /* Primary Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-accent: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    /* Background Gradients */
    --gradient-bg-light: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --gradient-bg-dark: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Card Gradients */
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    --gradient-card-hover: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    
    /* Text Colors */
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-accent: #007aff;
    --text-light: #ffffff;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Typography Scale */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --text-hero: clamp(3rem, 8vw, 5rem);
    --text-h1: clamp(2.5rem, 6vw, 3.5rem);
    --text-h2: clamp(2rem, 5vw, 2.5rem);
    --text-h3: clamp(1.5rem, 4vw, 2rem);
    --text-body-large: 1.25rem;
    --text-body: 1rem;
    --text-small: 0.875rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(31, 38, 135, 0.1);
    --shadow-md: 0 8px 32px rgba(31, 38, 135, 0.15);
    --shadow-lg: 0 20px 40px rgba(31, 38, 135, 0.2);
    --shadow-xl: 0 25px 50px rgba(31, 38, 135, 0.25);
}

/* Global Styles */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-bg-light);
    overflow-x: hidden;
}

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

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

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--text-h1);
    font-weight: 800;
}

h2 {
    font-size: var(--text-h2);
}

h3 {
    font-size: var(--text-h3);
}

p {
    margin-bottom: 1rem;
    font-size: var(--text-body);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: var(--text-body-large);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--text-body-large);
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Card System */
.card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-card-hover);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .nav-icon {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: var(--text-hero);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-body-large);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: var(--text-small);
}

.rating {
    color: #ffa500;
    font-weight: 600;
}

/* App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.phone-frame {
    width: 400px;
    height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screen-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screenshot {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.app-screenshot.active {
    opacity: 1;
}

.app-screenshot:error {
    display: none;
}

.fallback-screen {
    background: linear-gradient(145deg, #1f1f1f, #2d2d2d);
    border-radius: 40px;
    height: 90%;
    width: 90%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    box-shadow: var(--shadow-xl);
}

.fallback-screen::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #444;
    border-radius: 2px;
}

.app-screen {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 40px;
    height: calc(100% - 50px);
    width: calc(100% - 50px);
    margin: 25px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.streak {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.goal-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.goal-card h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-success);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.daily-tasks {
    flex: 1;
}

.task {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.task.completed {
    background: rgba(67, 233, 123, 0.1);
    color: #059669;
}

.task.current {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .phone-frame {
        width: 320px;
        height: 640px;
        padding: 15px;
    }
    
    .app-screen {
        padding: 20px 15px;
    }
    
    .fallback-screen {
        padding: 20px 15px;
    }
}

/* Sections Spacing */
section {
    padding: var(--spacing-2xl) 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-lg {
    margin-top: var(--spacing-lg);
} 

/* Mobile-First Design Updates */

/* Hide desktop elements on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .nav-container {
        justify-content: center;
        padding: 0.5rem 1rem;
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .nav-icon {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }
    
    .nav-name {
        font-size: 0.9rem;
    }
}

/* Mobile Hero Optimization */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        margin-top: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .hero-cta {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .mobile-mockup {
        order: 2;
    }
    
    .phone-frame {
        width: 350px;
        height: 700px;
        margin: 0 auto;
    }
    
    .app-mockup {
        padding: 0;
        margin: 0;
    }
}

/* Mobile Social Proof */
.mobile-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.tester-count {
    font-weight: 600;
    color: var(--text-accent);
    font-size: 0.9rem;
}

.testimonial-preview {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Platform Selection Modal */
.platform-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.platform-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: var(--text-primary);
}

.platform-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.platform-option:hover {
    border-color: var(--text-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.platform-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.platform-option .platform-icon-img {
    height: 40px !important;
    width: auto !important;
    max-width: 24px !important;
    max-height: 24px !important;
    border-radius: 6px;
    object-fit: contain;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Special handling for Google Play icon (horizontal) */
.platform-option .platform-icon-img[src*="getitongoogleplay"] {
    width: 60px;
    height: 30px;
    object-fit: contain;
}

.btn-icon[src*="getitongoogleplay"] {
    width: 24px;
    height: 12px;
    object-fit: contain;
}

.platform-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.platform-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid #e2e8f0;
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sticky-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.sticky-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.sticky-cta .btn-primary {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: none;
}

@media (min-width: 769px) {
    .scroll-to-top {
        display: none !important;
    }
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Add bottom padding to body to account for sticky CTA */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.privacy-header h1 {
    font-size: var(--text-h1);
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: var(--text-body-large);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: var(--text-small);
    color: var(--text-secondary);
    opacity: 0.8;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    padding: var(--spacing-lg);
}

.privacy-section h2 {
    font-size: var(--text-h3);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.privacy-section p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
}

.privacy-section li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.privacy-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-accent);
    font-weight: bold;
}

.contact-info {
    background: var(--gradient-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.contact-info a {
    color: var(--text-accent);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.privacy-cta {
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.cta-card {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.cta-card h3 {
    font-size: var(--text-h2);
    margin-bottom: var(--spacing-md);
}

.cta-card p {
    font-size: var(--text-body-large);
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: var(--spacing-lg) 0;
    }
    
    .privacy-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .privacy-sections {
        gap: var(--spacing-md);
    }
    
    .privacy-section {
        padding: var(--spacing-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-card {
        padding: var(--spacing-lg);
    }
}

/* Final Download Options Styling */
.final-download-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-cta.ios-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 60px;
    min-width: 200px;
}

.btn-cta.ios-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta.ios-cta img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.google-play-download {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
}

.google-play-badge-large {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.google-play-download:hover .google-play-badge-large {
    transform: translateY(-2px);
    filter: brightness(1.1);
} 