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

body {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-waves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-waves svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Ensure no edge gaps */
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-icon, .lang-icon {
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.menu-icon:hover, .lang-icon:hover {
    color: #449d9e;
}

.logo {
    height: 35px;
    border-radius: 8px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
}

.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.app-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.phone-mockup {
    max-width: 300px;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-5px);
}

.phone-img {
    width: 100%;
    display: block;
}

.download-card {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 280px;
    transition: transform 0.3s;
}

.download-card:hover {
    transform: translateY(-5px);
}

.qr-placeholder {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.download-text {
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Nunito', sans-serif;
}

.google-badge {
    height: 60px;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.2s;
}

.google-badge:hover {
    opacity: 0.85;
}

.bottom-callout {
    font-size: 1.3rem;
    font-weight: 600;
    max-width: 800px;
    margin: 30px auto 10px auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #151515;
    color: #bbb;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.footer-left {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.footer-link:hover {
    color: #449d9e;
    text-decoration: underline;
}

.footer-right {
    display: flex;
    gap: 20px;
    font-size: 1.3rem;
}

.footer-right a {
    color: #bbb;
    transition: color 0.2s, transform 0.2s;
}

.footer-right a:hover {
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .app-showcase {
        gap: 40px;
        flex-direction: column;
    }
    
    .site-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        flex-wrap: wrap;
        justify-content: center;
    }
}
