/* طرح کلی */
body {
    background-color: #F5F1E8; /* رنگ کرمی */
    margin: 0;
    font-family: Tahoma, sans-serif;
    text-align: center;
    position: relative;
    min-height: 100vh;
    padding: 10px; /* فاصله از لبه */
}

/* حاشیه طلایی با طرح ساده */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 12px solid transparent;
    background: 
        repeating-linear-gradient(45deg, #D4AF37 0, #D4AF37 5px, 
                                transparent 5px, transparent 10px),
        repeating-linear-gradient(-45deg, #D4AF37 0, #D4AF37 5px, 
                                transparent 5px, transparent 10px);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    pointer-events: none;
    z-index: 100;
}

/* عنوان WRON */
.site-title {
    color: #D4AF37; /* طلایی */
    font-size: 4rem;
    font-weight: bold;
    margin: 40px 0;
    text-shadow: 
        -2px -2px 0 #000,  
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000; /* خط سیاه دور حروف */
    letter-spacing: 8px;
    font-family: serif;
}

/* لوگوی ماه با CSS */
.logo-container::before,
.logo-container::after {
    content: "🌙";
    font-size: 3.5rem;
    display: inline-block;
    margin: 0 25px;
    vertical-align: middle;
}

/* دکمه اصلی */
.main-button {
    background: linear-gradient(#D4AF37, #B8860B);
    color: #000;
    border: 4px solid #5D432C; /* خط تیره */
    border-radius: 15px;
    padding: 22px 60px;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin: 50px auto;
    box-shadow: 0 8px 0 #5D432C;
    position: relative;
    top: 0;
    transition: all 0.1s;
}
.main-button:active {
    top: 4px;
    box-shadow: 0 4px 0 #5D432C;
}

/* منوی کشویی */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: black;
    color: white;
    border: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    z-index: 1000;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -300px; /* مخفی */
    width: 75%; /* نصف صفحه */
    height: 100%;
    background: white;
    transition: 0.3s;
    padding: 25px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    z-index: 1001;
    text-align: right;
}

.close-btn {
    background: black;
    color: #FFD700; /* زرد */
    border: 3px solid #FFD700;
    width: 100%;
    padding: 18px;
    margin-bottom: 30px;
    font-size: 1.3rem;
    border-radius: 10px;
    font-weight: bold;
}

.menu-item {
    display: block;
    background: black;
    color: #FFD700;
    border: 3px solid #FFD700;
    margin: 20px 0;
    padding: 20px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* برای صفحات دیگر */
.page-title {
    color: #5D432C;
    margin: 30px 0;
    font-size: 2rem;
}

.button-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    margin: 40px auto;
    padding: 0 20px;
}

.option-btn {
    background: linear-gradient(#D4AF37, #B8860B);
    color: #000;
    border: 4px solid #5D432C;
    border-radius: 12px;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

.back-btn {
    background: #5D432C;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 40px;
    text-decoration: none;
    display: inline-block;
}