@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    background: #07181a;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(to right,
            transparent,
            transparent 95%,
            #d4af37 96%),
        repeating-linear-gradient(to bottom,
            transparent,
            transparent 95%,
            #d4af37 96%);
    background-size: 40px 40px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 450px;
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.logo {
    margin-top: 10px;
    margin-bottom: -45px;
}

.logo img {
    width: 45%;
    max-width: 200px;
}

h1 {
    margin: 15px 0 5px;
    font-size: 6vw;
    max-font-size: 24px;
    color: #f9f5e6;
}

p {
    font-size: 4vw;
    max-font-size: 16px;
    margin-bottom: 20px;
    color: #e8dcb5;
}

.link-btn {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    margin: 10px auto;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 4.2vw;
    max-width: 270px;
    border: 1px solid #d4af37;
    transition: 0.3s;
    text-align: center;
    /* النص في المنتصف */
}

.link-btn i {
    position: absolute;
    right: 15px;
    /* الأيقونة في أقصى اليمين */
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #d4af37;
}

.link-btn:hover {
    background: #d4af37;
    color: #000;
}

footer {
    margin-top: 25px;
    font-size: 3.5vw;
    max-font-size: 14px;
    color: #c5b97e;
}

.rightside {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    margin-left: 30px;
    width: auto;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.leftside {
    position: fixed;
    top: 0;
    right: 0;
    margin-right: 25px;
    height: 100%;
    width: auto;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 400px) {
    .link-btn {
        font-size: 14px;
        padding: 10px;
    }

    h1 {
        font-size: 18px;
    }

    p {
        font-size: 12px;
    }
}