@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000 url('https://www.transparenttextures.com/patterns/cubes.png'); /* خلفية سوداء مع نقش خفيف */
    color: #e0e0e0;
}

/* --- Shiny Silver Effect --- */
.logo, .section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background-image: linear-gradient(145deg, #999, #fff 50%, #999);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(200, 200, 200, 0.2);
}

/* --- Navigation --- */
nav {
    position: fixed;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.logo {
    font-size: 2rem;
}

/* --- Home Section --- */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: #fff;
}

.home-content .text-1 { font-size: 1.8rem; }
.home-content .text-2 { font-size: 4.5rem; font-family: 'Orbitron', sans-serif; font-weight: 700; }
.home-content .text-3 { font-size: 2.5rem; margin: 0.5rem 0; }
.home-content .text-3 .typing { color: #00e5ff; font-weight: 700; }

/* --- Sections & Cards (Glass Effect) --- */
.projects {
    padding: 6rem 3rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 350px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00e5ff; /* لون سيان لامع */
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.lang-menu button, .discord-button {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-menu button {
    background: transparent; border: 1px solid #777;
    color: #999; padding: 0.5rem 1rem; margin-left: 0.5rem;
}
.lang-menu button:hover { background: #ccc; color: #111; }

.discord-button {
    display: inline-block;
    background: #00e5ff; color: #000;
    padding: 0.8rem 2.5rem; margin-top: 2rem;
    text-decoration: none; font-size: 1.2rem;
    border: 2px solid #00e5ff;
}
.discord-button:hover { background: transparent; color: #00e5ff; }
