* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(160deg, #2a0845 0%, #6441A5 100%);
    color: #eee;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.content {
    text-align: center;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.domain {
    font-size: 2rem;
    color: #4a2dd0;
    font-weight: 700;
}

.subtitle {
    color: #666;
    margin-top: 5px;
    font-size: 1rem;
}

.price-box {
    margin-top: 25px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.price span {
    font-size: 1rem;
    color: #666;
}


.until {
color: red;
}

.kiri {
color: green;
}
.kiri-diskon {
color: red;
}

.kanan-diskon {
}
.kanan-strike {
text-decoration: line-through;
}



.buynow {
display: inline-block;
padding-top: 15px;
padding-bottom:0px;
width: 80%;
clear: both;
}

.buynow img {
height: 30px;
float: right;
margin-right: 20px;
}
.buynow span {
float: left;
display: block;
margin-top: 5px;
margin-left: 10px;
font-size: 14px;
font-weight: bold;
color: #203080;
}




/* Tombol Escrow */
.escrow-form {
    margin-top: 20px;
}

.btn-buy {
    background: #4a2dd0;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    max-width: 320px;
}

.btn-buy img {
width: 150px;
}

.btn-buy:hover {
    background: #3720a5;
}

/* Keterangan kepercayaan */
.trust-text {
    margin-top: 15px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* Kontak */
.contact-section {
    margin-top: 35px;
}

.contact-section p {
    color: #555;
    font-weight: 500;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.contact-icons img {
    width: 36px;
    height: 36px;
    transition: transform 0.2s;
}

.contact-icons a:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 10px 10px;
    font-size: 0.9rem;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

.price-note {
    font-size: 1rem;
    color: red;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
}