/* ============================================
   FlashBetZA Creator Onboarding — Styles
   ============================================
   Extracted from inline styles + new wizard components
   Version: 2.0.0
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --gold: #FFD700;
    --orange: #FFA500;
    --bg-dark: #1a1a1a;
    --bg-dark-alt: #2d2d2d;
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.4);
    --border-gold: rgba(255, 215, 0, 0.3);
    --border-gold-strong: rgba(255, 215, 0, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-bg-focus: rgba(255, 255, 255, 0.12);
    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.2);
    --success-border: rgba(34, 197, 94, 0.4);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.2);
    --error-border: rgba(239, 68, 68, 0.4);
    --transition: 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 50%, var(--bg-dark) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url('../../images/Original3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-gold);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.login-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition);
    border: 1px solid var(--border-gold);
}

.login-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gold);
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all var(--transition);
    border: 2px solid var(--border-gold-strong);
}

.cta-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
}

.cta-secondary {
    padding: 18px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--border-gold-strong);
    transition: all var(--transition);
}

.cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
}

/* ============================================
   APPLICATION SECTION / WIZARD CONTAINER
   ============================================ */

.application-section {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.wizard-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 750px;
    width: 100%;
    padding: 45px;
    margin: 0 auto;
}

.wizard-title {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
}

.wizard-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 15px;
}

/* ============================================
   WIZARD PROGRESS BAR
   ============================================ */

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: default;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.progress-step.completed .step-circle {
    background: var(--success);
    color: white;
    border-color: var(--success);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.4s ease;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: var(--gold);
}

.progress-step.completed .step-label {
    color: var(--success);
}

.progress-connector {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
    margin-bottom: 28px;
    border-radius: 2px;
    transition: background 0.4s ease;
}

.progress-connector.active {
    background: linear-gradient(90deg, var(--success), var(--gold));
}

.progress-connector.completed {
    background: var(--success);
}

/* ============================================
   WIZARD STEP PANELS
   ============================================ */

.wizard-panel {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.wizard-panel.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.wizard-panel.slide-out-left {
    transform: translateX(-30px);
    opacity: 0;
}

.wizard-panel.slide-in-right {
    transform: translateX(30px);
    opacity: 0;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.step-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.form-group label a {
    color: var(--gold);
    text-decoration: underline;
}

.required {
    color: #FF4500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: var(--glass-bg-hover);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    transition: all var(--transition);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--gold);
    padding: 10px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--glass-bg-focus);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input.is-valid {
    border-color: var(--success);
}

.form-group input.is-invalid {
    border-color: var(--error);
}

.field-feedback {
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-feedback.success {
    color: var(--success);
}

.field-feedback.error {
    color: #fca5a5;
}

.field-hint {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ============================================
   INSTRUCTION BOX
   ============================================ */

.instruction-box {
    background: rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
}

.instruction-box.collapsed .instruction-content {
    display: none;
}

.instruction-box h3 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.instruction-box h3 .toggle-icon {
    transition: transform 0.3s;
}

.instruction-box.collapsed h3 .toggle-icon {
    transform: rotate(-90deg);
}

.instruction-box ol {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.instruction-box li {
    margin-bottom: 8px;
    font-size: 14px;
}

.instruction-box a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.instruction-box a:hover {
    text-decoration: underline;
}

/* ============================================
   SECTION HEADER (within steps)
   ============================================ */

.section-header {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-gold);
}

/* ============================================
   SOCIAL MEDIA PLATFORM CARDS
   ============================================ */

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.platform-card {
    background: var(--glass-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.platform-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.platform-card.selected {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

.platform-icon {
    font-size: 28px;
    margin-bottom: 6px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 32px;
    height: 32px;
}

.platform-card.selected .platform-icon {
    color: var(--gold);
}

.platform-card[data-platform="instagram"] .platform-icon { color: #E4405F; }
.platform-card[data-platform="tiktok"] .platform-icon { color: #fff; }
.platform-card[data-platform="youtube"] .platform-icon { color: #FF0000; }
.platform-card[data-platform="facebook"] .platform-icon { color: #1877F2; }
.platform-card[data-platform="twitter"] .platform-icon { color: #fff; }

.platform-card.selected[data-platform="instagram"] .platform-icon { color: #E4405F; }
.platform-card.selected[data-platform="tiktok"] .platform-icon { color: #00f2ea; }
.platform-card.selected[data-platform="youtube"] .platform-icon { color: #FF0000; }
.platform-card.selected[data-platform="facebook"] .platform-icon { color: #1877F2; }
.platform-card.selected[data-platform="twitter"] .platform-icon { color: #fff; }

.platform-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.platform-card.selected .platform-name {
    color: var(--gold);
}

.platform-url-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.platform-url-wrapper.open {
    max-height: 80px;
    opacity: 1;
    margin-top: 12px;
}

.platform-url-wrapper input {
    width: 100%;
    padding: 10px 12px;
    background: var(--glass-bg-hover);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    font-size: 13px;
    color: #fff;
    transition: all var(--transition);
}

.platform-url-wrapper input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--glass-bg-focus);
}

.platform-url-wrapper input::placeholder {
    color: var(--text-dim);
}

/* ============================================
   PRICING / RATE SECTION
   ============================================ */

.rate-section {
    margin-top: 25px;
}

.rate-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    align-items: start;
}

.rate-row .form-group {
    margin-bottom: 0;
}

.input-with-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-prefix input {
    padding-left: 30px;
    width: 100%;
}

.input-prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-weight: 600;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   UPLOAD ZONES (Step 4)
   ============================================ */

.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.upload-zone {
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-zone:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--gold);
}

.upload-zone.dragover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    border-style: solid;
}

.upload-zone.uploaded {
    border-color: var(--success);
    border-style: solid;
    background: rgba(34, 197, 94, 0.05);
}

.upload-zone.uploading {
    pointer-events: none;
    opacity: 0.7;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.upload-icon {
    font-size: 36px;
}

.upload-placeholder h4 {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.upload-placeholder p {
    color: var(--text-muted);
    font-size: 12px;
}

.upload-hint {
    color: var(--text-dim);
    font-size: 11px;
    display: block;
    margin-top: 4px;
}

.upload-preview {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.upload-zone.uploaded .upload-placeholder {
    display: none;
}

.upload-zone.uploaded .upload-preview {
    display: flex;
}

.upload-preview img {
    max-width: 100%;
    max-height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.upload-remove {
    background: var(--error-bg);
    color: #fca5a5;
    border: 1px solid var(--error-border);
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition);
}

.upload-remove:hover {
    background: rgba(239, 68, 68, 0.3);
}

.upload-progress {
    display: none;
    width: 100%;
    margin-top: 10px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
}

.upload-zone input[type="file"] {
    display: none;
}

/* ============================================
   WIZARD NAVIGATION BUTTONS
   ============================================ */

.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.btn-back {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-next,
.btn-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: #000;
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-submit:disabled,
.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-submit {
    display: none;
}

/* ============================================
   SUCCESS PANEL
   ============================================ */

.success-panel {
    text-align: center;
    padding: 40px 20px;
}

.success-animation {
    margin-bottom: 25px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 40px;
    color: white;
    animation: scaleIn 0.5s ease;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

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

.success-panel h2 {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 10px;
}

.success-panel > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.credentials-notice {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

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

.credentials-notice h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 8px;
}

.credentials-notice p {
    color: var(--text-muted);
    font-size: 14px;
}

.notice-hint {
    font-size: 12px !important;
    color: var(--text-dim) !important;
    margin-top: 8px;
}

.btn-login {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition);
    border: 2px solid var(--border-gold-strong);
}

.btn-login:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
}

/* ============================================
   MESSAGES
   ============================================ */

.message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.message.success {
    background: var(--success-bg);
    color: #86efac;
    border: 1px solid var(--success-border);
}

.message.error {
    background: var(--error-bg);
    color: #fca5a5;
    border: 1px solid var(--error-border);
}

/* ============================================
   FIELD SHAKE ANIMATION
   ============================================ */

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.shake {
    animation: shake 0.4s ease;
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--border-gold);
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
}

.footer a:hover {
    color: var(--orange);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero {
        padding: 60px 20px;
    }

    .cta-primary, .cta-secondary {
        font-size: 16px;
        padding: 14px 28px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        display: none;
    }

    .wizard-container {
        padding: 25px 20px;
    }

    .wizard-progress {
        margin-bottom: 30px;
    }

    .progress-connector {
        width: 30px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-circle {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .social-platforms {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .platform-card {
        padding: 12px 8px;
    }

    .platform-icon {
        font-size: 22px;
    }

    .platform-name {
        font-size: 11px;
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .rate-row {
        grid-template-columns: 1fr;
    }

    .wizard-nav {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn-back,
    .btn-next,
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .wizard-container {
        padding: 20px 15px;
    }

    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-label {
        display: none;
    }

    .progress-connector {
        width: 20px;
        margin-bottom: 0;
    }
}
