/* أساسي لتنسيق الصفحة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* تأثير الماتركس */
.matrix-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('matrix.png') repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

/* تنسيق المحتوى */
.container {
    text-align: center;
    position: relative;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.5em;
    color: #ccc;
}

/* التفاعل مع المؤثرات */
@keyframes matrix {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

.matrix-effect {
    animation: matrix 10s linear infinite;
}
