/**
 * Lucky Prize Wheel - Frontend Styles
 * Designed with Kellogg's Noodles brand colors
 */

/* ========== Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --lpw-red: #D50842;
    --lpw-red-bright: #ED1B2F;
    --lpw-red-dark: #A30533;
    --lpw-yellow: #FFC72C;
    --lpw-yellow-dark: #F5B800;
    --lpw-cream: #FFF8E7;
    --lpw-white: #FFFFFF;
    --lpw-text: #2C2C2C;
    --lpw-text-light: #666;
    --lpw-shadow: 0 10px 40px rgba(213, 8, 66, 0.15);
    --lpw-shadow-strong: 0 15px 50px rgba(213, 8, 66, 0.25);
    --lpw-radius: 16px;
    --lpw-radius-small: 8px;
}

.lpw-body {
    font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, var(--lpw-cream) 0%, #FFE5C7 100%);
    color: var(--lpw-text);
    min-height: 100vh;
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== Container ========== */
.lpw-container {
    position: relative;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* ========== Background Decorations ========== */
.lpw-bg-decoration {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lpw-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: lpw-float 20s ease-in-out infinite;
}

.lpw-bg-circle-1 {
    width: 400px;
    height: 400px;
    background: var(--lpw-red);
    top: -100px;
    right: -100px;
}

.lpw-bg-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--lpw-yellow);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.lpw-bg-circle-3 {
    width: 200px;
    height: 200px;
    background: var(--lpw-red-bright);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes lpw-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== Header ========== */
.lpw-header {
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
}

.lpw-logo {
    max-width: 220px;
    width: 60%;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(213, 8, 66, 0.2));
}

.lpw-title {
    font-size: clamp(24px, 4.5vw, 36px);
    font-weight: 900;
    color: var(--lpw-red);
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 var(--lpw-yellow);
    letter-spacing: -0.5px;
}

.lpw-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--lpw-text-light);
    font-weight: 600;
}

/* ========== Main Content ========== */
.lpw-main {
    width: 100%;
    max-width: 600px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Steps */
.lpw-step {
    display: none;
    width: 100%;
    animation: lpw-fadeIn 0.5s ease;
}

.lpw-step.active {
    display: block;
}

@keyframes lpw-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step Indicator */
.lpw-step-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.lpw-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E0E0E0;
    transition: all 0.3s;
}

.lpw-step-dot.active {
    background: var(--lpw-red);
    transform: scale(1.4);
}

.lpw-step-dot.completed {
    background: var(--lpw-yellow);
}

/* ========== Form Card ========== */
.lpw-form-card,
.lpw-wheel-card,
.lpw-result-card {
    background: var(--lpw-white);
    border-radius: var(--lpw-radius);
    box-shadow: var(--lpw-shadow);
    padding: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* العجلة container تحتاج overflow: visible عشان النقاط الديكورية تظهر */
.lpw-wheel-card {
    overflow: visible;
}

.lpw-form-card::before,
.lpw-wheel-card::before,
.lpw-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--lpw-red) 0%, var(--lpw-yellow) 50%, var(--lpw-red-bright) 100%);
    border-radius: var(--lpw-radius) var(--lpw-radius) 0 0;
}

.lpw-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.lpw-form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--lpw-red);
    margin-bottom: 8px;
}

.lpw-form-header p {
    color: var(--lpw-text-light);
    font-size: 14px;
}

/* ========== Form Fields ========== */
.lpw-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lpw-field {
    display: flex;
    flex-direction: column;
}

.lpw-field label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--lpw-text);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lpw-field-icon {
    font-size: 18px;
}

.lpw-field input[type="text"],
.lpw-field input[type="tel"],
.lpw-field select,
.lpw-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E5E5;
    border-radius: var(--lpw-radius-small);
    font-size: 16px;
    font-family: inherit;
    background: #FAFAFA;
    transition: all 0.3s;
    color: var(--lpw-text);
}

.lpw-field input:focus,
.lpw-field select:focus,
.lpw-field textarea:focus {
    outline: none;
    border-color: var(--lpw-red);
    background: var(--lpw-white);
    box-shadow: 0 0 0 4px rgba(213, 8, 66, 0.1);
}

.lpw-field textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.lpw-field-hint {
    font-size: 12px;
    color: var(--lpw-text-light);
    margin-top: 5px;
}

.lpw-field-error {
    font-size: 13px;
    color: var(--lpw-red);
    margin-top: 5px;
    min-height: 0;
    transition: all 0.3s;
    display: block;
}

.lpw-field-error:not(:empty) {
    margin-top: 8px;
    font-weight: 600;
}

.lpw-field-error:not(:empty)::before {
    content: '⚠️ ';
}

/* ========== File Upload ========== */
.lpw-file-upload {
    position: relative;
}

.lpw-file-upload input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.lpw-file-label {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    padding: 30px 20px !important;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    border: 2px dashed var(--lpw-red) !important;
    border-radius: var(--lpw-radius-small);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    margin: 0 !important;
}

.lpw-file-label:hover {
    background: linear-gradient(135deg, #FFE5C7 0%, #FFD6A5 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 8, 66, 0.15);
}

.lpw-file-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.lpw-file-text {
    font-weight: 600;
    color: var(--lpw-red);
    font-size: 15px;
}

.lpw-file-name {
    margin-top: 8px;
    font-size: 13px;
    color: var(--lpw-text-light);
    font-weight: normal;
    word-break: break-all;
}

.lpw-file-name:not(:empty) {
    color: var(--lpw-red-dark);
    font-weight: 600;
}

.lpw-file-name:not(:empty)::before {
    content: '✓ ';
    color: #46b450;
}

.lpw-file-preview {
    margin-top: 15px;
    text-align: center;
}

.lpw-file-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: var(--lpw-radius-small);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ========== Buttons ========== */
.lpw-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 30px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: var(--lpw-radius-small);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    width: 100%;
    margin-top: 10px;
}

.lpw-btn-primary {
    background: linear-gradient(135deg, var(--lpw-red) 0%, var(--lpw-red-bright) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(213, 8, 66, 0.3);
}

.lpw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 8, 66, 0.4);
}

.lpw-btn-primary:active {
    transform: translateY(0);
}

.lpw-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.lpw-btn-secondary {
    background: var(--lpw-yellow);
    color: var(--lpw-text);
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.3);
}

.lpw-btn-secondary:hover {
    background: var(--lpw-yellow-dark);
    transform: translateY(-2px);
}

.lpw-form-error {
    background: #FFE5E5;
    color: var(--lpw-red);
    padding: 12px 16px;
    border-radius: var(--lpw-radius-small);
    font-weight: 600;
    text-align: center;
    display: none;
    margin-top: 10px;
}

.lpw-form-error.show {
    display: block;
    animation: lpw-shake 0.5s;
}

@keyframes lpw-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ========== Wheel Container ========== */
.lpw-wheel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 30px auto;
    /* تأكد إن العجلة دايماً جوا الشاشة */
    max-height: calc(100vw - 80px);
}

#lpw-wheel-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(213, 8, 66, 0.25));
}

.lpw-wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 65px;
    z-index: 10;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.lpw-wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.lpw-spin-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid white;
    background: linear-gradient(135deg, var(--lpw-red) 0%, var(--lpw-red-bright) 100%);
    color: white;
    font-size: 16px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 0 0 8px rgba(213, 8, 66, 0.2),
                0 10px 25px rgba(213, 8, 66, 0.4);
    transition: all 0.3s;
    text-align: center;
}

.lpw-spin-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(213, 8, 66, 0.25),
                0 12px 30px rgba(213, 8, 66, 0.5);
}

.lpw-spin-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.lpw-spin-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.lpw-spin-btn-text {
    display: block;
    line-height: 1.2;
}

/* Loading */
.lpw-loading {
    text-align: center;
    padding: 30px;
}

.lpw-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(213, 8, 66, 0.2);
    border-top-color: var(--lpw-red);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: lpw-spin 1s linear infinite;
}

@keyframes lpw-spin {
    to { transform: rotate(360deg); }
}

/* ========== Result ========== */
.lpw-result-content {
    text-align: center;
    padding: 20px 0;
}

.lpw-result-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: lpw-bounce 1s ease infinite alternate;
}

@keyframes lpw-bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.lpw-result-greeting {
    font-size: 28px;
    font-weight: 900;
    color: var(--lpw-red);
    margin-bottom: 10px;
}

.lpw-result-prize-label {
    font-size: 18px;
    color: var(--lpw-text-light);
    margin-bottom: 10px;
}

.lpw-result-prize-name {
    font-size: 32px;
    font-weight: 900;
    color: var(--lpw-red-bright);
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--lpw-cream) 0%, #FFE5C7 100%);
    border-radius: var(--lpw-radius);
    border: 2px dashed var(--lpw-red);
}

.lpw-redemption-box {
    background: var(--lpw-text);
    color: white;
    padding: 20px;
    border-radius: var(--lpw-radius);
    margin: 20px 0;
}

.lpw-redemption-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.lpw-redemption-code {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
    color: var(--lpw-yellow);
}

/* ========== Carrefour Voucher ========== */
.lpw-voucher-box {
    background: linear-gradient(135deg, #002b5b 0%, #0a4a8c 100%);
    color: white;
    padding: 25px 20px;
    border-radius: var(--lpw-radius);
    margin: 20px 0;
    text-align: center;
    border: 3px solid var(--lpw-yellow);
    box-shadow: 0 8px 25px rgba(0, 43, 91, 0.3);
    position: relative;
    overflow: hidden;
}

.lpw-voucher-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 199, 44, 0.15), transparent 50%);
    pointer-events: none;
}

.lpw-voucher-icon {
    font-size: 48px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.lpw-voucher-label {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.lpw-voucher-code {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    color: var(--lpw-yellow);
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 10px 0 15px;
    border: 2px dashed var(--lpw-yellow);
    word-break: break-all;
    position: relative;
    z-index: 1;
}

.lpw-copy-voucher-btn {
    background: var(--lpw-yellow);
    color: #002b5b;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}

.lpw-copy-voucher-btn:hover {
    background: #FFB800;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.4);
}

.lpw-screenshot-warning {
    background: #FFF3CD;
    color: #856404;
    padding: 12px 20px;
    border-radius: var(--lpw-radius-small);
    border-right: 4px solid var(--lpw-yellow);
    margin: 20px 0;
    font-weight: 600;
    font-size: 15px;
}

.lpw-cta-message {
    font-size: 18px;
    color: var(--lpw-red);
    font-weight: 700;
    margin-top: 20px;
}

/* ========== Single Sticker Display ========== */
.lpw-sticker-single {
    margin: 25px 0;
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--lpw-cream) 0%, #FFE5C7 100%);
    border-radius: var(--lpw-radius);
    border: 2px dashed var(--lpw-red);
    text-align: center;
}

.lpw-sticker-download-link {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
    animation: lpw-bounce-sticker 2s ease infinite;
}

.lpw-sticker-download-link:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.lpw-sticker-download-link img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 8px 20px rgba(213, 8, 66, 0.25));
}

.lpw-download-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--lpw-red);
    color: white;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(213, 8, 66, 0.3);
    animation: lpw-pulse 1.5s ease infinite;
}

@keyframes lpw-bounce-sticker {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes lpw-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* خطوات الواتساب */
.lpw-steps-box {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: var(--lpw-radius);
    padding: 20px;
    margin: 20px 0;
    text-align: right;
}

.lpw-steps-list {
    margin: 0;
    padding-right: 20px;
    list-style: none;
    counter-reset: step-counter;
}

.lpw-steps-list li {
    position: relative;
    padding: 10px 50px 10px 0;
    margin-bottom: 8px;
    border-bottom: 1px dashed #eee;
    counter-increment: step-counter;
    line-height: 1.6;
    font-size: 15px;
}

.lpw-steps-list li:last-child {
    border-bottom: none;
}

.lpw-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    right: 0;
    top: 8px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--lpw-red) 0%, var(--lpw-red-bright) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}

.lpw-steps-list ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.lpw-steps-list ul li {
    border: none;
    padding: 5px 0;
    margin: 0;
}

.lpw-steps-list ul li::before {
    display: none;
}

/* زر الواتساب */
.lpw-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    text-decoration: none;
    border-radius: var(--lpw-radius);
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.lpw-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.lpw-whatsapp-info {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 15px 20px;
    border-radius: var(--lpw-radius);
    border-right: 4px solid #25D366;
    margin: 20px 0;
    font-weight: 600;
    text-align: center;
}

/* ========== Confetti ========== */
.lpw-confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

.lpw-confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: lpw-confetti-fall 3s linear forwards;
}

@keyframes lpw-confetti-fall {
    to {
        transform: translateY(110vh) rotate(720deg);
    }
}

/* ========== Footer ========== */
.lpw-footer {
    margin-top: 40px;
    text-align: center;
    color: var(--lpw-text-light);
    font-size: 13px;
}

.lpw-footer-legal {
    background: rgba(213, 8, 66, 0.04);
    border: 1px solid rgba(213, 8, 66, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 auto 12px;
    max-width: 600px;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
}

.lpw-footer-legal p {
    margin: 4px 0;
}

.lpw-footer-copyright {
    margin-top: 8px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 600px) {
    .lpw-footer-legal {
        font-size: 11px;
        padding: 10px 12px;
    }
}

/* ========== Responsive - Mobile First ========== */

/* تابلت */
@media (max-width: 768px) {
    .lpw-container {
        padding: 12px;
    }

    .lpw-header {
        margin-bottom: 20px;
    }

    .lpw-form-card,
    .lpw-wheel-card,
    .lpw-result-card {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .lpw-form-header h2 {
        font-size: 22px;
    }

    /* العجلة على التابلت */
    .lpw-wheel-container {
        max-width: calc(100vw - 80px);
        max-height: calc(100vw - 80px);
        margin: 20px auto;
    }
}

/* موبايل عادي */
@media (max-width: 600px) {
    .lpw-body {
        font-size: 14px;
    }

    .lpw-container {
        padding: 10px;
    }

    .lpw-title {
        font-size: 24px !important;
        margin-bottom: 5px;
    }

    .lpw-logo {
        max-width: 160px;
        margin-bottom: 10px;
    }

    .lpw-subtitle {
        font-size: 14px;
    }

    .lpw-form-card,
    .lpw-wheel-card,
    .lpw-result-card {
        padding: 20px 15px;
    }

    .lpw-form-header h2 {
        font-size: 20px;
    }

    .lpw-form-header p {
        font-size: 13px;
    }

    .lpw-form {
        gap: 14px;
    }

    .lpw-field label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .lpw-field-icon {
        font-size: 16px;
    }

    /* الفورم */
    .lpw-field input[type="text"],
    .lpw-field input[type="tel"],
    .lpw-field select,
    .lpw-field textarea {
        padding: 12px 14px;
        font-size: 16px !important; /* منع zoom في iOS */
    }

    /* رفع الصورة */
    .lpw-file-label {
        padding: 22px 15px !important;
    }

    .lpw-file-icon {
        font-size: 28px;
    }

    .lpw-file-text {
        font-size: 13px;
    }

    .lpw-file-preview img {
        max-width: 150px !important;
        max-height: 150px !important;
    }

    /* الزر */
    .lpw-btn {
        padding: 14px 20px;
        font-size: 16px;
    }

    /* العجلة - تحسب المساحة بناءً على الـ card والـ padding */
    .lpw-wheel-container {
        max-width: calc(100vw - 60px);
        max-height: calc(100vw - 60px);
        margin: 15px auto;
    }

    /* تقليل padding الكارد على الموبايل */
    .lpw-wheel-card {
        padding: 15px 10px;
    }

    .lpw-wheel-pointer {
        width: 36px;
        height: 48px;
        top: -8px;
    }

    .lpw-spin-btn {
        width: 70px;
        height: 70px;
        font-size: 12px;
        border-width: 4px;
    }

    /* النتيجة */
    .lpw-result-icon {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .lpw-result-greeting {
        font-size: 22px;
    }

    .lpw-result-prize-label {
        font-size: 15px;
    }

    .lpw-result-prize-name {
        font-size: 20px;
        padding: 15px 12px;
    }

    .lpw-redemption-box {
        padding: 15px 12px;
    }

    .lpw-redemption-label {
        font-size: 13px;
    }

    .lpw-redemption-code {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .lpw-screenshot-warning {
        padding: 10px 15px;
        font-size: 13px;
    }

    .lpw-cta-message {
        font-size: 16px;
    }

    /* الستيكرز على الموبايل */
    .lpw-stickers-preview {
        padding: 15px 10px;
    }

    .lpw-stickers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .lpw-stickers-grid img {
        max-width: 130px;
    }

    .lpw-steps-box {
        padding: 15px;
    }

    .lpw-steps-list li {
        padding: 8px 42px 8px 0;
        font-size: 14px;
    }

    .lpw-steps-list li::before {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .lpw-whatsapp-btn {
        padding: 14px 18px;
        font-size: 16px;
    }

    /* تقليل الـ background circles على الموبايل */
    .lpw-bg-circle-1 {
        width: 250px;
        height: 250px;
    }

    .lpw-bg-circle-2 {
        width: 200px;
        height: 200px;
    }

    .lpw-bg-circle-3 {
        width: 150px;
        height: 150px;
    }

    /* الـ step indicator */
    .lpw-step-indicator {
        margin-bottom: 15px;
    }

    .lpw-step-dot {
        width: 8px;
        height: 8px;
    }
}

/* موبايل صغير */
@media (max-width: 380px) {
    .lpw-title {
        font-size: 22px !important;
    }

    .lpw-form-header h2 {
        font-size: 18px;
    }

    .lpw-spin-btn {
        width: 65px;
        height: 65px;
        font-size: 11px;
    }

    .lpw-redemption-code {
        font-size: 20px;
    }

    .lpw-result-prize-name {
        font-size: 18px;
    }
}

/* لانفسكيب على الموبايل */
@media (max-width: 768px) and (orientation: landscape) {
    .lpw-wheel-container {
        max-width: 60vh;
    }

    .lpw-bg-circle {
        display: none;
    }
}
