* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #004E98 0%, #FF6B00 100%);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
}

.container {
    max-width: 420px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.6s ease-out;
    color: #2c3e50;
}

@keyframes slideUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 20px;
}

.company-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.logo-inner {
    width: 60px;
    height: 60px;
    border: 3px solid #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bulb-icon {
    font-size: 24px;
    color: #27ae60;
}

.wifi-icon {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.brand-new-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.subtitle {
    color: rgba(44, 62, 80, 0.7);
    font-size: 14px;
    margin-bottom: 32px;
    font-weight: 400;
}
.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(44, 62, 80, 0.5);
    z-index: 1;
}

input[type="text"] {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: 16px;
    font-size: 16px;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: inherit;
}

input[type="text"]::placeholder {
    color: rgba(44, 62, 80, 0.5);
}

input[type="text"]:focus {
    outline: none;
    border-color: #27ae60;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
}

.connect-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s 
ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}
.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(39, 174, 96, 0.4);
}

.connect-btn:active {
    transform: translateY(0);
}

.divider {
    display: flex;
    align-items: center;
    margin: 32px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(44, 62, 80, 0.2);
}

.divider span {
    padding: 0 16px;
    color: rgba(44, 62, 80, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.payment-info {
    color: rgba(44, 62, 80, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.packages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.package {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 62, 80, 0.1);
    position: relative; /* For positioning the discount badge */
}

.package:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.package-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.package-duration {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.package-price {
    color: #27ae60;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    position: relative; /* For badge positioning */
}

.package-price .original {
    text-decoration: line-through;
    color: #bdc3c7; /* Faint gray */
    font-size: 10px; /* Very small */
    font-weight: 400;
    opacity: 0.8;
    margin-right: 8px;
    display: inline-block;
}

.package-price .discounted {
    color: #e67e22; /* Orange like Amazon */
    font-weight: 800; /* Extra bold */
    font-size: 18px; /* Larger for emphasis */
    display: inline-block;
}

.buy-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 78, 152, 0.4);
    box-shadow: 0 8px 16px rgba(39, 174, 96, 0.4);
}

.buy-btn.discount-active {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.buy-btn.discount-active:hover {
    box-shadow: 0 8px 16px rgba(230, 126, 34, 0.4);
}

.footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

/* ... existing styles ... */

.text-center {
    text-align: center;
}

.discount-banner {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.discount-banner h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.discount-banner p {
    font-size: 12px;
    opacity: 0.9;
}

.discount-badge {
    position: absolute;
    top: -40px;
    right: -40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b); /* Red gradient for tag */
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.5);
    z-index: 3;
    transform: rotate(-8deg); /* More tilt for dynamic effect */
    border: 2px solid #fff;
}

@media (max-width: 480px) {
    .container {
    margin: 0 5px;
    }
    /* ... existing styles ... */
}
