/* css/home.css */
/* Home Page Styles */
.home-container {
    max-width: 600px;
    width: 100%;
    background: rgba(18, 26, 40, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), inset 0 1px 2px rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    text-align: center;
}

.home-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.home-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.home-title i {
    color: #fbbf24;
}

.home-subtitle {
    font-size: 1.5rem;
    color: #7e9cd9;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.home-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.home-start-btn {
    width: auto;
    min-width: 200px;
    background: linear-gradient(135deg, #27ae60, #1e8449);
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 3rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #4f74c0;
    box-shadow: 0 10px 20px -5px #00000080;
    text-decoration: none;
    transition: all 0.2s;
}

.home-start-btn:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px #000000cc;
}

.home-info {
    margin: 2rem 0 1.5rem;
    text-align: left;
    color: #cbd5e1;
}

.home-info h2 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.home-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.home-info li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.8rem;
    padding: 0.55rem 0.75rem;
}

.home-info li i {
    color: #fbbf24;
}

.home-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.25);
}

.feature-card i {
    color: #7e9cd9;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive for home */
@media (max-width: 768px) {
    .home-container {
        padding: 2rem 1.5rem;
    }
    .home-logo {
        width: 100px;
        height: 100px;
    }
    .home-title {
        font-size: 2.5rem;
    }
    .home-subtitle {
        font-size: 1.3rem;
    }
    .home-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .home-logo {
        width: 80px;
        height: 80px;
    }
    .home-container {
        padding: 1.5rem 1rem;
    }
    .home-features {
        grid-template-columns: 1fr;
    }
}