/* تنظیمات عمومی و رنگ‌های اصلی */
body {
    margin: 0;
    padding: 0;
    font-family: monospace; /* فونت مخصوص برنامه‌نویسی */
    color: #00FF41; /* رنگ متن: سبز نئونی */
    background-color: #000000; /* رنگ پس‌زمینه: کاملاً مشکی */
    overflow: hidden; /* جلوگیری از اسکرول برای افکت */
    text-align: center;
}

/* ------------------ افکت باران متنی (Matrix Rain) ------------------ */

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.8; /* شفافیت برای دید بهتر محتوا */
    z-index: -1; /* قرارگیری در پشت محتوای اصلی */
    /* اینجا می‌توانید با یک تصویر GIF متحرک یا کد جاوا اسکریپت پیشرفته‌تر، افکت بهتری ایجاد کنید. 
       برای مثال ساده، از یک گرادیان استفاده می‌کنیم که حس شلوغی را بدهد: */
    background-image: repeating-linear-gradient(0deg, #000000, #001000 1px, #002000 2px, #003000 3px);
    
    /* یک انیمیشن ساده برای لرزش جزئی کل صفحه برای حس "هنگ کرده" */
    animation: slight-shake 5s infinite alternate;
}

@keyframes slight-shake {
    0% { transform: translate(1px, 1px); }
    100% { transform: translate(-1px, -1px); }
}

/* ------------------ محتوای اصلی ------------------ */

.content {
    position: relative;
    z-index: 10;
    padding: 40px;
}

.hacker-header h1 {
    font-size: 2.5em;
    text-shadow: 0 0 5px #00FF41, 0 0 10px #00FF41; /* افکت نئونی */
    margin-bottom: 10px;
}

.hacker-header p {
    font-size: 1.2em;
    margin-top: 0;
    color: #66FF88; /* سبز روشن‌تر */
}

/* ------------------ دکمه‌ها ------------------ */

.buttons-container {
    margin-top: 50px;
}

.hacker-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border: 2px solid #00FF41;
    background-color: transparent;
    color: #00FF41;
    text-decoration: none;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 5px #00FF41;
    text-transform: uppercase;
}

.hacker-button:hover {
    background-color: #00FF41;
    color: #000000;
    box-shadow: 0 0 15px #00FF41, 0 0 25px #00FF41;
    transform: scale(1.05);
}

/* ------------------ ظاهر موبایل ------------------ */

@media (max-width: 600px) {
    .hacker-header h1 {
        font-size: 1.5em;
    }
    .hacker-button {
        display: block;
        width: 80%;
        margin: 15px auto;
    }
}