        :root {
            /* Tema Cosmic Black & Silver */
            --bg-body: #05050a; 
            --bg-card: #0f111a; 
            --bg-input: #050508; 
            --primary: #e2e8f0; 
            --primary-gradient: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%); 
            --btn-text: #05050a; 
            --text-main: #f8fafc; 
            --text-muted: #94a3b8; 
            --border: rgba(226, 232, 240, 0.15); 
            --border-focus: #cbd5e1; 
            --success: #10b981;
            --danger: #ef4444;
        }

        body {
            background-color: var(--bg-body);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(148, 163, 184, 0.06), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.04), transparent 25%),
                radial-gradient(ellipse at top right, #1e2233 0%, var(--bg-body) 70%);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            min-height: 100vh;
            box-sizing: border-box;
        }

        .launcher-card {
            background: var(--bg-card);
            max-width: 540px;
            width: 100%;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,255,255,0.05) inset;
            border: 1px solid var(--border);
            backdrop-filter: blur(10px);
            height: fit-content;
        }

        /* HEADER */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        /* HEADER LEFT & BACK BUTTON */
        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-back {
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-muted);
            border: 1px solid var(--border);
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .btn-back:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
        }

        .header-title {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-main);
            letter-spacing: -0.5px;
        }

        .header-title i { 
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-connect {
            background: rgba(255, 255, 255, 0.03);
            color: var(--primary);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-connect:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
        }

        /* TAB NAVIGATION */
        .tabs-container {
            display: flex;
            background: rgba(0,0,0,0.4);
            border-radius: 12px;
            padding: 6px;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .tab-btn {
            flex: 1;
            background: transparent;
            color: var(--text-muted);
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .tab-btn.active {
            background: var(--primary-gradient);
            color: var(--btn-text);
            box-shadow: 0 4px 15px rgba(203, 213, 225, 0.2);
        }

        /* FORM SECTION */
        .form-section {
            opacity: 0.4;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .form-section.active {
            opacity: 1;
            pointer-events: auto;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .tab-content.active {
            display: block;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        input, textarea {
            background: var(--bg-input);
            border: 1px solid var(--border);
            color: var(--text-main);
            padding: 12px 14px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: all 0.3s ease;
            width: 100%;
            box-sizing: border-box;
        }

        input:focus, textarea:focus {
            border-color: var(--border-focus);
            box-shadow: 0 0 0 3px rgba(226, 232, 240, 0.1);
            background: #0a0b10;
        }

        input::placeholder, textarea::placeholder { color: #475569; }

        /* LOGO PREVIEW */
        .logo-row {
            display: flex;
            gap: 20px;
            align-items: center;
            background: rgba(255, 255, 255, 0.02);
            padding: 16px;
            border-radius: 12px;
            border: 1px dashed var(--border);
            margin-bottom: 24px;
        }

        .token-preview {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--bg-input);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            transition: border-color 0.3s;
        }

        .token-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .token-preview i { font-size: 1.5rem; color: #475569; }
        .logo-input-wrapper { flex-grow: 1; }
        .logo-input-wrapper input { margin-top: 6px; }

        /* BUTTON SUBMIT */
        .btn-submit {
            background: var(--primary-gradient);
            color: var(--btn-text);
            border: none;
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 24px;
        }

        .btn-submit:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(226, 232, 240, 0.2);
        }

        .btn-submit:disabled {
            background: #1e2233;
            color: #475569;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* STATUS BOX */
        .status-box {
            margin-top: 24px;
            padding: 20px;
            border-radius: 12px;
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.3);
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .status-box.error {
            background: rgba(239, 68, 68, 0.05);
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .status-title {
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        
        .status-box.error .status-title { color: #fca5a5; }
        .status-box:not(.error) .status-title { color: #6ee7b7; }

        .contract-box {
            background: rgba(0, 0, 0, 0.5);
            padding: 12px;
            border-radius: 8px;
            font-family: monospace;
            font-size: 0.9rem;
            color: var(--primary);
            word-break: break-all;
            margin-top: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
        }

        .spin { animation: spin 1s linear infinite; }
        @keyframes spin { 100% { transform: rotate(360deg); } }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
