:root{
    --bg:#160C21; /* page background */
    --card:#0f172a; /* card background */
    --accent:#22d3ee; /* cyan */
    --accent-2:#a78bfa; /* violet */
    --text:#e5e7eb; /* light text */
    --muted:#9ca3af; /* muted text */
    --ring: rgba(34,211,238,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family: "Barlow", sans-serif;
    background-color: var(--bg);
    display:flex;
    align-items:center;
    justify-content:center;
}

.under-maintenance {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding:clamp(16px, 4vw, 40px);
    color:var(--text);
}

.games-stores-logo img {
    max-width: 180px;
    height:auto;
    width: 100%;
}

.settings-img img {
    max-width: 140px;
    height:auto;
    width: 100%;
}

h1 {
    margin: 20px 0 10px; 
    font-size: clamp(20px, 5vw, 32px);
    line-height:1.2;
    color: #F9AA01;
}

p.lead {
    margin:6px 0 0; 
    color: #fff; 
    font-size: clamp(14px, 3vw, 18px);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-links a {
    color:  #fff;
    display: flex;
    align-items: center;
    font-size: clamp(14px, 3.5vw, 18px);
    text-decoration: none;
    transition: color .3s ease;
}

.contact-links a:hover {
    color: var(--accent);
}

.contact-links img{
    margin-right: 8px;
    width: clamp(22px, 5vw, 30px);
    height: auto;
}

/* Small screen optimizations */
@media (max-width: 400px) {
    .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    }
}