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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
}

/* Header Banner */
.header-banner {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 2px;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #00CED1 0px,
        #00CED1 15px,
        #20B2AA 15px,
        #20B2AA 30px
    );
    border-radius: 10px 10px 0 0;
}

.banner-decoration {
    position: absolute;
    top: 20px;
}

.banner-decoration.left {
    left: 10px;
    transform: rotate(-15deg);
}

.banner-decoration.right {
    right: 10px;
    transform: rotate(15deg);
}

.flag-pole {
    width: 3px;
    height: 40px;
    background: #8B4513;
    margin: 0 auto;
}

.banner-flag {
    width: 40px;
    height: 30px;
    background: linear-gradient(45deg, #FF1493, #FF69B4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

.star {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.banner-content {
    text-align: center;
    z-index: 2;
}

.banner-content h1 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.banner-content h2 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.discount {
    color: #FF0000;
    font-weight: bold;
    font-size: 24px;
}

.upi-text {
    color: #4B0082;
    font-weight: bold;
}

/* Timer Section */
.timer-section {
    background-color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.timer {
    color: #FF6B35;
    font-weight: bold;
}

/* PhonePe Banner */
.phonepe-banner {
    background: linear-gradient(135deg, #5f3dc4, #7c4dff);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(95, 61, 196, 0.3);
}

.phonepe-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 16px;
}

.phonepe-icon {
    width: 24px;
    height: 24px;
    background: white;
    color: #5f3dc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.phonepe-text {
    font-size: 14px;
}

/* Payment Methods */
.payment-methods {
    padding: 0 20px;
    margin-bottom: 20px;
}

.payment-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #5f3dc4;
    box-shadow: 0 2px 8px rgba(95, 61, 196, 0.1);
}

.payment-option.highlighted {
    border-color: #5f3dc4;
    background: #f8f7ff;
}

.payment-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.phonepe-logo-small {
    background: #5f3dc4;
}

.phonepe-icon-small {
    width: 24px;
    height: 24px;
    background: white;
    color: #5f3dc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.paytm-logo {
    background: #00BAF2;
    border-radius: 50%;
}

.paytm-text {
    color: white;
    font-weight: bold;
    font-size: 8px;
    text-align: center;
    line-height: 1;
}

.google-pay-logo {
    background: #4285f4;
    border-radius: 8px;
}

.google-g {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.payzapp-logo {
    background: #FF0000;
    color: white;
}

.payzapp-text {
    font-size: 7px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.upi-logo {
    background: #FF6B35;
    color: white;
}

.upi-text-logo {
    font-size: 12px;
    font-weight: bold;
}

.payment-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Price Details */
.price-details {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-details h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.price-row.total {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-weight: bold;
    font-size: 16px;
}

.free {
    color: #4CAF50;
    font-weight: bold;
}

/* Final Section */
.final-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    margin-bottom: 5px;
}

.final-price {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.pay-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
}

.pay-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    
    .banner-content h1 {
        font-size: 18px;
    }
    
    .banner-content h2 {
        font-size: 20px;
    }
    
    .final-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .pay-button {
        width: 100%;
    }
}