body {
    background: linear-gradient(145deg, #0b1026, #111a3b);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.hero {
    padding-top: 80px;
}

h1 {
    font-weight: 700;
    font-size: 5.3rem;
}

.highlight {
    color: #a89bff;
}

.btn-custom {
    background: linear-gradient(90deg, #6e5df5, #9e8dff);
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(110, 93, 245, 0.4);
}

.btn-custom:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #5a48d1, #8773ff);
}

.features {
    background-color: #0d1430;
}

.text-gradient {
    background: linear-gradient(90deg, #6e5df5, #9e8dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animated-app {
    animation: fadeInUp 1s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.about {
    background-color: #101833;
}

.footer {
    background: linear-gradient(to right, #0b1026, #1a2150);
    border-top: 1px solid #2c365f;
}

.footer-logo {
    height: 50px;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    margin: 0 10px;
}

.footer-link:hover {
    text-decoration: underline;
    color: #fff;
}
