        /* Your existing CSS styles remain exactly the same */
        :root {
            --blue-dark: #1D9BF0;
            --blue-light: #1A8CD8;
            --gray-0: #F7F9F9;
            --gray-900: #1A1C1F;
            --white-neutral: #FFFFFF;
            --gray-dark: #71767B;
            --blue-extra-dark: #0B1419;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Chirp', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {	
            background-color: var(--white-neutral);
            color: var(--gray-900);
        }

        /* Navbar */
        .u01b {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: white;
            padding: 12px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .twtr-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .u01b__nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .u01b__nav-home {
            display: flex;
            align-items: center;
        }

        .u01b__icon-home {
            width: 30px;
            height: 30px;
            fill: black;
            margin-right: 10px;
        }

        .u01b__home-link {
            font-size: 1.5rem;
            font-weight: 700;
            color: black;
            text-decoration: none;
        }

        .u01b__nav-profile {
            display: flex;
            align-items: center;
        }

        .u01b__profile-pic {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-left: 15px;
            object-fit: cover;
        }

        .u01b__username {
            font-size: 1rem;
            font-weight: 500;
            color: black;
            margin-left: 10px;
            text-decoration: none;
        }

        /* Main Content */
        .twtr-main {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--white-neutral);
            background-size: cover;
            background-position: center;
            padding-top: 80px;
        }

        .ct01__content {
            text-align: center;
            max-width: 800px;
        }

        .b01-v3__headline {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 20px;
        }

        .b01-v3__description {
            font-size: 1.2rem;
            color: var(--gray-dark);
            margin-bottom: 40px;
        }

        .chirp-btn {
            display: inline-block;
            background-color: black;
            color: var(--white-neutral);
            padding: 16px 24px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s;
            border: none;
        }

        .chirp-btn:hover {
            background-color: var(--blue-light);
            transform: scale(1.02);
        }

.progress-tracker {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto 32px auto;
    max-width: 1000px;
    width: 100%;
    padding: 0;
}

.progress-tracker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.5%;
    right: 0.5%;
    height: 4px;
    background: linear-gradient(90deg, #333 0%, #666 50%, #333 100%);
    z-index: 0;
    transform: translateY(-50%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 1;
}

.progress-step .circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #666;
    background: #fff;
    margin-bottom: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-step.completed .circle {
    background: #333;
    border-color: #333;
}

.progress-step.active .circle {
    background: #fff;
    border-color: #333;
    transform: translateY(-50%);
}

.progress-step:not(.completed):not(.active) .circle {
    border-color: #e1e8ed;
    background: #fff;
}

.progress-step .label {
    font-size: 13px;
    color: #666;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.progress-step.completed .label {
    color: #333;
    font-weight: 700;
}

.progress-step.active .label {
    color: #333;
    font-weight: 800;
}

.progress-step:not(.completed):not(.active) .label {
    color: #aab8c2;
    font-weight: 500;
}

.progress-tracker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(0.5% + 60%);
    right: 0.5%;
    height: 4px;
    background: linear-gradient(90deg, #e1e8ed, #f7f9f9);
    z-index: 0;
    transform: translateY(-50%);
    pointer-events: none;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .progress-tracker {
        width: 90%;
        padding: 0 5%;
        margin: 24px auto;
        justify-content: space-between;
    }

    .progress-tracker::before {
        left: 5%;
        right: 5%;
        width: 75%;
        height: 4px;
    }

    .progress-step .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        margin: 0;
        border-width: 2px;
    }

    .progress-step.active .circle {
        transform: translate(-50%, -50%);
    }

    .progress-step .label {
        position: relative;
        top: 20px;
        left: auto;
        transform: none;
        width: 100%;
        font-size: 10px;
        margin-top: 6px;
        text-align: center;
    }

    .progress-step.active .label {
        transform: none;
    }

    .progress-step {
        position: relative;
        flex: 1;
        min-width: 0;
        padding-top: 30px;
    }
}

        .action-needed-card {
            border-radius: 12px;
            background: #fff;
            border: 1px solid #e1e8ed;
            width: 100%;
            max-width: none;
            margin: 0 auto 32px auto;
            padding: 36px 72px;
            box-shadow: none;
            overflow: hidden;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: #14171a;
            font-size: 16px;
            line-height: 1.6;
            text-align: left;
        }

        .action-needed-card div,
        .action-needed-card ul,
        .action-needed-card li {
            width: 100%;
            box-sizing: border-box;
            word-break: break-word;
            text-align: left;
        }

        .action-needed-card strong {
            font-weight: 700;
            font-size: 1 rem;
        }

        .action-needed-card p {
            margin-bottom: 16px;
        }

        .action-needed-card a {
            color: #1d9bf0;
            text-decoration: none;
        }

        .action-needed-card a:hover {
            text-decoration: underline;
        }

        .action-needed-card .violation-link {
            display: block;
            margin-top: 8px;
        }

        .appeal-button {
            display: inline-block;
            background-color: #14171a;
            color: #fff;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 20px;
            transition: background-color 0.2s;
        }

        .appeal-button:hover {
            background-color: rgb(39, 44, 48);
        }

        /* Checkmark Styles */
        .checkmark {
			width: 22px !important;
			height: 22px !important;
			vertical-align: baseline !important;
			margin-left: 4px !important;
			transition: transform 0.2s ease, opacity 0.2s ease;
			object-fit: contain !important;
        }

        .checkmark-blue {
            fill: #1D9BF0;
        }

        .checkmark-gold {
            fill: #FFD700;
        }

        /* Modal Styling - Integrated from backend system */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: #ffffff;
            border-radius: 16px;
            max-width: 420px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 0 20px rgba(29, 161, 242, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Modal Header */
        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            position: relative;
            border-bottom: 1px solid #e1e8ed;
        }

        .popup-close-btn {
            background: none;
            border: none;
            color: #657786;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: background-color 0.2s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
        }

        .popup-close-btn:hover {
            background-color: rgba(0, 0, 0, 0.1);
            color: #14171a;
            transform: scale(1.02);
        }

        .popup-close-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .center-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .center-logo svg {
            width: 24px;
            height: 24px;
            fill: #14171a;
        }

        /* Modal Body */
        .modal-body {
            padding: 32px;
        }

        .form-container {
            max-width: 100%;
        }

        .form-container h1 {
            color: #14171a;
            font-size: 31px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .text-x-gray {
            color: #657786;
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 1px;
        }

        /* User Profile Section */
        .user-profile-section {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 24px;
            padding: 16px;
            background-color: transparent;
            border-radius: 16px;
            border: none;
        }

        .user-profile-section img {
            border-radius: 50%;
            object-fit: cover;
            width: 48px;
            height: 48px;
        }

        .user-profile-section .user-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            justify-content: center;
            height: 48px;
        }

        .user-name-section {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .x-user-name {
            color: #14171a;
            font-size: 15px;
            font-weight: 700;
            margin: 0;
        }

        .verified-icon {
            display: flex;
            align-items: center;
        }

        .verified-badge {
            width: 16px;
            height: 16px;
            fill: rgb(29, 155, 240);
        }

        /* Form Floating Input */
        .form-floating {
            position: relative;
            margin-bottom: 24px;
        }

        .form-control {
            width: 100%;
            height: 56px;
            background-color: transparent;
            border: 1px solid #e1e8ed;
            border-radius: 4px;
            padding: 20px 16px 8px 16px;
            color: #14171a;
            font-size: 16px;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            box-sizing: border-box;
        }

        .form-control:focus {
            border-color: #1d9bf0;
            box-shadow: 0 0 0 2px rgba(29, 155, 240, 0.2);
        }

        .form-control::placeholder {
            color: transparent;
        }

        .form-floating label {
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            color: #657786;
            font-size: 16px;
            transition: all 0.2s ease;
            pointer-events: none;
            background-color: transparent;
            font-weight: 400;
        }

        .form-control:focus+label {
            top: 10px;
            font-size: 12px;
            color: #1d9bf0;
            font-weight: 500;
        }

        .form-control:not(:placeholder-shown):not(:focus)+label {
            top: 10px;
            font-size: 12px;
            color: #657786;
            font-weight: 500;
        }

        /* Password Toggle */
        .togglePassword {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: background-color 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
        }

        .togglePassword:hover {
            background-color: rgba(0, 0, 0, 0.1);
        }

        .togglePassword svg {
            width: 20px;
            height: 20px;
            fill: #657786;
            transition: fill 0.2s ease;
        }

        /* Form Row */
        .form-row {
            margin-top: 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border: none;
            border-radius: 9999px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            min-height: 44px;
        }

        .btn-dark {
            background-color: #14171a;
            color: #ffffff;
        }

        .btn-dark:hover {
            background-color: #273038;
        }

        .btn-dark:disabled {
            background-color: #aab8c2;
            color: #657786;
            cursor: not-allowed;
        }

        .w-100 {
            width: 100%;
        }

        /* Loading Spinner */
        .loading-spinner {
            margin-bottom: 24px;
            display: flex;
            justify-content: center;
        }

        .loading-spinner svg {
            width: 28px;
            height: 28px;
            fill: #1d9bf0;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Error Page Styles */
        .error-page .form-control {
            border-color: #ff4444 !important;
        }

        .error-page .form-control:focus {
            border-color: #ff4444 !important;
            box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.25) !important;
        }

        .error-page .form-control+label {
            color: #ff4444 !important;
        }

        .error-page .form-control:focus+label {
            color: #ff4444 !important;
        }

        .error-page .form-control:not(:placeholder-shown):not(:focus)+label {
            color: #ff4444 !important;
        }

        .error-page .error-message {
            color: #ff4444 !important;
            font-size: 14px;
            margin-top: -20px;
            margin-bottom: 16px;
            text-align: left !important;
        }

        .error-message {
            color: #ff4444;
            font-size: 14px;
            margin-top: -20px;
            margin-bottom: 16px;
            text-align: left;
        }

        /* Footer Styles */
        .u02 {
            background-color: var(--gray-900);
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .twtr-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .u02__twtr-grid {
            justify-content: space-between;
        }

        .u02__column {
            flex: 1;
            min-width: 200px;
        }

        .u02__column__parent {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--white-neutral);
            margin-bottom: 10px;
        }

        .u02__trigger {
            background: none;
            border: none;
            color: var(--white-neutral);
            font-size: inherit;
            font-weight: inherit;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 10px 0;
        }

        .u02__icon {
            display: inline-flex;
            align-items: center;
        }

        .u02__column__list {
            list-style: none;
            margin-bottom: 20px;
        }

        .u02__link {
            display: block;
            color: var(--gray-dark);
            text-decoration: none;
            font-size: 0.875rem;
            margin-bottom: 8px;
        }

        .u02__link:hover {
            text-decoration: underline;
        }

        .u02__row.u02__legal {
            margin-top: 20px;
        }

        .u02__bottom-container {
            align-items: center;
        }

        .u02__column--bottom {
            font-size: 0.875rem;
            color: var(--gray-dark);
            margin-right: 20px;
        }

        .u02__column-footnote {
            color: var(--gray-dark);
            text-decoration: none;
        }

        .u02__column-footnote:hover {
            text-decoration: underline;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .u02__column__list {
                display: none;
            }

            .u02__column__list.active {
                display: block;
            }

            .twtr-hidden--md {
                display: inline-flex;
            }

    .progress-tracker {
        width: 90%;
        padding: 0 5%;
        margin: 24px auto;
        justify-content: space-between;
    }

    .progress-tracker::before {
        left: 5%;
        right: 5%;
        width: 75%;
        height: 4px;
    }

    .progress-step .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        margin: 0;
        border-width: 2px;
    }

    .progress-step.active .circle {
        transform: translate(-50%, -50%) scale(1.1);
    }

    .progress-step .label {
        position: relative;
        top: 20px;
        left: auto;
        transform: none;
        width: 100%;
        font-size: 10px;
        margin-top: 6px;
        text-align: center;
        letter-spacing: 0.3px;
    }

    .progress-step.active .label {
        transform: none;
    }

    .progress-step {
        position: relative;
        flex: 1;
        min-width: 0;
        padding-top: 30px;
    }

    .progress-step.completed .circle::after {
        font-size: 10px;
    }
}

            .action-needed-card {
                padding: 24px 16px;
                font-size: 15px;
                text-align: left;
            }

            .action-needed-card div,
            .action-needed-card ul,
            .action-needed-card li {
                width: 100%;
                box-sizing: border-box;
                word-break: break-word;
                text-align: left;
            }

            .popup-content {
                width: 95%;
                margin: 0 10px;
            }

            .modal-body {
                padding: 20px;
            }
        }

        @media (min-width: 769px) {
            .twtr-hidden--md,
            .twtr-hidden--lg,
            .twtr-hidden--xl {
                display: none;
            }

            .u02__column__list {
                display: block;
            }
        }

        @media (max-width: 600px) {
            .b01-v3__headline {
                font-size: 2rem;
            }

            .twtr-container {
                padding: 0 10px;
            }

            .u01b__nav-container {
                flex-wrap: wrap;
                gap: 10px;
            }

            .u01b__nav-profile {
                margin-left: 10px;
            }

            .u01b__username {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .action-needed-card {
                padding: 20px 12px;
                font-size: 14px;
                text-align: left;
            }
        }
		
/* Tweet Preview Styles */
.tweet-preview {
    max-width: 100%;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.tweet-header {
    display: flex;
    align-items: center;
    padding: 12px 16px 8px;
    gap: 12px;
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.tweet-user-info {
    flex: 1;
}

.tweet-display-name {
    font-weight: 700;
    font-size: 15px;
    color: #14171a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tweet-username {
    color: #657786;
    font-size: 15px;
}

.tweet-text {
    padding: 0 16px 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #14171a;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.tweet-media {
    width: 100%;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    border-top: 1px solid #e1e8ed;
}

.tweet-media img {
    width: 100%;
    height: auto;
    display: block;
}

.tweet-time {
    padding: 12px 16px;
    border-top: 1px solid #e1e8ed;
    color: #657786;
    font-size: 14px;
}		
