:root {
    --primary-color: #FF6B00;
    --primary-dark: #E45E00;
    --primary-light: #FFB380;
    --secondary-color: #FFF5EB;
    --text-color: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 25px rgba(255, 107, 0, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    position: relative;
}

.content-wrapper {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-light);
    opacity: 0.1;
    z-index: 0;
}

.content-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-light);
    opacity: 0.1;
    z-index: 0;
}

.logo-container {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.app-logo {
    width: 120px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}

.tagline {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.app-description {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    color: var(--light-text);
    font-size: 1rem;
    padding: 0 10px;
}

.app-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 320px;
    background-color: var(--secondary-color);
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.15);
}

.feature-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    text-align: left;
}

.download-message {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.25);
    font-weight: 600;
}

.store-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    pointer-events: none;
}

.store-button:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.35);
}

.store-button:hover:before {
    left: 100%;
}

.store-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .app-features {
        gap: 10px;
    }
    
    .feature {
        padding: 10px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
}

/* Additional Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.3);
    }
}

/* Background animated elements */
.animated-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.animated-circle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 8s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}