/* Variabel warna */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #00aaff;
    --accent-hover: #0088cc;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --border-color: rgba(0, 170, 255, 0.2);
}

/* Reset dan dasar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: var(--text-color);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sisanya tetap sama... */
.app-detail {
    background-color: #16213e;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    margin-right: 20px;
    border: 2px solid #00aaff;
}

.app-title h1 {
    color: #00aaff;
    margin-bottom: 5px;
}

.app-title p {
    color: #ccc;
    font-size: 16px;
}

.app-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 30px;
}

.features-list h2 {
    color: #00aaff;
    margin-bottom: 15px;
}

.features-list ul {
    list-style-type: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list li i {
    color: #00aaff;
    margin-right: 10px;
}

.pricing-section {
    background-color: #1a1a2e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.pricing-section h2 {
    color: #00aaff;
    margin-bottom: 15px;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pricing-card {
    background-color: #16213e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0, 170, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: #00aaff;
}

.pricing-card h3 {
    color: #00aaff;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    color: white;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-card ul li {
    padding: 5px 0;
}

.pricing-card .btn {
    display: inline-block;
    background-color: #00aaff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pricing-card .btn:hover {
    background-color: #0088cc;
}

.contact-section {
    text-align: center;
    margin-top: 40px;
}

.contact-btn {
    display: inline-block;
    background-color: #00aaff;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
    background-color: #0088cc;
    transform: scale(1.05);
}

.contact-btn i {
    margin-right: 10px;
}

/* Footer euy */
footer {
    background-color: var(--primary-color);
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-content p {
    color: var(--text-secondary);
    margin: 8px 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-links a:hover {
    color: white;
    background-color: rgba(0, 170, 255, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icons a {
    color: var(--accent-color);
    font-size: 20px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 170, 255, 0.1);
}

.social-icons a:hover {
    color: white;
    background-color: var(--accent-color);
    transform: translateY(-3px);
}


/* Penyesuaian untuk Mobile */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .app-detail {
        padding: 15px;
        margin: 15px 0;
    }

    .app-header {
        flex-direction: column;
        text-align: center;
    }

    .app-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }

    .app-title h1 {
        font-size: 1.5em;
    }

    .app-title p {
        font-size: 14px;
    }

    .features-list li {
        padding: 8px 0;
        font-size: 14px;
    }

    .pricing-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pricing-card {
        padding: 15px;
    }

    .pricing-card h3 {
        font-size: 1.2em;
    }

    .pricing-card .price {
        font-size: 20px;
    }

    .pricing-card ul li {
        font-size: 14px;
    }

    .pricing-card .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .contact-btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    /* Footer penyesuaian */
    .footer-content {
        padding: 0 15px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        padding: 8px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Penyesuaian untuk layar sangat kecil */
@media screen and (max-width: 320px) {
    .app-title h1 {
        font-size: 1.3em;
    }

    .pricing-card h3 {
        font-size: 1.1em;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}