:root {
    --brand-primary: #D76C0B;
    --brand-secondary: #DE9211;
    --brand-accent: #45FFD2;
    --bg-dark: #161616;
    --bg-card: #2B2B2B;
    --text-white: #FFFFFF;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Prevent zoom on iOS */
input, textarea, select {
    font-size: 16px !important;
}

/* Fix to ensure image always loads with its proportion */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

textarea::-webkit-scrollbar {
    width: 8px;
}
textarea::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
textarea::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.glass-effect {
    background: rgba(43, 43, 43, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#progress-fill {
    transition: width 0.4s ease;
    background-color: var(--brand-accent);
    box-shadow: 0 0 10px var(--brand-accent);
}

.hidden { display: none !important; }

/* Media query for very small screens */
@media (min-width: 480px) {
    .xs\:block { display: block; }
    .xs\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .xs\:border-y-0 { border-top: 0; border-bottom: 0; }
    .xs\:border-l { border-left: 1px solid rgba(255,255,255,0.05); }
    .xs\:border-r { border-right: 1px solid rgba(255,255,255,0.05); }
    .xs\:py-0 { padding-top: 0; padding-bottom: 0; }
}