@font-face {
    font-family: 'Google Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Google Sans'), local('GoogleSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v5/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}
@font-face {
    font-family: 'Google Sans';
    font-style: normal;
    font-weight: 500;
    src: local('Google Sans Medium'), local('GoogleSans-Medium'), url(https://fonts.gstatic.com/s/productsans/v5/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}
@font-face {
    font-family: 'Google Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Google Sans Bold'), local('GoogleSans-Bold'), url(https://fonts.gstatic.com/s/productsans/v5/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}

/* Material Design 3 Tokens */
:root {
    /* Primary Colors (Blue based) */
    --md-sys-color-primary: #0b57d0;
    --md-sys-color-on-primary: #ffffff;
    --md-sys-color-primary-container: #d3e3fd;
    --md-sys-color-on-primary-container: #041e49;

    /* Secondary Colors */
    --md-sys-color-secondary: #5e5e5e;
    --md-sys-color-on-secondary: #ffffff;
    --md-sys-color-secondary-container: #e3e3e3;
    --md-sys-color-on-secondary-container: #1e1e1e;

    /* Surface Colors */
    --md-sys-color-background: #fdfcff;
    --md-sys-color-on-background: #1a1c1e;
    --md-sys-color-surface: #fdfcff;
    --md-sys-color-on-surface: #1a1c1e;
    --md-sys-color-surface-variant: #e1e2e8;
    --md-sys-color-on-surface-variant: #44474e;
    --md-sys-color-surface-container-low: #f3f3fa;
    --md-sys-color-surface-container: #ededf4;
    
    /* Outline */
    --md-sys-color-outline: #74777f;
    --md-sys-color-outline-variant: #c4c6d0;

    /* Typography */
    --md-sys-typescale-font-family: 'Google Sans', 'Product Sans', 'Outfit', sans-serif;
    
    /* Shapes */
    --md-sys-shape-corner-small: 8px;
    --md-sys-shape-corner-medium: 16px;
    --md-sys-shape-corner-large: 24px;
    --md-sys-shape-corner-extra-large: 32px;
    --md-sys-shape-corner-full: 9999px;

    /* Elevation */
    --md-sys-elevation-1: 0px 1px 2px 0px rgba(0,0,0,0.3), 0px 1px 3px 1px rgba(0,0,0,0.15);
    --md-sys-elevation-2: 0px 1px 2px 0px rgba(0,0,0,0.3), 0px 2px 6px 2px rgba(0,0,0,0.15);
    --md-sys-elevation-3: 0px 1px 3px 0px rgba(0,0,0,0.3), 0px 4px 8px 3px rgba(0,0,0,0.15);

    /* Transitions */
    --md-sys-motion-easing-emphasized: cubic-bezier(0.2, 0.0, 0, 1.0);
    --md-sys-motion-duration-medium: 250ms;
}

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

body {
    font-family: var(--md-sys-typescale-font-family);
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-on-background);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Base Styles */
a {
    text-decoration: none;
    color: var(--md-sys-color-primary);
}

.text-center {
    text-align: center;
}

/* Components: App Bar */
.md-app-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 252, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--md-sys-color-surface-variant);
    z-index: 1000;
    transition: background-color var(--md-sys-motion-duration-medium);
}

.md-app-bar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.md-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--md-sys-color-on-surface);
}

.md-nav {
    display: flex;
    gap: 24px;
}

.md-nav-link {
    color: var(--md-sys-color-on-surface-variant);
    font-weight: 500;
    transition: color 0.2s;
}

.md-nav-link:hover {
    color: var(--md-sys-color-primary);
}

@media (max-width: 768px) {
    .md-nav {
        display: none; /* Hide on mobile for simplicity, could add drawer later */
    }
    .md-nav-cta {
        display: none;
    }
}

/* Components: Buttons */
.md-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 24px;
    border-radius: var(--md-sys-shape-corner-full);
    font-family: var(--md-sys-typescale-font-family);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--md-sys-motion-duration-medium) var(--md-sys-motion-easing-emphasized);
    border: none;
    outline: none;
}

.md-button--large {
    height: 56px;
    padding: 0 32px;
    font-size: 1rem;
}

.md-button--filled {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
}

.md-button--filled:hover {
    background-color: #0a4ebd;
    box-shadow: var(--md-sys-elevation-1);
}

.md-button--outlined {
    background-color: transparent;
    color: var(--md-sys-color-primary);
    border: 1px solid var(--md-sys-color-outline);
}

.md-button--outlined:hover {
    background-color: var(--md-sys-color-surface-variant);
    border-color: var(--md-sys-color-primary);
}

.md-button__icon {
    font-size: 1.125rem;
}

/* Layout: Sections */
.section {
    padding: 80px 24px;
}

.section--tonal {
    background-color: var(--md-sys-color-surface-container-low);
}

.section--primary {
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
    color: var(--md-sys-color-on-surface);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 24px 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e8f0fe, #fce8e6);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    text-align: center;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--md-sys-color-on-surface);
    letter-spacing: -0.02em;
}

.hero-supporting-text {
    font-size: 1.25rem;
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-deco {
    position: absolute;
    border-radius: var(--md-sys-shape-corner-full);
    z-index: 1;
    opacity: 0.5;
}

.hero-deco-1 {
    width: 400px;
    height: 400px;
    background-color: #a8c7fa;
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.hero-deco-2 {
    width: 300px;
    height: 300px;
    background-color: #c2e7ff;
    bottom: -50px;
    left: -50px;
    filter: blur(60px);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    .hero-section {
        padding-top: 120px;
    }
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.md-card {
    display: flex;
    flex-direction: column;
    background-color: var(--md-sys-color-surface);
    border-radius: var(--md-sys-shape-corner-medium);
    border: 1px solid var(--md-sys-color-surface-variant);
    overflow: hidden;
    transition: transform var(--md-sys-motion-duration-medium), box-shadow var(--md-sys-motion-duration-medium);
}

.md-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-sys-elevation-2);
}

.md-card__media {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Custom Backgrounds for products */
.bg-netflix { background: linear-gradient(135deg, #e50914, #831010); }
.bg-spotify { background: linear-gradient(135deg, #1db954, #127533); }
.bg-canva { background: linear-gradient(135deg, #00c4cc, #7d2ae8); }
.bg-youtube { background: linear-gradient(135deg, #ff0000, #990000); }

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.md-card__content {
    padding: 16px;
    flex-grow: 1;
}

.md-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--md-sys-color-on-surface);
}

.md-card__supporting-text {
    font-size: 0.875rem;
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 16px;
}

.md-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--md-sys-color-primary);
}

.md-card__actions {
    padding: 8px 16px 16px;
}
.md-card__actions .md-button {
    width: 100%;
}

/* Steps grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 24px;
    background-color: var(--md-sys-color-surface);
    border-radius: var(--md-sys-shape-corner-extra-large);
    box-shadow: var(--md-sys-elevation-1);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background-color: var(--md-sys-color-primary-container);
    color: var(--md-sys-color-on-primary-container);
    border-radius: var(--md-sys-shape-corner-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon span {
    font-size: 32px;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--md-sys-color-on-surface-variant);
}

/* Guarantee Section */
.guarantee-card {
    display: flex;
    background-color: var(--md-sys-color-primary-container);
    border-radius: var(--md-sys-shape-corner-extra-large);
    overflow: hidden;
    flex-wrap: wrap;
}

.guarantee-content {
    flex: 1 1 300px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.guarantee-desc {
    color: var(--md-sys-color-on-primary-container);
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.guarantee-features {
    flex: 1 1 400px;
    background-color: var(--md-sys-color-surface);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.g-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.g-feature span {
    color: var(--md-sys-color-primary);
    font-size: 32px;
    background-color: var(--md-sys-color-surface-container);
    padding: 12px;
    border-radius: var(--md-sys-shape-corner-full);
}

.g-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.g-feature p {
    font-size: 0.875rem;
    color: var(--md-sys-color-on-surface-variant);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--md-sys-color-surface);
    border-radius: var(--md-sys-shape-corner-medium);
    border: 1px solid var(--md-sys-color-surface-variant);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--md-sys-color-on-surface);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--md-sys-color-on-surface-variant);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px; /* arbitrary max height for animation */
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-item.active {
    background-color: var(--md-sys-color-surface-container-low);
    border-color: transparent;
}

/* Footer */
.md-footer {
    padding: 48px 24px;
    background-color: var(--md-sys-color-surface-container);
    border-top: 1px solid var(--md-sys-color-surface-variant);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--md-sys-color-on-surface);
}

.footer-text {
    color: var(--md-sys-color-on-surface-variant);
    font-size: 0.875rem;
}

/* FAB WhatsApp */
.fab-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: var(--md-sys-shape-corner-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--md-sys-elevation-3);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-wa:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .fab-wa {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
    }
    .fab-wa svg {
        width: 28px;
        height: 28px;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: var(--md-sys-color-surface);
    padding: 32px;
    border-radius: var(--md-sys-shape-corner-extra-large);
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Mobile Navigation Styles */
.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--md-sys-color-on-surface);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--md-sys-shape-corner-full);
}

.menu-toggle:hover {
    background-color: var(--md-sys-color-surface-variant);
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: var(--md-sys-color-surface);
    z-index: 1002;
    box-shadow: var(--md-sys-elevation-3);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}
.mobile-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--md-sys-color-surface-variant);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 8px;
}

.drawer-link {
    padding: 16px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--md-sys-color-on-surface);
    border-radius: var(--md-sys-shape-corner-medium);
    transition: background-color 0.2s;
}

.drawer-link:hover {
    background-color: var(--md-sys-color-surface-variant);
    color: var(--md-sys-color-primary);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex;
    }
    
    /* Tweaks for mobile */
    .section {
        padding: 60px 16px;
    }
    .hero-section {
        padding: 120px 16px 80px;
    }
    .hero-headline {
        font-size: 2.25rem;
    }
    .hero-supporting-text {
        font-size: 1rem;
    }
    .guarantee-content, .guarantee-features {
        padding: 24px;
        flex: 1 1 100%;
    }
    .md-card__media {
        height: 120px;
    }
}

/* ══════════════════════════════════════════════════════════════
   PAYMENT MODAL (Pakasir Integration)
══════════════════════════════════════════════════════════════ */

.payment-modal-card {
    max-width: 480px;
    width: 92%;
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 24px 0;
}

.payment-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 2px;
}

.payment-modal-subtitle {
    font-size: 0.8rem;
    color: var(--md-sys-color-on-surface-variant);
}

.modal-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--md-sys-color-on-surface-variant);
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.modal-close-btn:hover {
    background-color: var(--md-sys-color-surface-variant);
}

.payment-info-row {
    display: flex;
    justify-content: space-between;
    background: var(--md-sys-color-surface-container-low);
    margin: 16px 24px;
    padding: 14px 16px;
    border-radius: var(--md-sys-shape-corner-medium);
    gap: 8px;
}

.payment-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.payment-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--md-sys-color-on-surface-variant);
    font-weight: 500;
}

.payment-info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-amount {
    color: var(--md-sys-color-primary) !important;
    font-size: 1rem !important;
}

.payment-countdown {
    font-family: monospace;
    font-size: 1.1rem !important;
    color: #d93025 !important;
    letter-spacing: 0.05em;
}

.payment-tabs {
    display: flex;
    gap: 8px;
    padding: 0 24px 12px;
}

.payment-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: var(--md-sys-shape-corner-medium);
    border: 1.5px solid var(--md-sys-color-outline-variant);
    background: transparent;
    cursor: pointer;
    font-family: var(--md-sys-typescale-font-family);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--md-sys-color-on-surface-variant);
    transition: all 0.2s;
}

.payment-tab .material-symbols-rounded {
    font-size: 18px;
}

.payment-tab:hover {
    background: var(--md-sys-color-surface-container);
    border-color: var(--md-sys-color-primary);
}

.payment-tab.active {
    background: var(--md-sys-color-primary-container);
    border-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary-container);
}

.payment-method-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 8px;
}

.payment-hint {
    font-size: 0.8rem;
    color: var(--md-sys-color-on-surface-variant);
    text-align: center;
    margin-bottom: 12px;
}

.qris-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid var(--md-sys-color-outline-variant);
    border-radius: var(--md-sys-shape-corner-large);
    padding: 16px;
    width: 100%;
    max-width: 270px;
}

.qris-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.qris-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--md-sys-color-on-surface-variant);
    text-align: center;
}

.qris-brand .material-symbols-rounded {
    font-size: 16px;
    color: var(--md-sys-color-primary);
}

.va-wrapper {
    background: var(--md-sys-color-surface-container);
    border-radius: var(--md-sys-shape-corner-large);
    padding: 24px;
    width: 100%;
    text-align: center;
}

.va-bank-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--md-sys-color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.va-number-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    border-radius: var(--md-sys-shape-corner-medium);
    padding: 14px 20px;
    border: 1.5px dashed var(--md-sys-color-outline-variant);
}

.va-number {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 0.12em;
    color: var(--md-sys-color-on-surface);
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--md-sys-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.copy-btn:hover {
    background-color: var(--md-sys-color-primary-container);
}

.copy-btn .material-symbols-rounded {
    font-size: 18px;
}

.payment-order-id {
    padding: 8px 24px;
    font-size: 0.72rem;
    color: var(--md-sys-color-on-surface-variant);
    text-align: center;
}

.payment-order-id code {
    font-family: monospace;
    background: var(--md-sys-color-surface-container);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.72rem;
}

.sandbox-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    color: #7c4f00;
    background: #fef7e0;
    border: 1px solid #f9c84a;
    padding: 6px 16px;
    margin: 8px 24px 0;
    border-radius: var(--md-sys-shape-corner-medium);
    font-weight: 500;
}

.btn-simulate {
    width: calc(100% - 48px);
    margin: 10px 24px 20px;
    background: linear-gradient(135deg, #1e7e34, #28a745) !important;
    justify-content: center;
}

.btn-simulate:hover {
    background: linear-gradient(135deg, #155724, #1e7e34) !important;
}

/* ══════════════════════════════════════════════════════════════
   SUCCESS MODAL (Improved)
══════════════════════════════════════════════════════════════ */

.success-icon-wrapper {
    margin-bottom: 12px;
}

.success-icon {
    font-size: 64px;
    color: #1e7e34;
    font-variation-settings: 'FILL' 1;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.account-details {
    background: var(--md-sys-color-surface-container);
    border-radius: var(--md-sys-shape-corner-medium);
    padding: 4px 0;
    margin: 16px 0;
    text-align: left;
}

.account-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--md-sys-color-outline-variant);
}

.account-detail-row:last-child {
    border-bottom: none;
}

.account-detail-row > div {
    flex: 1;
    min-width: 0;
}

.account-detail-label {
    font-size: 0.72rem;
    color: var(--md-sys-color-on-surface-variant);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.account-detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: monospace;
    color: var(--md-sys-color-on-surface);
    word-break: break-all;
}

.success-note {
    font-size: 0.8rem;
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 20px;
}
