@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

body {
    background: #210d41;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #210d41 0%, #713275 100%);
}

.container-2,
.container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.container-2 {
    text-align: left;
    background-color: white;
    color: #210d41;
    padding: 40px;
    border-radius: 20px;
    align-items: flex-start;
}

.container-2 * {
    margin: 5px 0;
}

.container-2 h2 {
    text-decoration: underline;
    border-left: 5px solid #210d41;
    padding-left: 10px;
}

.container-2 h1 {
    padding-bottom: 20px;
}
/* Header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.app-logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-logo i {
    font-size: 40px;
    color: #713275;
}

.app-name {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.app-tagline {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.5;
}

/* App Screenshots */
.screenshots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: #fff;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 12px solid #210d41;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #713275 0%, #aa71ab 100%);
    border-radius: 30px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screen-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.screen-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.screen-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.url-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.url-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.url-text {
    font-size: 13px;
    color: #fff;
    word-break: break-all;
}

.download-button {
    background: #fff;
    color: #713275;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    cursor: pointer;
}

/* Download Section */
.download-section {
    margin: 60px 0;
}

.playstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #713275;
    text-decoration: none;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.playstore-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: #f5f5f5;
}

.playstore-btn i {
    font-size: 36px;
}

.rating {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-top: 15px;
}

.stars {
    color: #ffd700;
    margin-right: 10px;
}

/* Features */
.features {
    margin: 60px 0;
    width: 100%;
}

.features-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #aa71ab;
}

.feature-icon {
    font-size: 40px;
    color: #aa71ab;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
}

/* Footer */
.footer {
    width: 100%;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #aa71ab;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .app-name {
        font-size: 36px;
    }

    .app-tagline {
        font-size: 20px;
    }

    .playstore-btn {
        padding: 18px 35px;
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .app-name {
        font-size: 32px;
    }

    .app-tagline {
        font-size: 18px;
    }

    .playstore-btn {
        padding: 15px 30px;
        font-size: 18px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}
