
.sendiri {
margin: 0;
padding: 0;
font-family: 'Playfair Display', 'Segoe UI', serif;
background-color: transparent;
color: #fff;
overflow: hidden;
}

.popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}

.popup-container {
position: relative;
width: 90%;
max-width: 420px;

border-radius: 20px;
overflow: hidden;
text-align: center;
animation: rotateScaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), goldPulse 3.5s infinite ease-in-out;
padding-bottom: 20px;
border: 1px solid rgb(131, 255, 0);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}

/* 💛 Emas berdenyut yang mewah */
@keyframes goldPulse {
0%, 100% {
}
50% {
}
}

/* ✨ Shiny diagonal emas yang elegan */
.popup-container::before {
content: "";
position: absolute;
top: -100%;
left: -100%;
width: 200%;
height: 200%;

animation: shineDiagonal 5s linear infinite;
z-index: 2;
pointer-events: none;
}

@keyframes shineDiagonal {
0% {
transform: translate(-100%, -100%) rotate(30deg);
}
100% {
transform: translate(100%, 100%) rotate(30deg);
}
}

.popup-image {
width: 100%;
display: block;
border-bottom: 1px solid rgb(131, 255, 0);
}

.popup-buttons {
display: flex;
flex-direction: column;
gap: 15px;
padding: 25px 20px;
position: relative;
z-index: 3;
}

.popup-buttons a {
width: 100%;
display: block;
padding: 18px 0;
font-size: 16px;
font-weight: 700;
border-radius: 50px;
text-decoration: none;
text-align: center;
color: #000;
background-color: #ff0000;
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
overflow: hidden;
text-transform: uppercase;
letter-spacing: 1.5px;
font-family: 'Montserrat', sans-serif;
}

/* Efek hover tombol emas yang mewah */
.popup-buttons a::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;

transition: left 0.8s;
}

.popup-buttons a:hover::before {
left: 100%;
}

.popup-buttons a:hover {
transform: translateY(-4px);
}

.popup-buttons a:active {
transform: translateY(1px);
}

.info-table {
width: 90%;
margin: 20px auto;
border-collapse: collapse;
color: #eee;
font-size: 14px;
position: relative;
z-index: 3;
background: rgba(0, 0, 0, 0.3);
border-radius: 10px;
overflow: hidden;
}

.info-table th {

padding: 14px 10px;
font-size: 15px;
color: #000;
border: none;
font-weight: 700;
letter-spacing: 0.8px;
text-transform: uppercase;
}

.info-table td {
padding: 12px;
border-bottom: 1px solid rgb(131, 255, 0);
text-align: left;
}

.info-table tr:last-child td {
border-bottom: none;
}

.popup-footer {
font-size: 13px;
color: #ccc;
padding: 20px 10px;
position: relative;
z-index: 3;
line-height: 1.6;
font-family: 'Playfair Display', serif;
}

@keyframes rotateScaleIn {
0% {
opacity: 0;
transform: scale(0.3) rotate(-10deg);
}
50% {
transform: scale(1.05) rotate(2deg);
}
100% {
opacity: 1;
transform: scale(1) rotate(0deg);
}
}

/* Efek partikel emas */
.blue-animated {
position: absolute;

border-radius: 50%;
pointer-events: none;
z-index: 1;
animation: bluegif 10s infinite ease-in-out;
}

@keyframes bluegif {
0%, 100% {
transform: translateY(0) translateX(0);
opacity: 0;
}
10% {
opacity: 0.8;
}
90% {
opacity: 0.8;
}
100% {
transform: translateY(-120px) translateX(40px);
opacity: 0;
}
}

/* Efek border emas mewah */
.modal-theme {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid rgba(140, 0, 255, 0.2);
border-radius: 20px;
pointer-events: none;
z-index: 4;

}

/* Tombol Close */
.close-btn {
position: absolute;
top: 15px;
right: 15px;
width: 32px;
height: 32px;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease;
border: 1px solid rgb(131, 255, 0);
}

.close-btn:hover {
background: rgb(230, 194, 0);
transform: rotate(90deg);
}

.close-btn::before,
.close-btn::after {
content: '';
position: absolute;
width: 16px;
height: 2px;
background: #fff;
}

.close-btn::before {
transform: rotate(45deg);
}

.close-btn::after {
transform: rotate(-45deg);
}

/* Responsif untuk layar kecil */
@media (max-width: 480px) {
.popup-container {
width: 95%;
max-width: 350px;
}

.popup-buttons a {
font-size: 14px;
padding: 16px 0;
}

.info-table {
font-size: 13px;
}

.popup-footer {
font-size: 12px;
}

.close-btn {
width: 28px;
height: 28px;
}
}
 