# ─────────────────────────────────────────
# ECHOENGLISH INTERFACE
# ─────────────────────────────────────────
st.markdown("""
<style>
/* Background */
.stApp {
background: linear-gradient(135deg,#0f172a,#1e293b);
color: white;
}
/* Title */
.echo-title {
font-size: 48px;
font-weight: bold;
text-align: center;
color: #38bdf8;
}
/* Subtitle */
.echo-sub {
text-align:center;
font-size:18px;
color:#cbd5f5;
}
/* Chat box */
.stChatMessage {
border-radius:15px;
padding:10px;
}
/* Sidebar */
section[data-testid="stSidebar"] {
background:#020617;
}
</style>
""", unsafe_allow_html=True)
st.markdown(
"""
<div class="echo-title">⚡ EchoEnglish AI</div>
<div class="echo-sub">Practice English with Smart Feedback</div>
""",
unsafe_allow_html=True
)