﻿/* ✅ قسم الترحيب */
.welcome-section {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    animation: bounceIn 1s ease;
}

.main-title {
    font-size: 36px;
    color: #6a1b9a;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
}

.subtitle {
    font-size: 20px;
    color: #444;
    font-weight: 600;
    margin-top: 5px;
    font-family: 'Cairo', sans-serif;
}

/* ✅ شبكة الكروت */
.game-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

/* ✅ كارت اللعبة */
.game-card {
    background-color: #fff9db;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 2px dashed #ff9800;
}

    .game-card:hover {
        background-color: #fff3bf;
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

/* ✅ الأيقونة */
.icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ✅ عنوان اللعبة */
.label {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4b5563;
    margin-bottom: 10px;
}

/* ✅ وصف مختصر تحت كل كارت */
.description {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

/* ✅ أنيميشن دخول */
@keyframes bounceIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* نفس عرض شبكة الكروت + توسيط كامل */
.notice-center {
    max-width: 1000px; /* يطابق .game-options-grid */
    margin: 16px auto; /* سنتر أفقيًا */
    text-align: center; /* النص في الوسط */
}

/* اختياري: شكل ألطف للرسالة */
.notice-center {
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,.05);
}

/* ✅ دعم الموبايل */
@media (max-width: 768px) {
    .main-title {
        font-size: 26px;
    }

    .subtitle {
        font-size: 18px;
    }

    .icon {
        font-size: 3rem;
    }

    .label {
        font-size: 1.3rem;
    }

    .description {
        font-size: 0.9rem;
    }
}
