
.tab-wrapper {
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    background: rgba(52, 12, 12, 0.65);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .tab-wrapper {
        padding: 1.5rem;
    }
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(214, 47, 47, 0.12);
    border: 1px solid rgba(214, 47, 47, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button:hover {
    background: rgba(214, 47, 47, 0.22);
    border-color: rgba(214, 47, 47, 0.4);
    color: #ffffff;
}

.tab-button.active {
    background: linear-gradient(135deg, rgba(214, 47, 47, 0.85), rgba(120, 18, 18, 0.9));
    border-color: rgba(214, 47, 47, 0.6);
    color: #FFF;
    box-shadow: 0 12px 24px rgba(214, 47, 47, 0.35);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.tab-description {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.media-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.midia-card {
    border-radius: 0.75rem;
    background: rgba(76, 13, 13, 0.85);
    padding: 0.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.midia-card iframe {
    width: 100%;
    min-height: 220px;
    border: none;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .midia-card iframe {
        min-height: 280px;
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: hsl(120, 52%, 9%);
    color: hsl(122, 38%, 93%);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 15px;
}

@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
}

/* Header */
.header {
    background: #000000;
    color: white;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-btn {
    background: hsl(95, 100%, 21%);
    color: hsl(0, 0%, 100%);
    padding: 12px 24px;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(10, 31, 10, 0.4);
}

.header-btn:hover {
    background: hsl(95, 100%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10, 31, 10, 0.5);
}

.header-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 2rem;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: hsl(0, 0%, 100%);
    margin-bottom: 12px;
    font-family: 'Arial Black', Arial, sans-serif;
}

@media (min-width: 768px) {
    .page-title h1 {
        font-size: 3rem;
    }
}

.page-title p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Progress Indicator */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
}

.progress-text {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(122, 38%, 93%);
    white-space: nowrap;
}

.progress-bar-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: hsl(95, 100%, 21%);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-percentage {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

/* Step Card */
.step-card {
    background: hsl(95, 100%, 21%);
    border-radius: 0.75rem;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(10, 31, 10, 0.4);
    margin-bottom: 40px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    display: block;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    margin-bottom: 24px;
}

.select-group {
    margin-bottom: 0;
    position: relative;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: hsl(0, 0%, 100%);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    gap: 12px;
}

.custom-dropdown-button:hover {
    border-color: hsl(95, 100%, 40%);
    background-color: rgba(255, 255, 255, 0.15);
}

.custom-dropdown-button:focus {
    outline: none;
    border-color: hsl(0, 0%, 100%);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.custom-dropdown-value {
    flex: 1;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-3 {
    gap: 12px;
}

.app-button-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}

.app-button-text {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chevron-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    transition: transform 0.2s ease-in-out;
}

.custom-dropdown-button[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background: hsl(0deg 100% 21%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    padding: 8px;
}

.custom-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
}

.custom-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.custom-dropdown-item:last-child {
    margin-bottom: 0;
}

.app-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.app-item-name {
    display: block;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
    font-size: 16px;
    margin-bottom: 2px;
}

.app-item-desc {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .custom-dropdown-button {
        height: 64px;
        font-size: 18px;
        padding: 0 20px;
    }
    
    .app-button-icon {
        width: 24px;
        height: 24px;
    }
    
    .app-item-icon {
        width: 28px;
        height: 28px;
    }
}

/* Instructions Display */
.instructions-display {
    display: none;
}

.instructions-display.active {
    display: block;
}

.instructions-content {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    white-space: pre-wrap;
    font-size: 16px;
    text-align: left;
}

.instructions-content a {
    color: #4dabf7;
    text-decoration: underline;
}

.instructions-content a:hover {
    color: #74b9ff;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.75rem;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
}

.nav-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 0.75rem;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-btn-back {
    background: hsl(95, 100%, 21%);
    color: hsl(0, 0%, 100%);
    box-shadow: 0 4px 20px rgba(10, 31, 10, 0.4);
}

.nav-btn-back:hover:not(:disabled) {
    background: hsl(95, 100%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10, 31, 10, 0.5);
}

.nav-btn-next {
    background: hsl(95, 100%, 21%);
    color: hsl(0, 0%, 100%);
    box-shadow: 0 4px 20px rgba(10, 31, 10, 0.4);
}

.nav-btn-next:hover:not(:disabled) {
    background: hsl(95, 100%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10, 31, 10, 0.5);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.download-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 24px;
    background: hsl(95, 100%, 21%);
    color: hsl(0, 0%, 100%);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 20px rgba(10, 31, 10, 0.4);
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    background: hsl(95, 100%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10, 31, 10, 0.5);
}

.download-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-btn span {
    display: inline-block;
}

/* Alert */
.alert {
    padding: 20px;
    border-radius: 0.75rem;
    margin-bottom: 30px;
    text-align: center;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b7d;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #51cf66;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    color: hsl(95, 100%, 21%);
    font-size: 18px;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid hsl(95, 100%, 21%);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-left: 12px;
}

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

/* Footer */
.footer {
    text-align: center;
    padding: 60px 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 120px;
}

/* Responsive */
/* Additional Tailwind-like classes for device dropdown */
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

@media (min-width: 768px) {
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.font-bold {
    font-weight: 700;
}

.text-foreground {
    color: hsl(122, 38%, 93%);
}

.mb-4 {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .md\:mb-6 {
        margin-bottom: 1.5rem;
    }
}

.text-center {
    text-align: center;
}

.rounded-md {
    border-radius: 0.375rem;
}

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

.bg-background {
    background-color: rgba(255, 255, 255, 0.1);
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.ring-offset-background {
    --tw-ring-offset-color: hsl(120, 52%, 9%);
}

.placeholder\:text-muted-foreground::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.focus\:ring-ring:focus {
    --tw-ring-color: rgba(255, 255, 255, 0.3);
}

.focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px;
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.w-full {
    width: 100%;
}

.h-12 {
    height: 3rem;
}

@media (min-width: 768px) {
    .md\:h-16 {
        height: 4rem;
    }
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

.border-2 {
    border-width: 2px;
}

.hover\:border-accent:hover {
    border-color: hsl(95, 100%, 40%);
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

@media (min-width: 768px) {
    .md\:w-6 {
        width: 1.5rem;
    }
    
    .md\:h-6 {
        height: 1.5rem;
    }
}

.rounded {
    border-radius: 0.25rem;
}

.object-cover {
    object-fit: cover;
}

.font-semibold {
    font-weight: 600;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.opacity-50 {
    opacity: 0.5;
}

.mt-3 {
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .md\:mt-4 {
        margin-top: 1rem;
    }
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

@media (min-width: 768px) {
    .md\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

.text-muted-foreground {
    color: rgba(255, 255, 255, 0.7);
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.text-primary {
    color: hsl(95, 100%, 40%);
}

.justify-between {
    justify-content: space-between;
}

/* Additional classes for Step 1 */
.bg-card {
    background: hsl(95, 100%, 21%);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-lg {
    box-shadow: 0 4px 20px rgba(10, 31, 10, 0.4);
}

.p-4 {
    padding: 1rem;
}

@media (min-width: 768px) {
    .md\:p-6 {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:p-8 {
        padding: 2rem;
    }
}

.mb-4 {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .md\:mb-6 {
        margin-bottom: 1.5rem;
    }
}

.text-accent {
    color: hsl(95, 100%, 40%);
}

/* Additional classes for Step 4 and main container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
}

.pt-16 {
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .md\:pt-24 {
        padding-top: 6rem;
    }
}

.pb-8 {
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .md\:pb-12 {
        padding-bottom: 3rem;
    }
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

@media (min-width: 768px) {
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.mb-2 {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .md\:mb-4 {
        margin-bottom: 1rem;
    }
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (min-width: 768px) {
    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

.mb-8 {
    margin-bottom: 2rem;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-in-out;
}

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

.bg-secondary {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-primary {
    background-color: hsl(95, 100%, 21%);
}

.rounded-full {
    border-radius: 9999px;
}

.h-2 {
    height: 0.5rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

@media (min-width: 768px) {
    .md\:w-12 {
        width: 3rem;
    }
    
    .md\:h-12 {
        height: 3rem;
    }
}

.rounded-lg {
    border-radius: 0.5rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

@media (min-width: 768px) {
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.bg-gradient-primary\/20 {
    background: linear-gradient(135deg, rgba(95, 100%, 21%, 0.2), rgba(95, 100%, 21%, 0.1));
}

.border-accent\/30 {
    border-color: rgba(95, 100%, 40%, 0.3);
}

.gap-2 {
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .md\:gap-3 {
        gap: 0.75rem;
    }
}

.mb-3 {
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .md\:mb-4 {
        margin-bottom: 1rem;
    }
}

.mb-1 {
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .md\:mb-2 {
        margin-bottom: 0.5rem;
    }
}

.mb-1\.5 {
    margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
    .md\:mb-2 {
        margin-bottom: 0.5rem;
    }
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.h-10 {
    height: 2.5rem;
}

.w-10 {
    width: 2.5rem;
}

.focus-visible\:outline-none:focus-visible {
    outline: none;
}

.focus-visible\:ring-2:focus-visible {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.focus-visible\:ring-ring:focus-visible {
    --tw-ring-color: rgba(255, 255, 255, 0.3);
}

.focus-visible\:ring-offset-2:focus-visible {
    --tw-ring-offset-width: 2px;
}

.file\:border-0::file-selector-button {
    border-width: 0;
}

.file\:bg-transparent::file-selector-button {
    background-color: transparent;
}

.file\:text-sm::file-selector-button {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.file\:font-medium::file-selector-button {
    font-weight: 500;
}

.file\:text-foreground::file-selector-button {
    color: hsl(122, 38%, 93%);
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .md\:space-y-4 > * + * {
        margin-top: 1rem;
    }
}

.border-t {
    border-top-width: 1px;
}

.border-border {
    border-color: rgba(255, 255, 255, 0.2);
}

.pt-4 {
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .md\:pt-6 {
        padding-top: 1.5rem;
    }
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

@media (min-width: 768px) {
    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

.p-3 {
    padding: 0.75rem;
}

@media (min-width: 768px) {
    .md\:p-4 {
        padding: 1rem;
    }
}

.border {
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.2);
}

.bg-card\/80 {
    background-color: rgba(95, 100%, 21%, 0.8);
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .md\:space-y-3 > * + * {
        margin-top: 0.75rem;
    }
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.pb-2 {
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .md\:pb-3 {
        padding-bottom: 0.75rem;
    }
}

.px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.text-primary-foreground {
    color: hsl(0, 0%, 100%);
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

@media (min-width: 768px) {
    .md\:w-7 {
        width: 1.75rem;
    }
    
    .md\:h-7 {
        height: 1.75rem;
    }
}

.rounded-full {
    border-radius: 9999px;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

@media (min-width: 768px) {
    .md\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

.whitespace-pre-wrap {
    white-space: pre-wrap;
}

.bg-yellow-200 {
    background-color: #fef08a;
}

.dark\:bg-yellow-900\/40 {
    background-color: rgba(113, 63, 18, 0.4);
}

.text-yellow-900 {
    color: #78350f;
}

.dark\:text-yellow-200 {
    color: #fef08a;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.bg-orange-200 {
    background-color: #fed7aa;
}

.dark\:bg-orange-900\/40 {
    background-color: rgba(124, 45, 18, 0.4);
}

.text-orange-900 {
    color: #7c2d12;
}

.dark\:text-orange-200 {
    color: #fed7aa;
}

.bg-green-200 {
    background-color: #bbf7d0;
}

.dark\:bg-green-900\/40 {
    background-color: rgba(20, 83, 45, 0.4);
}

.text-green-900 {
    color: #14532d;
}

.dark\:text-green-200 {
    color: #bbf7d0;
}

.bg-red-200 {
    background-color: #fecaca;
}

.dark\:bg-red-900\/40 {
    background-color: rgba(127, 29, 29, 0.4);
}

.text-red-900 {
    color: #7f1d1d;
}

.dark\:text-red-200 {
    color: #fecaca;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.max-h-64 {
    max-height: 16rem;
}

.object-contain {
    object-fit: contain;
}

.cursor-pointer {
    cursor: pointer;
}

.hover\:opacity-80:hover {
    opacity: 0.8;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.italic {
    font-style: italic;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.bg-accent\/10 {
    background-color: rgba(95, 100%, 40%, 0.1);
}

.border-accent\/20 {
    border-color: rgba(95, 100%, 40%, 0.2);
}

.p-4 {
    padding: 1rem;
}

@media (min-width: 768px) {
    .md\:p-5 {
        padding: 1.25rem;
    }
}

.h-11 {
    height: 2.75rem;
}

.px-8 {
    padding-left: 2rem;
}

.px-8 {
    padding-right: 2rem;
}

.bg-\[\#25D366\] {
    background-color: #25D366;
}

.hover\:bg-\[\#20BA5A\]:hover {
    background-color: #20BA5A;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.peer-disabled\:cursor-not-allowed:disabled ~ * {
    cursor: not-allowed;
}

.peer-disabled\:opacity-70:disabled ~ * {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .main-content {
        padding: 0 1.25rem;
        margin: 40px auto;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 32px 24px;
    }
    
    .header-container {
        padding: 0 1.25rem;
    }
    
    .header-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .progress-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .progress-bar-container {
        width: 100%;
    }
}

.bg-container {
    background: #230b0a;
}