    body {
        font-family: Arial, sans-serif;
        max-width: 2400px;
        margin: 0 ;
        padding: 20px;
        text-align: center;
        min-height: 100vh;         /* Pastikan full height */
        background: url('') no-repeat center center fixed;
        background-size: cover;
        background-color: #0037ffb6;
    }

    h1 {
        color: #ffffff;
    }
    h2 {
        color: #ffffff;
    }
    h3 {
        color: #ffffff;
    }
    .image-options {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin: 0px 0px;
    }

    .image-option {
        width: 150px;
        cursor: pointer;
        border: 0px solid transparent;
        border-radius: 25px;
        transition: all 0.3s;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .image-option:hover {
        transform: scale(1.05);
        margin: 0px 0px;
        }
    
    .image-option img {
        width: 100%;
        height: auto;
        border-radius: 25px;
        
    }

    .card-preview {
        margin: 30px auto;
        width: 300px;
        padding: 10px;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        background-color: rgb(255, 255, 255);
    }

    .card-preview img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }
    /* Pastikan ini ada di CSS Anda */
    .card-preview {
        border-radius: 15px;
        overflow: hidden;
        transform: translateZ(0); /* Fix untuk rendering */
    }

    .card-preview-container {
        margin: 60px auto;
        text-align: center;
    }
    .card-preview, .card-preview * {
        box-sizing: border-box;
    }
    .card-text {
        margin-top: 10px;
        font-size: 18px;
        font: 'bakso sapi';
        color:#000000;
    }

    .text-input {
        margin: 30px 0;
        justify-content: center;
        color: solid transparent;
    }

    .text-input input {
        padding: 12px 20px;
        width: 250px;
        border-radius: 10px;
        font-size: 16px;
        text-align: center;
        background-color: #ffffff00 solid transparent;
        transition: all 0.3s ease;
    }

    .text-input input:focus {
        outline: none;
        background-color: #00aeff; /* Vibrant sky blue */
        border-radius: 50px;    /* Large radius for pill shape */
        border: 3px solid #add8e6; /* Lighter blue border */
    }

    #cardText {
        padding: 12px 20px;
        width: 200px;           /* Adjust width as needed */
        border: 2px solid #ffffff;
        border-radius: 10px;
        font-size: 16px;
        text-align: center;      /* Centers text inside input */
    }

    button {
        background-color: #4CAF50;
        color: rgb(255, 255, 255);
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    button:hover {
        background-color: #45a049;
    }

    .download-btn {
        margin-top: 20px;
        background-color: #054980;
    }

    .download-btn:hover {
        background-color: #0b7dda;  
    }