@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7ff;
    color: #222;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== DOT PATTERN BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, #c8d5ff 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* ===== DECORATIVE BLOBS ===== */
.blob {
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.blob-tl {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #2a50d8 0%, #1a3ab8 100%);
    top: -80px;
    left: -80px;
    opacity: 0.9;
}

.blob-br {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #2a50d8 0%, #1a3ab8 100%);
    bottom: -60px;
    right: -60px;
    opacity: 0.9;
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

/* ===== TOP CORNER RIBBON ===== */
.ribbon-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    z-index: 50;
}

.ribbon-wrap .ribbon {
    position: absolute;
    top: 22px;
    right: -32px;
    width: 160px;
    background: linear-gradient(135deg, #e8131c, #c00);
    color: white;
    text-align: center;
    padding: 10px 0;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 11px;
    line-height: 1.4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== HEADER / LOGO AREA ===== */
.header {
    text-align: center;
    padding: 45px 20px 10px 20px;
}

.logo-vuta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-vuta .vuta-text {
    font-size: 28px;
    font-weight: 900;
    color: #ff7b00;
    letter-spacing: 1px;
    display: block;
    line-height: 0.8;
}

.logo-vuta .wifi-row {
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.logo-vuta .wifi-text {
    font-size: 68px;
    font-weight: 900;
    color: #4169ed;
    line-height: 0.9;
    letter-spacing: -3px;
}

.logo-vuta .stylized-i {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: -4px;
}

.logo-vuta .wifi-waves {
    color: #4169ed;
    font-size: 24px;
    margin-bottom: -12px;
    position: relative;
    z-index: 2;
}

.logo-vuta .i-body {
    font-size: 68px;
    font-weight: 900;
    color: #4169ed;
    line-height: 0.9;
}

.logo-vuta .runner-icon {
    color: #ff7b00;
    font-size: 54px;
    margin-left: 5px;
    margin-bottom: 2px;
    transform: scaleX(-1);
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #ff7b00;
    margin: 15px 0 30px 0;
    letter-spacing: 0.3px;
}

/* ===== PACKAGES GRID (Pyramid Layout) ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px 5px;
    padding: 0 10px;
    max-width: 400px;
    margin: 0 auto 30px auto;
}

/* Row 1: 3 items */
.pkg-card:nth-child(1),
.pkg-card:nth-child(2),
.pkg-card:nth-child(3) {
    grid-column: span 2;
}

/* Row 2: 2 items (centered) */
.pkg-card:nth-child(4) {
    grid-column: 2 / span 2;
    /* Offset by 1 to center 2 items in 6 columns */
}

.pkg-card:nth-child(5) {
    grid-column: span 2;
}

/* Row 3: 1 large item (centered) */
.pkg-card.monthly {
    grid-column: 1 / span 6;
    margin-top: 10px;
    justify-self: center;
}

/* Individual card base */
.pkg-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    /* Take up grid space */
}

.pkg-card:hover {
    transform: translateY(-6px) scale(1.05);
}

/* Arc / label on top */
.pkg-arc {
    width: 100%;
    position: relative;
    z-index: 2;
}

.pkg-arc svg {
    width: 100%;
    display: block;
    overflow: visible;
    filter: drop-shadow(0 -4px 8px rgba(26, 58, 184, 0.2));
}

.package-arc-text {
    fill: #ffffff !important;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
    dominant-baseline: middle;
    alignment-baseline: middle;
}

/* Circle bubble */
.pkg-bubble {
    background: linear-gradient(160deg, #2a50d8 0%, #1a3ab8 100%);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(26, 58, 184, 0.35);
    border: 4px solid white;
}

.pkg-bubble .ksh-label {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.9;
}

.pkg-bubble .ksh-amount {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
}

/* Large monthly card */
.pkg-card.monthly {
    width: 200px;
    margin-top: 5px;
}

.pkg-card.monthly .pkg-bubble {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin-top: -30px;
    text-align: center;
    padding: 15px;
}

.pkg-card.monthly .pkg-bubble .connect-to {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
    line-height: 1.2;
    margin-bottom: 4px;
}

.pkg-card.monthly .pkg-bubble .vuta-wifi-label {
    font-size: 12px;
    font-weight: 800;
    color: #ffcc00;
    line-height: 1;
    margin-bottom: 4px;
}

.pkg-card.monthly .pkg-bubble .above-label {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 2px;
}

.pkg-card.monthly .pkg-bubble .ksh-label {
    font-size: 16px;
}

.pkg-card.monthly .pkg-bubble .ksh-amount {
    font-size: 42px;
}

.pkg-card.monthly .pkg-bubble .per-month {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.85;
}

/* ===== HOW TO SECTION ===== */
.how-to {
    padding: 0 20px;
    margin-bottom: 25px;
}

.how-to-title {
    font-size: 18px;
    font-weight: 900;
    color: #ff7b00;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-to ol {
    padding-left: 20px;
}

.how-to ol li {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
}

.how-to ol li b {
    color: #1a3ab8;
}

/* ===== LOGIN FORM ===== */
.login-section {
    padding: 0 20px;
    margin-bottom: 20px;
}

.login-section label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.login-section input[type="text"] {
    width: 100%;
    padding: 18px 22px;
    border-radius: 14px;
    border: 2px solid #d0d8ff;
    background: #eef1ff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    outline: none;
    transition: border 0.2s;
}

.login-section input[type="text"]:focus {
    border-color: #1a3ab8;
    background: white;
}

.login-section small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #888;
}

/* ===== CONNECT NOW BUTTON ===== */
.btn-connect-now {
    display: block;
    width: calc(100% - 40px);
    margin: 20px 20px 0 20px;
    padding: 20px;
    background: linear-gradient(135deg, #ff7b00, #e05a00);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: inherit;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 123, 0, 0.4);
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.btn-connect-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 123, 0, 0.5);
}

.btn-connect-now:active {
    transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 30px 20px 20px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25d366;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    margin-bottom: 6px;
}

.whatsapp-link i {
    font-size: 28px;
}

.powered-text {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.ads-area {
    padding: 10px 20px;
    text-align: center;
}

.btn-show-ads {
    background: transparent;
    border: 2px solid #1a3ab8;
    color: #1a3ab8;
    padding: 10px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-show-ads:hover {
    background: #1a3ab8;
    color: white;
}