/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&family=JetBrains+Mono:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Profile Frame dengan efek glow dan animasi warna bergerak */
.profile-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.profile-frame {
    position: relative;
    width: 100px;
    height: 100px;
}

.receipt-stroke-outer {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DC2626 0%, #1A1A1A 50%, #DC2626 100%);
    background-size: 200% 200%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
    animation: colorMove 3s ease infinite, glowPulse 2s ease-in-out infinite;
}

.receipt-stroke-inner {
    position: absolute;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #FFFFFF;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.profile-image-wrapper {
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 4;
    background: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Animasi warna bergerak (gradient berputar) */
@keyframes colorMove {
    0% {
        background: linear-gradient(135deg, #DC2626 0%, #1A1A1A 50%, #DC2626 100%);
        background-size: 200% 200%;
        background-position: 0% 0%;
    }
    50% {
        background: linear-gradient(135deg, #1A1A1A 0%, #DC2626 50%, #1A1A1A 100%);
        background-size: 200% 200%;
        background-position: 100% 100%;
    }
    100% {
        background: linear-gradient(135deg, #DC2626 0%, #1A1A1A 50%, #DC2626 100%);
        background-size: 200% 200%;
        background-position: 0% 0%;
    }
}

/* Animasi glow berkedip */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(220, 38, 38, 1);
    }
    100% {
        box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
    }
}

/* Hover makin kenceng */
.profile-frame:hover .receipt-stroke-outer {
    animation: colorMove 1s ease infinite, glowPulse 0.8s ease-in-out infinite;
}

@media (max-width: 640px) {
    .profile-frame {
        width: 80px;
        height: 80px;
    }
    
    .receipt-stroke-outer {
        width: 90px;
        height: 90px;
    }
    
    .receipt-stroke-inner {
        width: 84px;
        height: 84px;
        border-width: 1px;
    }
    
    .profile-image-wrapper {
        width: 74px;
        height: 74px;
    }
}


body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

.bg-shape {
    position: fixed;
    z-index: -2;
    border-radius: 50%;
    opacity: 0.04;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #dc2626;
    top: -100px;
    right: -120px;
    filter: blur(80px);
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #dc2626;
    bottom: -150px;
    left: -150px;
    filter: blur(100px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.7s ease-out;
}

.brand-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.brand-icon:hover {
    transform: scale(1.03);
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1f1f1f;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1f1f1f 0%, #dc2626 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.tagline {
    font-size: 1rem;
    font-weight: 500;
    color: #dc2626;
    background: #fef2f2;
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.header-divider {
    width: 70px;
    height: 3px;
    background: #dc2626;
    margin: 1rem auto;
    border-radius: 4px;
}

.description {
    max-width: 680px;
    margin: 0 auto;
    color: #2c2c2c;
    font-size: 1rem;
    font-weight: 400;
    background: #fefaf7;
    padding: 1rem 1.5rem;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    line-height: 1.6;
    border: 1px solid #fee2e2;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: #111;
    border-left: 5px solid #dc2626;
    padding-left: 1rem;
    letter-spacing: -0.3px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.payment-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
    padding: 1.5rem 1.2rem;
    transition: all 0.25s ease;
    border: 1px solid #fee2e2;
}

.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(220, 38, 38, 0.12);
    border-color: #fecaca;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed #fee2e2;
    padding-bottom: 0.75rem;
}

.card-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f1f1f;
    letter-spacing: -0.2px;
}

.qris-wrapper {
    display: flex;
    justify-content: center;
    margin: 1rem 0 1.2rem;
}

.qris-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.2s ease;
    background: #fefaf7;
    padding: 0.5rem;
}

.qris-image:hover {
    transform: scale(1.02);
}

.zoom-qris-btn {
    width: 100%;
    background: #dc2626;
    border: none;
    padding: 0.85rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
}

.zoom-qris-btn:hover {
    background: #b91c1c;
    transform: scale(0.98);
    box-shadow: 0 6px 14px rgba(220, 38, 38, 0.3);
}

.copy-btn {
    width: 100%;
    background: #dc2626;
    border: none;
    padding: 0.85rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
}

.copy-btn:hover {
    background: #b91c1c;
    transform: scale(0.98);
    box-shadow: 0 6px 14px rgba(220, 38, 38, 0.3);
}

.ewallet-numbers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 1.2rem;
    background: #fefaf7;
    padding: 1rem;
    border-radius: 24px;
}

.ewallet-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #fee2e2;
    flex-wrap: wrap;
}

.ewallet-name {
    font-weight: 700;
    color: #222;
    font-size: 1rem;
    min-width: 85px;
    letter-spacing: -0.2px;
}

.ewallet-number-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 0.4rem 1rem;
    border-radius: 48px;
    cursor: pointer;
    border: 1px solid #fee2e2;
    transition: background 0.2s;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ewallet-number-group:hover {
    background: #fef2f2;
}

.ewallet-num {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.ewallet-owner {
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 500;
    background: #fef2f2;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 1.2rem;
    background: #fefaf7;
    padding: 1rem;
    border-radius: 24px;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
    border-bottom: 1px solid #fee2e2;
    gap: 10px;
}

.bank-name {
    font-weight: 700;
    color: #222;
    font-size: 1rem;
    min-width: 100px;
}

.account-number-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 0.4rem 1rem;
    border-radius: 48px;
    cursor: pointer;
    border: 1px solid #fee2e2;
    transition: background 0.2s;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.account-number-group:hover {
    background: #fef2f2;
}

.account-num {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.account-owner {
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 500;
    background: #fef2f2;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.copy-icon-small {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.account-number-group:hover .copy-icon-small,
.ewallet-number-group:hover .copy-icon-small {
    opacity: 1;
}

.info-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    padding: 0.7rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #991b1b;
    font-weight: 500;
}

.info-rules {
    margin: 2rem 0 1.5rem;
}

.rules-card {
    background: #fef2f2;
    border-radius: 24px;
    padding: 1.2rem;
    border-left: 4px solid #dc2626;
}

.rules-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.rules-title {
    font-weight: 700;
    font-size: 1rem;
    color: #dc2626;
    letter-spacing: -0.2px;
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.rules-content p {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
}

.rules-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

.info-extra {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.4rem;
    margin: 1.5rem 0 1.5rem;
    background: #ffffff;
    border-radius: 2rem;
    padding: 1.4rem;
    border: 1px solid #fee2e2;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.trust-text strong {
    display: block;
    color: #dc2626;
    font-size: 1rem;
    font-weight: 700;
}

.trust-text span {
    font-size: 0.85rem;
    color: #3c3c3c;
    font-weight: 400;
}

.contact-support {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 2;
    background: #fef2f2;
    padding: 0.8rem 1rem;
    border-radius: 28px;
}

.contact-support p {
    font-size: 0.85rem;
    color: #2c2c2c;
    font-weight: 450;
    line-height: 1.5;
}

.footer {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem 0 0;
    border-top: 1px solid #fee2e2;
    font-size: 0.8rem;
    color: #606060;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 500;
}

.toast {
    visibility: hidden;
    min-width: 240px;
    background-color: #1f1f1f;
    color: #ffffff;
    text-align: center;
    border-radius: 40px;
    padding: 12px 24px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.85);
    transition: visibility 0.2s, opacity 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateX(30px);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: 'Inter', sans-serif;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: transparent;
    border-radius: 24px;
    cursor: default;
}

.modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 20px;
    background: white;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    opacity: 0.7;
    background: rgba(0,0,0,0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 1.2rem 1rem 2rem;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .card-header h3 {
        font-size: 1.15rem;
    }
    
    .payment-card {
        padding: 1.2rem;
    }
    
    .info-extra {
        flex-direction: column;
    }
    
    .trust-badge, .contact-support {
        justify-content: flex-start;
    }
    
    .bank-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .account-number-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .ewallet-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ewallet-number-group {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .qris-image {
        width: 140px;
        height: 140px;
    }
    
    .toast {
        top: 20px;
        right: 20px;
        left: auto;
        transform: translateX(30px);
        min-width: 200px;
    }
    
    .toast.show {
        transform: translateX(0);
    }
    
    .bank-name, .ewallet-name {
        font-size: 0.9rem;
    }
    
    .account-num, .ewallet-num {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .payment-card {
        padding: 1.8rem;
    }
}
