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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    background-image: 
        radial-gradient(at 40% 20%, rgba(254, 44, 85, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(37, 244, 238, 0.12) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(254, 44, 85, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(37, 244, 238, 0.08) 0px, transparent 50%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.step {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

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

.header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 35px;
}

.header h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    filter: drop-shadow(0 4px 12px rgba(254, 44, 85, 0.3));
}

.header h1 .logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.header h1 .text {
    background: linear-gradient(135deg, #FE2C55 0%, #25F4EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 300;
}

.dashboard-link-corner {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #FE2C55 0%, #FF0050 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.4);
}

.dashboard-link-corner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 44, 85, 0.6);
}

/* Statistics Banner */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px 0;
}

.stat-item {
    text-align: center;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 44, 85, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    border-color: rgba(254, 44, 85, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(254, 44, 85, 0.3), 0 0 30px rgba(254, 44, 85, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FE2C55 0%, #25F4EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.step-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
}

.back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(-3px);
}

.form-section {
    max-width: 500px;
    margin: 0 auto 25px;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    outline: none;
    border-color: #FE2C55;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(254, 44, 85, 0.2), 0 8px 25px rgba(254, 44, 85, 0.4);
    transform: translateY(-2px);
}

.form-hint {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 20px;
}

.primary-btn {
    width: 100%;
    padding: 15px 35px;
    background: linear-gradient(135deg, #FE2C55 0%, #FF0050 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(254, 44, 85, 0.4), 0 0 40px rgba(254, 44, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(254, 44, 85, 0.6), 0 0 50px rgba(254, 44, 85, 0.3);
}

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

.verified-section {
    text-align: center;
    animation: fadeIn 0.4s ease;
    max-width: 400px;
    margin: 25px auto 0;
}

.verified-badge {
    background: rgba(34, 197, 94, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(34, 197, 94, 0.4);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15), 0 0 40px rgba(34, 197, 94, 0.1);
}

.check-icon {
    display: inline-block;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    line-height: 55px;
    margin-bottom: 10px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.verified-badge p {
    color: #86efac;
    font-size: 1.2rem;
    font-weight: 500;
}

.verified-username {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: rgba(254, 44, 85, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 44, 85, 0.4);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.2);
}

.username-display {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.username-icon {
    color: #FE2C55;
    font-size: 1.3rem;
    font-weight: 600;
}

.verified-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.edit-username-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.edit-username-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(254, 44, 85, 0.3);
}

.user-badge {
    background: rgba(254, 44, 85, 0.1);
    border: 1px solid rgba(254, 44, 85, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.user-icon {
    font-size: 1.3rem;
}

.packages-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FE2C55, #25F4EE, #FE2C55);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    border-color: rgba(254, 44, 85, 0.6);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 35px rgba(254, 44, 85, 0.4), 0 0 40px rgba(254, 44, 85, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.package-card.selected {
    border-color: #FE2C55;
    background: rgba(254, 44, 85, 0.2);
    box-shadow: 0 12px 30px rgba(254, 44, 85, 0.5), 0 0 50px rgba(254, 44, 85, 0.3);
    transform: translateY(-6px) scale(1.05);
}

.package-card.selected::before {
    opacity: 1;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FE2C55 0%, #FF0050 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(254, 44, 85, 0.3));
}

.followers {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.payment-summary h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row.total {
    border-bottom: none;
    margin-top: 8px;
    padding-top: 15px;
    border-top: 2px solid rgba(254, 44, 85, 0.3);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
}

.summary-row.total span:last-child {
    color: #FE2C55;
    font-size: 1.3rem;
}

.loading {
    text-align: center;
    padding: 25px;
    animation: fadeIn 0.3s ease;
}

.loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.loading-modal-content {
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(254, 44, 85, 0.3);
    animation: scaleIn 0.3s ease;
    min-width: 320px;
}

.loading-spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(254, 44, 85, 0.2);
    border-top: 5px solid #FE2C55;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 0 30px rgba(254, 44, 85, 0.4);
}

.loading p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 10px;
}

.loading-modal-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease;
    white-space: pre-line;
    line-height: 1.6;
}

.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease;
    white-space: pre-line;
    line-height: 1.8;
    font-size: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.modal-body {
    padding: 30px;
}

.package-summary {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.package-summary h4 {
    color: #667eea;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.package-summary p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.confirmation-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeIn 0.6s ease;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    color: white;
    font-size: 4rem;
    line-height: 100px;
    margin: 0 auto 30px;
    animation: scaleIn 0.6s ease;
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.5), 0 0 60px rgba(34, 197, 94, 0.3);
    position: relative;
}

.success-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
    animation: pulse 2s infinite;
}

.confirmation-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.confirmation-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.order-details {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.order-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-details p:last-child {
    margin-bottom: 0;
}

.order-details strong {
    color: rgba(255, 255, 255, 0.9);
}

.order-details span {
    color: #FE2C55;
    font-weight: 600;
}

.payment-note {
    background: rgba(254, 44, 85, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 44, 85, 0.4);
    padding: 18px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.2);
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.confirmation-actions .primary-btn,
.confirmation-actions .secondary-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secondary-btn {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.error {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
}

.success {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
}

/* Tablet and below */
@media (max-width: 1024px) {
    .step {
        max-width: 90%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    
    .dashboard-link-corner {
        top: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .header {
        margin-bottom: 40px;
    }
    
    .header h1 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .header h1 .logo {
        width: 50px;
        height: 50px;
    }
    
    .header p {
        font-size: 1.1rem;
    }
    
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px 0;
        margin-bottom: 20px;
    }
    
    .stat-item {
        padding: 10px 8px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .step-header h2 {
        font-size: 1.6rem;
    }
    
    .form-section {
        max-width: 100%;
    }
    
    .form-input {
        font-size: 1.1rem;
        padding: 16px 20px;
    }
    
    .primary-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .packages-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .package-card {
        padding: 15px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .followers {
        font-size: 0.9rem;
    }
    
    .payment-summary {
        padding: 20px;
    }
    
    .summary-row {
        font-size: 1rem;
    }
    
    .summary-row.total {
        font-size: 1.2rem;
    }
    
    .summary-row.total span:last-child {
        font-size: 1.3rem;
    }
    
    .confirmation-content {
        padding: 20px 10px;
    }
    
    .confirmation-content h2 {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
        line-height: 80px;
    }
    
    .order-details {
        padding: 20px;
    }
    
    .order-details p {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Loading Modal Responsive */
@media (max-width: 768px) {
    .loading-modal-content {
        padding: 40px 40px;
        min-width: 280px;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .loading-modal-content p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        padding: 15px 10px;
    }
    
    .loading-modal-content {
        padding: 35px 30px;
        min-width: 260px;
        margin: 0 20px;
    }
    
    .loading-spinner {
        width: 55px;
        height: 55px;
        border-width: 4px;
    }
    
    .loading-modal-content p {
        font-size: 0.95rem;
    }
    
    .dashboard-link-corner {
        top: 10px;
        right: 10px;
        padding: 10px;
        font-size: 1.2rem;
        gap: 0;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    .dashboard-link-corner span:last-child {
        display: none;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header h1 .logo {
        width: 40px;
        height: 40px;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px 0;
        margin-bottom: 20px;
    }
    
    .stat-item {
        padding: 10px 6px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .step-header h2 {
        font-size: 1.4rem;
    }
    
    .form-label {
        font-size: 1rem;
    }
    
    .form-input {
        font-size: 1rem;
        padding: 14px 18px;
    }
    
    .primary-btn {
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .back-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .user-badge {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .packages-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .package-card {
        padding: 12px;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .followers {
        font-size: 0.85rem;
    }
    
    .payment-summary h3 {
        font-size: 1.3rem;
    }
    
    .summary-row {
        font-size: 0.95rem;
    }
    
    .summary-row.total {
        font-size: 1.1rem;
    }
    
    .summary-row.total span:last-child {
        font-size: 1.2rem;
    }
    
    .confirmation-content h2 {
        font-size: 1.6rem;
    }
    
    .confirmation-text {
        font-size: 1rem;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        line-height: 70px;
    }
    
    .order-details {
        padding: 15px;
    }
    
    .verified-badge {
        padding: 20px;
    }
    
    .check-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        line-height: 60px;
    }
    
    .verified-badge p {
        font-size: 1.1rem;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header h1 .logo {
        width: 35px;
        height: 35px;
    }
    
    .packages-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 15px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .followers {
        font-size: 0.95rem;
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (hover: none) and (pointer: coarse) {
    .primary-btn,
    .back-btn,
    .package-card {
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .form-input,
    .primary-btn {
        font-size: 16px !important;
    }
}

/* Live Purchase Notifications */
.live-notifications {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 90%;
}

.live-notification {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    border: 1px solid rgba(254, 44, 85, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(254, 44, 85, 0.2);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.live-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.live-notification.hide {
    opacity: 0;
    transform: translateX(400px);
}

.notification-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

.notification-content {
    flex: 1;
}

.notification-title {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.notification-title strong {
    color: #FE2C55;
}

.notification-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.notification-location,
.notification-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.notification-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@media (max-width: 768px) {
    .live-notifications {
        bottom: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
    
    .live-notification {
        padding: 12px;
    }
    
    .notification-icon {
        font-size: 1.5rem;
    }
    
    .notification-title {
        font-size: 0.85rem;
    }
    
    .notification-meta {
        font-size: 0.75rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .notification-meta {
        flex-direction: column;
        gap: 4px;
    }
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 60px;
    max-width: 100%;
}

.testimonials-title {
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FE2C55 0%, #25F4EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: rgba(254, 44, 85, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(254, 44, 85, 0.3), 0 0 40px rgba(254, 44, 85, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FE2C55 0%, #FF0050 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.testimonial-username {
    color: #FE2C55;
    font-size: 0.9rem;
    margin: 0 0 2px 0;
    font-weight: 500;
}

.testimonial-location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

.testimonial-rating {
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-package {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .testimonials-section {
        margin-top: 40px;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.3rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 896px) and (orientation: landscape) {
    body {
        padding: 10px;
    }
    
    .header {
        margin-bottom: 15px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .stats-banner {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin: 15px 0;
    }
    
    .stat-item {
        padding: 8px 6px;
    }
    
    .step {
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .packages-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .loading-modal-content {
        padding: 30px 40px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        line-height: 60px;
    }
}

/* Large Desktop Optimization */
@media (min-width: 1440px) {
    .step {
        max-width: 700px;
    }
    
    .header h1 {
        font-size: 3.2rem;
    }
    
    .header p {
        font-size: 1.3rem;
    }
    
    .stats-banner {
        max-width: 900px;
        margin: 40px auto;
    }
    
    .packages-grid-compact {
        max-width: 800px;
        margin: 0 auto;
    }
}
