@font-face{
    font-family:"Vazir-Bold"; 
    src:url("https://dl.mohammadebrahimi.ir/stylesheet/fonts/vazir/Vazir-Bold.woff") format("woff"),
    url("https://dl.mohammadebrahimi.ir/stylesheet/fonts/vazir/Vazir-Bold.woff2") format("woff2");
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Vazir-Bold"!important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.countdown {
    font-size: 36px;
    font-weight: 700;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: inline-block;
    min-width: 100px;
}

a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}