* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    @font-face {
  font-family: 'IRANYekan';
  src: url('./src/iranyekan.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
font-family: 'IRANYekan';
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
}
.logo{
    display:flex;
    justify-content:center;
    margin-top:20px;
}
.logo img{
    width:180px;
    height:50px;
}
.bot-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.loader p {
    color: #fff;
    margin-top: 15px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-content {
    display: none;
    padding: 30px;
}

.step-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#step-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

#step-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

#phone-input {
    margin-bottom: 15px;
    font-family:IRANyekan;
}

#phone-input input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
    font-family:IRANyekan;
}

#phone-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family:IRANyekan;
}

#phone-input button {
    width: 100%;
    padding: 12px;
    background: rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family:IRANyekan;
}

#phone-input button:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin-bottom: 15px;
}

#buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
a.step-button {
    display: block;
    text-decoration: none;
    text-align: center;
}
.step-button {
    padding: 15px;
    font-family: 'IRANYekan';
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.step-button:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.nav-button {
    font-family: 'IRANYekan';
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    color: #fff;
}
