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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 0;
}

/* Status Bar */
.status-bar {
    background: #000;
    color: white;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.container {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    min-height: calc(100vh - 40px);
}

/* Discount Banner */
.discount-banner {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #00CED1;
    margin-bottom: 20px;
}

.banner-content h1 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    z-index: 2;
    position: relative;
}

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

.banner-decoration.left {
    left: 15px;
}

.banner-decoration.right {
    right: 15px;
}

.kite {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #FF69B4, #FF1493);
    transform: rotate(45deg);
    border-radius: 0 50% 0 50%;
    position: relative;
}

.kite::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #333;
}

/* Countdown */
.countdown-section {
    text-align: center;
    margin: 20px 0;
}

.countdown-text {
    font-size: 16px;
    color: #333;
}

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

/* PhonePe Promo */
.phonepe-promo {
    background: linear-gradient(90deg, #5f2c82, #49a09d);
    color: white;
    padding: 12px 20px;
    margin: 0 20px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

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

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

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

.payment-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.payment-option.selected {
    border-color: #007bff;
    background: #f8f9ff;
}

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

/* PhonePe Icon */
.phonepe-icon {
    background: #5f2c82;
    color: white;
    font-size: 18px;
}

/* Paytm Icon */
.paytm-icon {
    background: #00BAF2;
    position: relative;
}

.paytm-circle {
    width: 24px;
    height: 24px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.paytm-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Google Pay Icon */
.googlepay-icon {
    background: white;
    position: relative;
    overflow: hidden;
}

.gp-shape {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.gp-blue { background: #4285F4; top: 8px; left: 8px; }
.gp-red { background: #EA4335; top: 8px; right: 8px; }
.gp-yellow { background: #FBBC04; bottom: 8px; left: 8px; }
.gp-green { background: #34A853; bottom: 8px; right: 8px; }

/* ALL UPI Icon */
.allupi-icon {
    background: white;
    border: 2px solid #dc3545;
    flex-direction: column;
    padding: 2px;
}

.pay-text {
    color: #dc3545;
    font-size: 8px;
    font-weight: bold;
    line-height: 1;
}

.zapp-text {
    color: #007bff;
    font-size: 8px;
    font-weight: bold;
    line-height: 1;
}

/* UPI Icon */
.upi-icon {
    background: #FF6B35;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

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

/* Price Section */
.price-section {
    margin: 30px 20px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

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

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row.total {
    padding-top: 16px;
    border-top: 2px solid #e0e0e0;
    font-weight: bold;
}

.price-label {
    color: #666;
    font-size: 16px;
}

.price-value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.price-value.free {
    color: #28a745;
    font-weight: bold;
}

/* Payment Footer */
.payment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.final-amount {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

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

.pay-button {
    background: #FFD700;
    color: #333;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.pay-button:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

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

/* Responsive Design */
@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 16px;
    }
    
    .payment-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .pay-button {
        width: 100%;
    }
}

/* Animation for banner decoration */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-10px) rotate(45deg); }
}

.kite {
    animation: float 3s ease-in-out infinite;
}

.banner-decoration.right .kite {
    animation-delay: 1.5s;
}