
body {
    background: #FFF8F0;
    font-family: 'Poppins', sans-serif;
}


.flex-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding: 0.6rem 1rem;
    border-bottom:1px solid #efefef;
}

.flex-label {
    flex: 0 0 180px;
    color: #FF6FA1;
    font-weight: 500;
    word-wrap: break-word;
    text-align:start;
}

.flex-value {
    flex: 1;
    color: #555;
    word-wrap: break-word;
    text-align:end;
}

.subitem {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.3rem;
}

.sub-label {
    color: #FF91AC;
    font-weight: 500;
    margin-right: 1rem;
}

.sub-value {
    font-family: monospace;
    color: #555;
}


h1 {
    color: #FF6FA1;
    text-align: center;
    font-weight: 700;
}
.card {
    border-radius: 20px;
    border: none;
}
.card-header {
    background: linear-gradient(90deg, #FFB6C1, #FF6FA1);
    color: #fff;
    font-weight: 600;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.cover-img {
    max-height: 300px;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(255,111,161,0.3);
}


a {
    color: #FF6FA1;
    text-decoration: underline;
}
a:hover {
    color: #FF91AC;
    text-decoration: none;
}
footer {
    background: #FFF0F5;
    color: #555;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
    border-top: 2px solid #FFB6C1;
    /* border-radius: 15px 15px 0 0; */
    margin-top: 3rem;
}

footer a {
    color: #FF6FA1;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
    color: #FF91AC;
}

footer small {
    display: block;
    line-height: 1.6;
}

footer br {
    margin-bottom: 0.3rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    position: relative;
}

img {
    position: fixed;
    top: 5rem;
    left: calc(50% - 900px / 2 - 320px); 
    max-height: 300px;
    border-radius: 15px;
    border: solid 5px white;
    z-index: 999;
    transition: left 0.3s ease;
}

@media (max-width: 1368px) {
    .cover-img {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        margin: 0 auto 1rem auto;
        max-width: 80%;
        padding: 0;
    }
}

.cute-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #FFB6C1, #FF91AC);
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255,111,161,0.3);
    transition: all 0.3s ease;
}

.cute-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,111,161,0.4);
    background: linear-gradient(135deg, #FF91AC, #FF6FA1);
}

.cute-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(255,111,161,0.3);
}

.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}




@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .flex-label {
        margin-bottom: 0.3rem;
        font-weight: 600;
    }
    

    body {
        font-size: 15px;
        /* padding: 0 1rem; */
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .flex-table {
        gap: 0.8rem;
    }

    .flex-row {
        display: block;
        padding: 0.8rem;
    }

    .flex-label {
        display: block;
        width: 100%;
        margin-bottom: 0.2rem;
        font-weight: 600;
        text-align: start;
        color: #FF6FA1;
    }

    .flex-value {
        display: block;
        width: 100%;
        text-align: start;
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 0.6rem;
    }

    .subitem {
        display: block;
        margin-bottom: 0.4rem;
    }

    .sub-label {
        display: block;
        margin-bottom: 0.2rem;
    }

    .card {
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }

    .card-header {
        font-size: 1rem;
        text-align: center;
    }

    .cover-img {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        width: auto;
        height: auto;
        border-radius: 10px;
        margin: 0 auto 1rem auto;
        box-shadow: 0 3px 8px rgba(255,111,161,0.2);
    }

    img {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-height: none;
        border: none;
        margin: 0 auto 1rem auto;
        display: block;
    }

    .button-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cute-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        font-size: 1rem;
    }

    footer {
        padding: 1rem;
        font-size: 0.85rem;
    }

    footer small {
        line-height: 1.4;
    }
}



