* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #121417;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
}

header {
    margin-bottom: 40px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 5px;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.back-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
}

.progress-bar {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.segment {
    width: 30px;
    height: 4px;
    background-color: #2c2e33;
    border-radius: 2px;
}

.segment.active {
    background-color: #f5a623;
}

.spacer {
    width: 34px; /* same as back-btn width */
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.content-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-header p {
    color: #8e9196;
    font-size: 15px;
    line-height: 1.4;
    padding: 0 10px;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option-card {
    background-color: #1a1c20;
    border: none;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.option-card:hover {
    background-color: #25282e;
}

.icon-container {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.import-icon {
    background-color: #f5a623;
    color: #ffffff;
}

.social-icon {
    background-color: #00d1b2;
    color: #ffffff;
}

.option-text {
    flex: 1;
}

.option-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.option-text p {
    color: #8e9196;
    font-size: 14px;
}

.arrow {
    color: #8e9196;
}

.input-container {
    margin-top: 20px;
}

.input-container textarea {
    width: 100%;
    height: 150px;
    background-color: #1a1c20;
    border: none;
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    font-size: 18px;
    font-family: "Courier New", Courier, monospace;
    resize: none;
    outline: none;
}

.input-container textarea::placeholder {
    color: #4a4d52;
}

.footer-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.btn:active {
    opacity: 0.8;
}

.btn.primary {
    background-color: #4a4d52;
    color: #8e9196;
    border: none;
}

.btn.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #2c2e33;
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .content-header h1 {
        font-size: 24px;
    }
}
