/* ------------------------------
   فونت شبنم (آروان‌کلاد)
--------------------------------*/
@font-face {
    font-family: 'Shabnam';
    src: url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam.woff2') format('woff2'),
         url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam.woff') format('woff'),
         url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Shabnam';
    src: url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam-Bold.woff2') format('woff2'),
         url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam-Bold.woff') format('woff'),
         url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Shabnam';
    src: url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam-Light.woff2') format('woff2'),
         url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam-Light.woff') format('woff'),
         url('https://lib.arvancloud.ir/shabnam-font/5.0.1/Shabnam-Light.ttf') format('truetype');
    font-weight: 300;
}

/* ------------------------------
   دارک مود + استایل مدرن
--------------------------------*/
* {
    box-sizing: border-box;
    font-family: 'Shabnam', sans-serif;
}

body {
    margin: 0;
    background: #0d0d0d;
    color: #e5e5e5;
    direction: rtl;
    padding: 0;
}

.container {
    max-width: 480px;
    margin: 60px auto;
    background: #161616;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    border: 1px solid #222;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: bold;
    color: #fff;
}

.info {
    margin: 12px 0;
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.8;
}

.button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff8a00, #ff5e00);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.2s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 0, 0.4);
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-success {
    background: rgba(0, 200, 83, 0.15);
    color: #00e676;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.alert-error {
    background: rgba(255, 82, 82, 0.15);
    color: #ff5252;
    border: 1px solid rgba(255, 82, 82, 0.3);
}

input[type="text"],
input[type="password"],
textarea,
input[type="number"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #111;
    color: #eee;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.2s;
}

input:focus,
textarea:focus {
    border-color: #ff6a00;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.4);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 20px;
}

table th, table td {
    padding: 10px 8px;
    border-bottom: 1px solid #222;
    text-align: right;
}

table tr:hover {
    background: #1e1e1e;
}

a {
    color: #ff8a00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
