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

body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.traveler {
    position: absolute;
    bottom: 10%;
    left: -100px;
    z-index: 1;
    animation: walk 20s linear infinite;
}

.traveler-figure {
    font-size: 3rem;
    animation: bounce 0.6s ease-in-out infinite alternate;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    position: relative;
    display: inline-block;
}

.backpack {
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 1.5rem;
    z-index: -1;
}

.person {
    position: relative;
    z-index: 1;
}

.stick {
    position: absolute;
    top: 5px;
    right: -20px;
    font-size: 2rem;
    animation: swing 0.6s ease-in-out infinite alternate;
}

@keyframes swing {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}

@keyframes walk {
    0% {
        left: -100px;
        transform: scaleX(1);
    }
    50% {
        left: calc(100% + 100px);
        transform: scaleX(1);
    }
    51% {
        transform: scaleX(-1);
    }
    100% {
        left: -100px;
        transform: scaleX(-1);
    }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.2);
}

.feature:nth-child(2) { animation-delay: 0.6s; }
.feature:nth-child(3) { animation-delay: 0.8s; }

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.cta {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1s both;
    box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.4);
}

.phone-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
}

.phone {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-demo-video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: none;
    object-fit: cover;
}

.app-demo {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.2) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

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

.about {
    padding: 5rem 5%;
    text-align: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.about h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.about p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.screenshots {
    padding: 5rem 5%;
    text-align: center;
    background: rgba(0,0,0,0.1);
}

.screenshots h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.screenshot:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.2);
}

.screenshot img {
    width: 100%;
    max-width: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.screenshot p {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.download {
    padding: 5rem 5%;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-btn img {
    height: 60px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.contact {
    padding: 5rem 5%;
    text-align: center;
    background: rgba(0,0,0,0.1);
}

.contact h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255,255,255,0.8);
}

.support {
    padding: 5rem 5%;
    text-align: center;
}

.support h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.support p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.coffee-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #FFDD00, #FBB034);
    color: #333;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,221,0,0.3);
}

.coffee-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,221,0,0.4);
}

.coffee-icon {
    font-size: 1.5rem;
}

.footer {
    background: rgba(0,0,0,0.3);
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-links a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.footer-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    color: white;
    line-height: 1.6;
}

.policy-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, #fff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-container h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: rgba(255,255,255,0.9);
}

.policy-container p {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
}

.back-btn {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-3px);
}

.teaser {
    padding: 5rem 5%;
    text-align: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.teaser h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teaser-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.teaser-card {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.teaser-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.2);
}

.teaser-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.teaser-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.teaser-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .phone {
        width: 250px;
        height: 500px;
        margin-top: 2rem;
    }
    
    .screenshot-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
        gap: 1rem;
    }
}
