/* Modernized Styles */

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    color: #fff;
    text-align: center;
    overflow-x: hidden;
}

.header {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.title {
    font-size: 3rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #64ffda;
    animation: fadeInUp 1s ease-in-out;
}

.section-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e0e0e0;
    animation: fadeInUp 1s ease-in-out 0.2s;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 10px;
}

.download-button {
    display: inline-block;
    padding: 15px 30px;
    background: #64ffda;
    color: #121212;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-in-out 0.3s;
}

.download-button:hover {
    background: #00bfae;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.floating-image {
    width: 100%;
    max-width: 850px;
    display: block;
    margin: 40px auto;
    animation: floatAnimation 3s infinite ease-in-out;
}

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

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