/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(180deg, #B1F0B9, #e9f0f2);
    color: #4a3f38;
    min-height: 100vh;
}
.card {
    cursor: default;
}

/* SOFT BACKGROUND EFFECT */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.6), transparent),
        radial-gradient(circle at bottom right, rgba(255,200,180,0.4), transparent);
    z-index: -1;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}
.card:first-child {
    border: 50px solid #2f7d5b;
}

/* MOBILE APP STYLE CENTER */
@media (max-width: 600px) {
    .container {
        max-width: 480px;
    }
}

/* LOGO */
.logo {
    text-align: center;
    margin-bottom: 10px;
}

.logo img {
    width: 200px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

/* SUBTITLE */
.subtitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    color: #519C51;
}

/* SEARCH */
.search {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 14px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.search:focus {
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* CARD */
.card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 15px;
    text-align: right;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-3px);
}

/* TEXT */
.card h3 {
    font-size: 30px;
    margin-bottom: 5px;
    color: #AB3232;
}

.card p {
    font-size: 14px;
    color: #6b5b52;
}

/* BUTTONS CONTAINER */
.buttons {
    margin-top: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* BUTTON */
.btn {
    flex: 1;
    padding: 8px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    transition: 0.2s;
}

/* COLORS */
.green {
    background: #2f7d5b;
    color: white;
}

.red {
    background: #d64545;
    color: white;
}

.light {
    background: #e5e5e5;
    color: #555;
}

/* BUTTON HOVER */
.btn:hover {
    opacity: 0.85;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {

    .logo img {
        width: 100px;
    }

    .search {
        padding: 12px;
        font-size: 13px;
    }

    .card {
        padding: 15px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin: 2px 0;
    }

    .card h3 {
        font-size: 16px;
    }

    .card p {
        font-size: 13px;
    }
}