/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

/* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

:root {
    --primary-bg: #0A0F1C;
    --primary-accent: #FDE047;
    --secondary-blue: #223F59;
    --tertiary-blue: #2F4C73;
    --gold: #D9B343;
    --text-light: #F0EDE5;
    --text-lighter: #F5F5F5;
    
    /* Responsive spacing units */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 2vw, 1rem);
    --space-md: clamp(1rem, 3vw, 1.5rem);
    --space-lg: clamp(1.5rem, 4vw, 2rem);
    --space-xl: clamp(2rem, 5vw, 3rem);
    
    /* Responsive font sizes */
    --font-xs: clamp(0.75rem, 2vw, 0.875rem);
    --font-sm: clamp(0.875rem, 2.5vw, 1rem);
    --font-md: clamp(1rem, 3vw, 1.25rem);
    --font-lg: clamp(1.25rem, 4vw, 1.5rem);
    --font-xl: clamp(1.5rem, 5vw, 2rem);
    
    /* Container widths */
    --container-width: min(100% - 2rem, 1200px);
    --container-narrow: min(100% - 2rem, 800px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-bg);
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Loading Screen */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--secondary-blue);
    border-radius: 50%;
    border-top-color: var(--primary-accent);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Mobile Header */
.mobile-header {
    background: linear-gradient(135deg, #223F59 0%, #2F4C73 100%);
    color: var(--primary-accent);
    padding: max(var(--space-xl), env(safe-area-inset-top) + var(--space-lg)) var(--space-md);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    z-index: 2; /* keep header above the showcase panel */
}

.mobile-header h1 {
    font-size: var(--font-xl);
    margin: var(--space-sm) 0;
    letter-spacing: 1px;
}

.mobile-header .header-subtitle {
    font-size: var(--font-md);
    opacity: 0.9;
}

.app-icon {
    width: min(120px, 30vw);
    height: min(120px, 30vw);
    margin: 0 auto var(--space-md);
    font-size: min(3.5rem, 8vw);
}

.floating-shapes div {
    position: absolute;
    background: var(--primary-accent);
    /* very subtle, mostly static background shapes */
    opacity: 0.04;
    border-radius: 50%;
    animation: none !important;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
}

.shape-3 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 20%;
}

@keyframes float {
    /* kept for reference; minimal movement if re-enabled */
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-6px, 6px) rotate(1deg); }
    50% { transform: translate(6px, -6px) rotate(-1deg); }
    75% { transform: translate(-6px, -6px) rotate(1deg); }
}

.app-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--primary-bg);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-accent);
    transition: all 0.3s ease;
    color: var(--primary-accent);
    position: relative;
    overflow: hidden;
}

.app-icon-img {
    width: 66%;
    height: 66%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    background: transparent;
}

.app-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(253, 224, 71, 0.1),
        transparent
    );
    transform: rotate(45deg);
    /* slow, subtle shine */
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.app-icon:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(253, 224, 71, 0.2);
}

.glowing-text {
    text-shadow: 0 0 8px rgba(253, 224, 71, 0.22);
    /* very slow glow to reduce motion */
    animation: glow 6s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(253, 224, 71, 0.3); }
    to { text-shadow: 0 0 20px rgba(253, 224, 71, 0.5); }
}

.mobile-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

/* App Showcase */
.app-showcase {
    padding: var(--space-md);
    background: var(--primary-bg);
    border-radius: min(20px, 5vw) min(20px, 5vw) 0 0;
    /* reduced overlap so header content isn't covered */
    margin-top: min(-12px, -3vw);
    position: relative;
    z-index: 1;
    width: 100%;
}

.app-screenshots {
    margin: var(--space-md) auto;
    overflow: hidden;
    width: var(--container-narrow);
    max-width: 100%;
}

.screenshot-slider {
    padding: var(--space-md);
}

.screenshot {
    background: var(--secondary-blue);
    border-radius: min(15px, 4vw);
    padding: var(--space-md);
    text-align: center;
}

.phone-frame {
    max-width: min(280px, 80vw);
    margin: 0 auto;
    border: min(12px, 3vw) solid #333;
    border-radius: min(30px, 8vw);
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 min(20px, 5vw) min(40px, 10vw) rgba(0, 0, 0, 0.2);
}

.phone-frame {
    max-width: 280px;
    margin: 0 auto;
    border: 12px solid #333;
    border-radius: 30px;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #fff;
}

/* Parallax helper: ensure hardware acceleration and smooth transforms */
.parallax {
    will-change: transform;
    transition: transform 0.12s linear;
}

@media (max-width: 640px) {
    /* disable parallax on small screens for performance and usability */
    .parallax { transform: none !important; transition: none !important; }
}

/* Scroll reveal animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms cubic-bezier(.22,.98,.33,1), transform 520ms cubic-bezier(.22,.98,.33,1);
    will-change: opacity, transform;
}
.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-animate, .parallax { transition: none !important; transform: none !important; }
}

.placeholder-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ddd;
    padding: 12px; /* inner bezel so screenshot doesn't touch the frame */
    box-sizing: border-box;
    background: #fafafa;
}

/* Phone screenshot image inside mock frame */
.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full screenshot without cropping */
    object-position: top center; /* align to top so header area is visible */
    display: block;
    border-radius: 14px; /* match the inner screen corners */
    background: #ffffff;
}

/* Ensure the screenshot is clipped to the frame and doesn't overflow */
.phone-frame { overflow: hidden; }

/* Note: add your image file at: assets/phone-screenshot.png */

/* Enhanced Loading Overlay and Smooth Animations */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0F1C 0%, #1A1F2E 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-overlay.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--primary-accent);
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(253, 224, 71, 0.3);
    border-radius: 50%;
    border-top: 3px solid var(--primary-accent);
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

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

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

/* Enhanced smooth scroll animations */
.scroll-animate {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced parallax with hardware acceleration */
.parallax {
    will-change: transform;
    transition: transform 0.1s linear;
    transform: translateZ(0); /* Force hardware acceleration */
}

/* Smooth hover animations for interactive elements */
.download-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0); /* Hardware acceleration */
    position: relative;
    overflow: hidden;
}

.download-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.download-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-link:hover::before {
    left: 100%;
}

.stars i {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.stars i:hover {
    transform: scale(1.2) translateZ(0);
    filter: brightness(1.2);
}

/* Enhanced card animations */
.privacy-section,
.installation-step {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-section:hover,
.installation-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Enhanced performance for mobile */
@media (max-width: 640px) {
    .parallax {
        transform: none !important;
        transition: none !important;
    }
    
    /* Simplified animations for better mobile performance */
    .loading-overlay,
    .download-link,
    .stars i {
        transition-duration: 0.2s;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .loading-overlay {
        animation: none;
    }
    
    .loader-circle {
        animation: none;
        border-top-color: var(--primary-accent);
    }
    
    .parallax,
    .scroll-animate {
        transform: none !important;
        transition: none !important;
    }
}

/* Enhanced focus states for accessibility */
.download-link:focus,
.stars i:focus,
button:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

/* Content loading optimizations */
img {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img:not([src]) {
    opacity: 0;
}

img[src] {
    opacity: 1;
}

.download-section {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    width: var(--container-width);
    margin: 0 auto;
}

.app-info {
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: var(--font-lg);
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.app-description {
    font-size: var(--font-md);
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.app-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: var(--space-md);
    margin: var(--space-md) auto;
    max-width: var(--container-narrow);
    padding: 0 var(--space-sm);
}

.app-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2.8rem;
    background-color: var(--primary-accent);
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 16px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 2rem auto;
    width: 90%;
    max-width: 300px;
    box-shadow: 0 8px 25px rgba(253, 224, 71, 0.2);
    border: none;
    text-transform: none; /* friendlier tone */
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    /* Mobile optimizations */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    /* Ensure button is easily tappable */
    min-height: 48px;
}

/* small helper note below CTA */
.help-note {
    margin-top: 0.6rem;
    color: var(--text-light);
    opacity: 0.95;
    font-size: 0.95rem;
}

.download-link span { /* slightly smaller label weight so it's less 'buttony' */
    font-weight: 700;
    font-size: 1rem;
}

.download-ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: none;
    pointer-events: none;
}

.download-ripple.animate {
    animation: ripple 0.7s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(4); opacity: 0; }
}

.download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253, 224, 71, 0.3);
    background-color: var(--gold);
}

.meta-item {
    background: var(--secondary-blue);
    padding: var(--space-md);
    border-radius: min(12px, 3vw);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
}

.meta-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.meta-item:active {
    transform: scale(0.98);
    background: var(--tertiary-blue);
}

@media (max-width: 480px) {
    .meta-item {
        flex-direction: row;
        justify-content: center;
        padding: var(--space-sm);
    }
    
    .meta-value {
        font-size: var(--font-lg);
    }
    
    .meta-label {
        font-size: var(--font-sm);
    }
}



.meta-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-accent);
}

.meta-label {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

.download-link:active {
    transform: scale(0.98);
    background-color: #16a34a;
}

/* Android-only notice under download button */
.android-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.android-note i {
    color: #A4C639; /* Android green */
    font-size: 1.1rem;
}

/* Play Store notice */
.playstore-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.4rem;
    padding: 0.6rem 0.9rem;
    background: linear-gradient(135deg, rgba(253,224,71,0.10), rgba(34,63,89,0.03));
    border: 1px solid rgba(253,224,71,0.18);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(253,224,71,0.06);
}
.playstore-note i {
    color: #4285F4; /* Google blue */
    font-size: 1.05rem;
}

@media (max-width: 480px) {
    .playstore-note { font-size: 0.95rem; padding: 0.55rem 0.75rem; }
}



/* Installation section */
.installation {
    padding: 3rem 1rem;
    background: var(--secondary-blue);
    margin: 2rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Rating section styles */
.rating-section {
    padding: 2.5rem 1rem;
    background: linear-gradient(180deg, rgba(34,63,89,0.04), rgba(47,76,115,0.02));
    margin: 2rem 1rem;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.rating-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.75rem;
}

.stars i {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.18);
    cursor: pointer;
    transition: transform 0.18s ease, color 0.16s ease, filter 0.18s ease;
    user-select: none;
    will-change: transform, filter;
}

.stars i:hover {
    transform: translateY(-4px) scale(1.06);
}

.stars i.active {
    color: var(--primary-accent);
    transform: translateY(-2px) scale(1.06);
    text-shadow: 0 6px 20px rgba(253,224,71,0.12);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}

.rating-text {
    color: var(--text-light);
    opacity: 0.98;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1.05rem;
}

.rating-feedback {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.rating-feedback textarea {
    width: 100%;
    min-height: 90px;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(10,15,28,0.6);
    color: var(--text-light);
    resize: vertical;
    outline: none;
    transition: box-shadow 0.12s ease;
}

.rating-feedback textarea:focus {
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    border-color: rgba(253,224,71,0.25);
}

.submit-rating {
    align-self: flex-end;
    padding: 0.6rem 1rem;
    background: var(--primary-accent);
    color: var(--primary-bg);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(253,224,71,0.14);
    transition: transform 0.12s ease, opacity 0.12s ease;
}

.submit-rating:active {
    transform: translateY(1px) scale(0.995);
}

.rating-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
}

.rating-success i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--primary-accent);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    font-size: 0.95rem;
}

.rating-success p {
    margin: 0;
    background: #0b63ff; /* highlighted blue pill */
    color: #ffffff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(11,99,255,0.12);
    display: inline-block;
}

@media (max-width: 480px) {
    .stars i { font-size: 2.4rem; }
    .rating-feedback textarea { min-height: 110px; }
    .submit-rating { width: 100%; align-self: stretch; }
    .rating-success p { padding: 0.6rem 1rem; font-size: 0.98rem; }
}

.installation h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: var(--primary-bg);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(253, 224, 71, 0.1);
    margin-bottom: 1rem;
}

.step:active {
    transform: scale(0.98);
    background: var(--secondary-blue);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 224, 71, 0.1);
    color: var(--primary-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: rgba(253, 224, 71, 0.15);
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(253, 224, 71, 0.05);
    border-radius: 8px;
    margin-top: 1rem;
}

.step-tip i {
    color: var(--primary-accent);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.step-tip span {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.install-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

.install-note i {
    color: var(--primary-accent);
}

@media (max-width: 480px) {
    .step {
        flex-direction: column;
        padding: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }
}

/* Footer */
.mobile-footer {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #0A0F1C;
    color: #F0EDE5;
    position: relative;
    overflow: hidden;
}

.mobile-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(253, 224, 71, 0) 0%,
        rgba(253, 224, 71, 0.3) 50%,
        rgba(253, 224, 71, 0) 100%
    );
}

/* Privacy page styles */
.privacy-content {
    padding: var(--space-lg) var(--space-md);
    background: var(--primary-bg);
    min-height: 100vh;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.last-updated {
    background: var(--secondary-blue);
    padding: var(--space-md);
    border-radius: 12px;
    margin-bottom: var(--space-lg);
    border-left: 4px solid var(--primary-accent);
}

.privacy-section {
    margin-bottom: var(--space-xl);
    background: rgba(34, 63, 89, 0.3);
    padding: var(--space-lg);
    border-radius: 16px;
    border: 1px solid rgba(253, 224, 71, 0.1);
}

.privacy-section h2 {
    color: var(--primary-accent);
    font-size: var(--font-lg);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(253, 224, 71, 0.2);
}

.privacy-section h3 {
    color: var(--text-light);
    font-size: var(--font-md);
    margin: var(--space-md) 0 var(--space-sm) 0;
}

.privacy-section ul {
    margin: var(--space-sm) 0;
    padding-left: var(--space-lg);
}

.privacy-section li {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.privacy-section strong {
    color: var(--primary-accent);
}

.contact-info {
    background: rgba(10, 15, 28, 0.6);
    padding: var(--space-md);
    border-radius: 8px;
    margin-top: var(--space-md);
}

.contact-info p {
    margin-bottom: var(--space-sm);
}

@media (max-width: 640px) {
    .privacy-section {
        padding: var(--space-md);
        margin-bottom: var(--space-lg);
    }
    
    .privacy-section ul {
        padding-left: var(--space-md);
    }
}







/* Phone mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background-color: #333;
    border-radius: 30px;
    padding: 10px;
    position: relative;
}

.screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}



/* Responsive design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .app-preview {
        margin-top: 2rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}
