
body {
    margin: 0;
    height: 100%;
    background: linear-gradient(180deg,
    #0b1a34 20%,      /*!* більш темний синій *!*/
    #12305c 40%,     /* яскравіший синій */
    #16487f 60%,     /* насичений синій */
    #1d5db0 80%,     /* яскравий синій */
    #2181e0 100%     /* світло-блакитний */
    );
    color: white; /* Текст будет читабельным */
    font-family: sans-serif;
}

.coming-soon {
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(252, 211, 77, 0.6);
    color: black;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    width: 50%;
    z-index: 50;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);

    /* Поворот + зсув для видимості */
    transform: rotate(45deg) translate(50%, 300%);
    transform-origin: top right;
}

section.hero {
    position: relative;
    min-height: 80vh;
    max-width: 64rem;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: white;
    font-family: sans-serif;
    z-index: 0;
}

section.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background-grid.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
}

.feature-card {
    background: rgba(18, 48, 92, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem; /* екв. rounded-xl */
    padding: 2rem;          /* екв. p-8 */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -5px rgba(99, 102, 241, 0.6); /* схоже на hover:shadow-indigo-600 */
}
