body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
    direction: rtl;
}

/* Layout بدون سایدبار */
.page {
    display: block;
    width: 100%;
    min-height: 100vh;
}

/* بنر بالای سایت */
.top-banner {
    background: linear-gradient(135deg, #0b192c 0%, #1a365d 100%);
    color: #d4af37; /* رنگ طلایی */
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 3px solid #d4af37;
}

.floral-decor {
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.banner-content {
    text-align: center;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 1px;
}

.digital-clock {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 300;
    margin-top: 10px;
    direction: ltr;
    letter-spacing: 3px;
}

/* ۳ بخش تاریخ */
.dates-wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.date-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .date-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    /* نوار رنگی بالای هر کارت */
    .date-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
    }

    .date-box.persian::before {
        background-color: #27ae60;
    }

    .date-box.hijri::before {
        background-color: #f39c12;
    }

    .date-box.gregorian::before {
        background-color: #2980b9;
    }

.box-title {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.box-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.5;
}