.spinner-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0 12px;
    position: relative;
    overflow: hidden;
}

.promo-banner-full {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 194, 66, 0.3);
    box-shadow: var(--shadow);
}

.promo-banner-full-img {
    width: 100%;
    height: auto;
    display: block;
}

.spinner-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 4px rgba(7, 43, 114, 0.6);
}

.spinner-title .highlight {
    color: var(--gold);
}

/* ---------- Wheel Wrapper (Half-Circle Speedometer) ---------- */
.spinner-wheel-wrapper {
    position: relative;
    width: min(78vw, 320px);
    height: calc(min(78vw, 320px) / 2);
    margin: 0 auto 64px;
    z-index: 2;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

/* Metallic gold double rim - square wheel clipped to top half */
.spinner-wheel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    border-radius: 50%;
    overflow: hidden;
    background: #0B3E96;
    clip-path: inset(0 0 50% 0);
    box-shadow:
        0 0 0 5px #B8860B,
        0 0 0 8px #F5C242,
        0 0 0 11px #D8A323,
        0 0 0 14px rgba(245, 194, 66, 0.35),
        0 0 34px rgba(245, 194, 66, 0.4),
        0 12px 32px rgba(0, 0, 0, 0.45);
}

#spinnerCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Blue glowing inner ring */
.spinner-wheel-inner::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: inset 0 0 0 2px rgba(21, 101, 216, 0.35), inset 0 0 18px rgba(21, 101, 216, 0.25);
    z-index: 3;
}

/* ---------- Pointer: Diamond with Blue Gem ---------- */
.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 46px;
    height: 46px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.wheel-pointer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F5C242 0%, #B8860B 55%, #F5C242 100%);
    transform: rotate(45deg);
    border-radius: 6px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6), inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

.wheel-pointer::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 9px;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 35% 30%, #7FB8FF 0%, #1565D8 45%, #072B72 100%);
    transform: rotate(45deg);
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.7);
}

/* ---------- Warm LED Bulbs ---------- */
.led-ring {
    position: absolute;
    top: -12px;
    left: -12px;
    width: calc(100% + 24px);
    height: calc(200% + 24px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
}

.led-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FFE082;
    box-shadow: 0 0 6px 1px rgba(255, 200, 60, 0.8);
    animation: led-blink 1400ms ease-in-out infinite;
}

@keyframes led-blink {
    0%, 100% { opacity: 0.25; background: #F5C242; box-shadow: 0 0 4px rgba(245, 194, 66, 0.4); }
    50% { opacity: 1; background: #FFE082; box-shadow: 0 0 10px 2px rgba(255, 210, 90, 0.9); }
}

/* ---------- Center Hub Button (on the flat cut edge) ---------- */
.center-hub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, #3D8BFF 0%, #1565D8 45%, #0B3E96 100%);
    border: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    z-index: 15;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    color: #FFFFFF;
    box-shadow:
        0 0 0 5px rgba(245, 194, 66, 0.25),
        0 0 24px rgba(21, 101, 216, 0.55),
        0 6px 18px rgba(0, 0, 0, 0.35),
        inset 0 2px 6px rgba(255, 255, 255, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.center-hub:hover {
    box-shadow:
        0 0 0 5px rgba(245, 194, 66, 0.35),
        0 0 34px rgba(21, 101, 216, 0.75),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.35);
}

.center-hub:active {
    transform: translate(-50%, -50%) scale(0.95);
}
.hub-line {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(7, 43, 114, 0.8);
}

.hub-line-accent {
    color: var(--gold);
    text-shadow: 0 1px 3px rgba(7, 43, 114, 0.8), 0 0 10px rgba(245, 194, 66, 0.6);
}

/* ---------- Info Panels ---------- */
.info-panels {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.info-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(245, 194, 66, 0.3);
    padding: 14px 10px;
    text-align: center;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.info-title {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
}

/* ---------- Spin Button ---------- */
.spin-button {
    display: block;
    width: 100%;
    max-width: 320px;
    height: 58px;
    margin: 0 auto;
    background: var(--gold-grad);
    border: none;
    border-radius: var(--radius);
    color: #072B72;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 24px rgba(245, 194, 66, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-transform: uppercase;
    font-family: inherit;
}

.spin-button:hover:not(:disabled) {
    box-shadow: 0 8px 30px rgba(245, 194, 66, 0.5);
    transform: translateY(-2px);
}

.spin-button:active:not(:disabled) {
    transform: scale(0.97);
}

.spin-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 24px rgba(245, 194, 66, 0.4); }
    50% { box-shadow: 0 6px 34px rgba(245, 194, 66, 0.55), 0 0 40px rgba(245, 194, 66, 0.15); }
}

.spin-button:not(:disabled) {
    animation: pulse-glow 2s ease-in-out infinite;
}

@media (max-width: 360px) {
    .spinner-wheel-wrapper {
        width: min(84vw, 270px);
        height: calc(min(84vw, 270px) / 2);
        margin-bottom: 56px;
    }
    .center-hub { width: 72px; height: 72px; }
    .hub-line { font-size: 11px; }
    .spin-button { height: 52px; font-size: 16px; }
    .info-panels { gap: 8px; }
}

/* ============================================================
   Lucky Call Spin Banner (sample design) — replaces canvas wheel
   ============================================================ */
.banner-container {
    width: 100%;
    max-width: 480px;
    background: radial-gradient(circle at center, #1d4ed8 0%, #030712 100%);
    border-radius: 24px;
    padding: 18px 16px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid #2563eb;
    margin: 0 auto;
}

.urdu-text {
    font-family: 'Noto Nastaliq Urdu', serif;
    line-height: 1.8;
}

.banner-container .header h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2px;
    display: inline-block;
    background: linear-gradient(180deg, #fde68a 0%, #f59e0b 55%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.85));
    position: relative;
}

.banner-container .header h1::after {
    content: '';
    display: block;
    width: 190px;
    height: 2px;
    margin: 6px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, #fde68a, #f59e0b, transparent);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.55);
}

html[lang="ur"] .banner-container .header h1 {
    line-height: 1.9;
}

html[lang="ur"] .banner-container .header h1::after {
    margin-top: 10px;
}

.banner-container .header p {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.dialer-tags {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 12px;
    direction: ltr;
}

.tag-pill {
    position: relative;
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.28) 0%, rgba(30, 58, 138, 0.5) 100%);
    color: #e0e7ff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.3px;
    padding: 8px 10px 8px 24px;
    border-radius: 10px;
    border: 1px solid rgba(147, 197, 253, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
}

.tag-pill::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(180deg, #4ade80 0%, #16a34a 100%);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
}

.spinner-section {
    position: relative;
    width: 320px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
}

.gold-arch-frame {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 12px solid #f59e0b;
    outline: 3px solid #78350f;
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(245, 158, 11, 0.6);
    z-index: 3;
    pointer-events: none;
    background: transparent;
    overflow: hidden;
}

.gold-arch-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        rgba(253, 224, 71, 0) 0deg,
        rgba(253, 224, 71, 0.6) 30deg,
        rgba(255, 255, 255, 0.85) 80deg,
        rgba(253, 224, 71, 0.6) 130deg,
        rgba(253, 224, 71, 0) 200deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 14px), #000 calc(100% - 13px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 14px), #000 calc(100% - 13px));
    animation: frame-shine 6s linear infinite;
    pointer-events: none;
}

@keyframes frame-shine {
    to { transform: rotate(360deg); }
}

.pointer {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fde68a 0%, #f59e0b 40%, #d97706 70%, #b45309 100%);
    z-index: 10;
    animation: pointer-glow 2.4s ease-in-out infinite;
}

.pointer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, #fbbf24 40%, #b45309 100%);
    box-shadow: 0 0 8px rgba(253, 224, 71, 0.9);
}

@keyframes pointer-glow {
    0%, 100% {
        box-shadow:
            0 0 0 3px rgba(245, 158, 11, 0.35),
            0 6px 14px rgba(0, 0, 0, 0.6),
            inset 0 2px 3px rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow:
            0 0 0 6px rgba(245, 158, 11, 0.18),
            0 6px 20px rgba(0, 0, 0, 0.65),
            inset 0 2px 3px rgba(255, 255, 255, 0.6);
    }
}

.spinning-dial {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(#eab308 0deg 29.5deg, #ffffff 29.5deg 30deg);
    z-index: 1;
    transition: transform 4s cubic-bezier(0.12, 0.8, 0.15, 1);
}

.spinning-dial::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    border: 2px solid #fef08a;
    pointer-events: none;
    z-index: 2;
}

.spinning-dial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 45%);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.22);
    pointer-events: none;
    z-index: 2;
}

.slot {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    direction: ltr;
}

.slot-label {
    position: absolute;
    left: 50%;
    top: 27px;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    line-height: 1.25;
    width: 60px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.slot-label.dark-text {
    color: #0f172a;
    text-shadow: none;
}

.slot-label i {
    font-size: 10px;
    display: block;
    margin-bottom: 2px;
}

.slot-label .slot-icon {
    width: 36px;
    height: 36px;
    display: block;
    margin: 0 auto 2px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.center-hub-button {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 35% 28%, #3b82f6 0%, #2563eb 45%, #1e3a8a 100%);
    border: 5px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 8;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.3;
    animation: hub-pulse 2.4s ease-in-out infinite;
}

.center-hub-button::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 12px;
    right: 12px;
    height: 42%;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.center-hub-button div {
    background: linear-gradient(180deg, #ffffff 0%, #fde68a 55%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

@keyframes hub-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 4px rgba(245, 158, 11, 0.25),
            0 0 26px rgba(37, 99, 235, 0.5),
            0 8px 20px rgba(0, 0, 0, 0.7),
            inset 0 2px 6px rgba(255, 255, 255, 0.35);
    }
    50% {
        box-shadow:
            0 0 0 9px rgba(245, 158, 11, 0.14),
            0 0 42px rgba(37, 99, 235, 0.7),
            0 8px 24px rgba(0, 0, 0, 0.75),
            inset 0 2px 6px rgba(255, 255, 255, 0.35);
    }
}

.center-hub-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.center-hub-button:disabled {
    cursor: default;
    opacity: 0.85;
    animation: none;
}

/* ---------- Apps Row (under the spinner banner box) ---------- */
.apps-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 480px;
    margin: 16px auto 0;
    padding: 0 16px;
}

.app-card {
    position: relative;
    flex: 1;
    max-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px 8px;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.28) 0%, rgba(30, 58, 138, 0.5) 100%);
    border: 1px solid rgba(245, 194, 66, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.app-card::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 11px;
    height: 11px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
}

.app-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.app-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    border: 2px solid #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.app-name {
    font-size: 10px;
    font-weight: 700;
    color: #e0e7ff;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ---------- Post-Spin Video Ad Overlay ---------- */
.video-ad-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.video-ad-box {
    position: relative;
    width: min(92vw, 560px);
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #f59e0b;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.35), 0 20px 50px rgba(0, 0, 0, 0.6);
}

.video-ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

#video-ad-player {
    width: 100%;
    display: block;
    background: #000;
    max-height: 70vh;
}

.video-ad-actions {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    background: #050a18;
}

#video-ad-skip {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 9px 20px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

#video-ad-skip:hover:not(:disabled) {
    transform: translateY(-1px);
}

#video-ad-skip:active:not(:disabled) {
    transform: scale(0.97);
}

#video-ad-skip:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.package-box {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border: 3px solid #f59e0b;
    border-radius: 18px;
    padding: 12px 10px;
    color: #0f172a;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 5;
    margin-top: -12px;
}

.package-title {
    display: inline-block;
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    background: linear-gradient(180deg, #b45309 0%, #f59e0b 45%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
}

.package-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    margin: 4px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}

.package-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-top: 1px solid #cbd5e1;
    padding-top: 8px;
}

.package-item {
    flex: 1;
    min-width: 0;
    border-inline-end: 1px solid #e2e8f0;
    padding: 0 4px;
}

.package-item:last-child {
    border-inline-end: none;
}

.package-value {
    font-size: 26px;
    font-weight: 900;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.package-value span {
    font-size: 14px;
    font-family: 'Noto Nastaliq Urdu', serif;
}

.package-name {
    font-size: 11px;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 3px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.package-price {
    font-size: 14px;
    font-weight: 800;
    color: #b45309;
    margin-top: 2px;
}

.package-tagline {
    font-size: 9px;
    color: #64748b;
    margin-top: 3px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-note {
    font-size: 9.5px;
    color: #d97706;
    margin-top: 2px;
    font-weight: bold;
}

.banner-container .contact-section {
    margin: 16px 0 0;
}

.contact-title {
    font-size: 16px;
    margin-bottom: 4px;
    color: #f1f5f9;
}

.phone-number {
    font-size: 20px;
    font-weight: 800;
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    margin-bottom: 4px;
}

.phone-number i {
    color: #22c55e;
}

.website-link {
    font-size: 14px;
    color: #93c5fd;
    text-decoration: none;
    direction: ltr;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

@media (max-width: 380px) {
    .spinner-section {
        width: 280px;
        height: 158px;
    }
    .gold-arch-frame {
        width: 260px;
        height: 260px;
        top: 10px;
        left: 10px;
    }
    .spinning-dial {
        width: 260px;
        height: 260px;
        top: 10px;
        left: 10px;
    }
    .center-hub-button {
        width: 96px;
        height: 96px;
        top: 140px;
        font-size: 11px;
    }
    .slot-label {
        top: 24px;
        width: 56px;
        font-size: 10px;
    }
    .banner-container .header h1 {
        font-size: 21px;
    }
    .banner-container .header p {
        font-size: 14px;
    }
}
