/* 🎮 فونت و بک‌گراند کلی */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background:
            linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)),
            url('assets/img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #eaeaea;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}
.hideen{
overflow: auto;
}
/* محتوای اصلی */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* ✨ تیترها */
h1, h2, h3 {
    color: #00e0ff;
    text-shadow: 0 0 10px rgba(0,224,255,0.7), 0 0 20px rgba(0,224,255,0.4);
    margin-bottom: 1rem;
    animation: glowPulse 3s infinite alternate;
}
@keyframes glowPulse {
    from { text-shadow: 0 0 8px rgba(0,224,255,0.6); }
    to { text-shadow: 0 0 18px rgba(0,224,255,0.9); }
}

/* 🚀 هدر / نوار بالا */
header, .navbar {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(8px);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(0,224,255,0.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0 0 12px 12px;
}
.navbar a {
    color: #f0f0f0;
    font-weight: 600;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.navbar a:hover {
    background: rgba(0,224,255,0.1);
    color: #00e0ff;
    box-shadow: 0 0 12px rgba(0,224,255,0.4);
    transform: translateY(-2px);
}

/* 🎮 دکمه‌ها */
.btn {
    padding: 0.8rem 1.6rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #7e22ce, #ec4899);
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.4s ease, box-shadow 0.3s ease;
}
.btn:hover {
    background: linear-gradient(135deg, #6d28d9, #db2777);
    transform: scale(1.08) rotate(-1deg);
    box-shadow: 0 0 20px rgba(236,72,153,0.6);
}

/* 🕹️ کارت‌ها */
.request-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(40,40,40,0.9), rgba(25,25,25,0.9));
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    transition: all 0.35s ease;
}
.request-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0,224,255,0.6);
    box-shadow: 0 0 20px rgba(0,224,255,0.4);
}

/* 🔗 لینک‌ها */
a {
    color: #00e0ff;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.3s ease;
}
a:hover {
    color: #80ffff;
    text-shadow: 0 0 8px rgba(0,224,255,0.6);
}

/* 📝 فرم‌ها */
form {
    background: rgba(20, 20, 20, 0.85);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}
form input,
form textarea {
    background-color: #141414;
    border: 1px solid #333;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.6rem;
    width: 100%;
    transition: all 0.3s ease;
}
form input:focus,
form textarea:focus {
    outline: none;
    border-color: #00e0ff;
    box-shadow: 0 0 10px rgba(0,224,255,0.5);
    background: rgba(30,30,30,0.9);
}
form button {
    padding: 0.8rem 1.6rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #7e22ce, #ec4899);
    color: white;
    font-weight: bold;
    border: none;
    box-shadow: 0 0 10px rgba(168,85,247,0.5);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.3s ease, box-shadow 0.3s ease;
}
form button:hover {
    background: linear-gradient(to right, #6d28d9, #db2777);
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(236,72,153,0.6);
}

/* ⚡ فوتر */
footer {
    background: rgba(15, 15, 25, 0.9);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(0,224,255,0.15);
    color: #bbb;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: auto; /* همیشه پایین */
}
footer a {
    color: #00e0ff;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #80ffff;
}
