@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Roboto+Mono:wght@300;400;500&family=Zen+Kurenaido:wght@400&display=swap");

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

:root {
    --primary-color: #ff004f;
    --dark-color: #1c1e36;
    --bg-color: #fff;
}

body {
    font-family: "Roboto Mono", monospace;
    background-color: var(--bg-color);
    color: var(--dark-color);
    line-height: 1.6;
}

p {
    margin: 20px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo-container {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
}

.logo-placeholder {
    font-family: "Zen Kurenaido", serif;
    width: 120px;
    height: 60px;
    /* background-color: var(--primary-color); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 6rem;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0 40px;
}

.main-title {
    font-family: "Lora", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.rotating-text-container {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.text-item {
    background-color: var(--bg-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: inline-block;
}

.text-item.active {
    opacity: 1;
    transform: translateY(0);
}

.description {
    font-size: 1.1rem;
    color: var(--dark-color);
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 300;
}

/* CTA Button */
.cta-section {
    text-align: center;
    margin: 60px 0;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: "Roboto Mono", monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 15, 48, 0.3);
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.7;
}

/* Sections */
.sections {
    padding: 60px 0;
}

.section {
    margin: 30px 0;
    text-align: center;
}

.section-icon {
    width: 40px;
    height: 40px;
    background-color: var(--dark-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.section-title {
    font-family: "Lora", serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-text {
    font-size: 1rem;
    color: var(--dark-color);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    /* text-align: left; */
}
/* Mobile Payment Confirmation */
.payment-confirmation {
    padding: 60px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.smartphone-mockup {
    display: inline-block;
    position: relative;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 2px #333,
        inset 0 0 0 1px #666;
    position: relative;
    margin: 0 auto;
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #666;
    border-radius: 2px;
}

.phone-frame::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: #666;
    border-radius: 2px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.time {
    font-weight: 600;
}

.battery {
    width: 24px;
    height: 12px;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
    position: relative;
}

.battery::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 3px;
    width: 1px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: 80%;
    height: 100%;
    background: #00c851;
    border-radius: 1px;
}

.payment-interface {
    padding: 40px 30px 30px;
    text-align: center;
    height: calc(100% - 44px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.success-icon {
    margin: 0 auto 20px;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.payment-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: "Lora", serif;
}

.payment-details {
    margin-bottom: 30px;
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: "Roboto Mono", monospace;
}

.description {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.transaction-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.info-row .label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-row .value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.tracking-code {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 25px;
}

.tracking-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tracking-number {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: "Roboto Mono", monospace;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Roboto Mono", monospace;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #e6003d;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive for mobile payment confirmation */
@media (max-width: 768px) {
    .phone-frame {
        width: 280px;
        height: 560px;
        padding: 16px;
    }

    .payment-interface {
        padding: 30px 20px 20px;
    }

    .payment-title {
        font-size: 20px;
    }

    .amount {
        font-size: 30px;
    }

    .transaction-info {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 260px;
        height: 520px;
        padding: 14px;
    }

    .payment-interface {
        padding: 25px 16px 16px;
    }

    .payment-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .amount {
        font-size: 28px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }
}

/* Footer */

.footer-content {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 0px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .text-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.container {
    padding: 0 15px;
}
@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .rotating-text-container {
        min-height: 60px;
    }

    .cta-button {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}
