    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 0;
        padding: 0;
        color: #333;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        
        background: linear-gradient(
        135deg,
        #3a0ca3 0%,
        #560bad 35%,
        #480ca8 60%,
        #2b0a3d 100%
    );
       
        
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(0,0,0,0.25), transparent 60%);
    pointer-events: none;
}



    .container {
        background: #fff;
        max-width: 440px;
        width: 90%;
        margin: auto;
        text-align: center;
        border-radius: 16px;
        padding: 10px 10px;
box-shadow:
        0 20px 40px rgba(0,0,0,0.15),
        0 2px 8px rgba(0,0,0,0.05);

    }

    h1 {
        color: #3a0ca3;
        font-size: 2.2em;
        margin-bottom: 12px;
    }

    .for-sale {
        font-size: 1.2em;
        color: #220654;
        margin-bottom: 35px;
            font-weight: bold;
    }

.transaction-info {
        background: #f5f3ff;
        padding: 14px 18px;
        border-radius: 8px;
        text-align: left;
        font-size: 0.95em;
        color: #444;
        margin: 0 auto 35px;
        line-height: 1.6em;
    }

    .transaction-info strong {
        color: #3a0ca3;
    }

.transaction-info ul {
    padding-left: 22px;
    margin: 0 0 5px 0;
}

.transaction-info li {
    margin-bottom: 10px;
    list-style-type: "✔️ ";
    color: #444;
    line-height: 1.5em;
}

.transaction-info img {
    margin-left: auto;
    margin-right: auto; /* Automatically adjust margins to center */
    padding-left: 10px;
    max-height: 30px;
    transition: transform 0.2s, opacity 0.2s;
}

.transaction-info img:hover {
        transform: scale(1.1);
        opacity: 0.85;
    
}

.divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px auto 10px;
    width: 85%;
}

.payment-logos {
    text-align: center;
    margin-top: 10px;
}

.payment-logos img {
    height: 28px;
    margin: 5px 10px;
    vertical-align: middle;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.2s;
}

.payment-logos img:hover {
    filter: none;
    transform: scale(1.05);
}


    .contact p {
        margin-bottom: 18px;
        color: #444;
        font-weight: 500;
    }

    .icons a {
        margin: 0 10px;
        text-decoration: none;
        display: inline-block;
    }

    .icons img {
        width: 40px;
        height: 40px;
        transition: transform 0.2s, opacity 0.2s;
    }

    .icons img:hover {
        transform: scale(1.1);
        opacity: 0.85;
    }

    footer {
        text-align: center;
        background: #1a1a1a;
        color: #ccc;
        padding: 18px 0;
        font-size: 14px;
        margin-top: auto;
    }

    footer a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }

    footer a:hover {
        text-decoration: underline;
    }