* { box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    direction: rtl;
}
.site-header {
    text-align: center;
    padding: 3rem 1rem;
}
.site-header h1 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.site-header p {
    margin: 0;
    opacity: 0.85;
    font-size: 1.1rem;
}
.site-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    display: block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    border-color: rgba(233, 69, 96, 0.5);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e94560;
}
.card h2 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
}
.card p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}
.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}
