﻿
body {
    /*background: linear-gradient(135deg, #6e8efb, #a777e3);*/
}

.container-index {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    text-align: center;
    border: 1px solid #6e8efb
}

.header {
    background: linear-gradient(134deg, #8c34db, #2888c7);
    color: white;
    padding: 35px 30px 25px;
}

.app-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

h1 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.content {
    padding: 25px;
}

.quote {
    font-style: italic;
    color: #6c757d;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    font-size: 15px;
}

.feature {
    display: flex;
    align-items: center;
    margin: 20px 0;
    text-align: left;
}

.feature-icon {
    background: linear-gradient(to right, #6e8efb, #a777e3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 15px;
}

.action-buttons {
    display: grid;
    gap: 12px;
    margin-top: 25px;
    /*flex-wrap: wrap;*/
}

.btn {
    display:block;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #6e8efb, #a777e3);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
    }

.btn-secondary {
    background-color: transparent;
    color: #6e8efb;
    border: 2px solid #6e8efb;
}

    .btn-secondary:hover {
        background-color: rgba(110, 142, 251, 0.1);
    }


.developers {
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .container {
        border-radius: 15px;
    }

    .header {
        padding: 25px 15px 15px;
        background: linear-gradient(134deg, #8c34db, #2888c7);
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 500) !important;
        border-radius: 10px;
    }

    .content {
        padding: 20px 15px;
    }
}