/* IranSans (مسیر فونت را مطابق پروژه خود تنظیم کنید) */
@font-face {
    font-family: "IranSans";
    src: url("fonts/IRANSans.woff2") format("woff2");
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "IranSans", Tahoma, sans-serif;
    background: radial-gradient(circle at top, #222, #000);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo img {
    width: 180px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(145deg, #111, #1b1b1b);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 15px 20px;
    min-width: 95px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    animation: glow 1.5s infinite alternate;
}

.time-box label {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(212,175,55,0.4);
    }
    to {
        text-shadow: 0 0 15px rgba(212,175,55,0.9);
    }
}

.contact {
    font-size: 1rem;
}

.contact a {
    color: #d4af37;
    text-decoration: none;
}
.site-footer {
    background: linear-gradient(180deg, #02131f, #031f33);
    padding: 14px;
    font-size: 0.9rem;
    color: #d6ecfa;
    text-align: center;
}

.site-footer .footer-credit {
    color: #0e77b7;                 /* آبی برند */
    text-decoration: none;
    font-weight: 500;
    margin-right: 4px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-footer .footer-credit:hover {
    color: #4fb3ff;                 /* آبی روشن‌تر */
    text-shadow: 0 0 10px rgba(79, 179, 255, 0.7);
    text-decoration: underline;
}

