/**
 * PlusLayer Global Stylesheet
 * Optimized for: Desktop & Mobile (100% Responsive)
 * Features: Exo Font, Justified Text, Premium Shadow Effects
 */

:root {
    --primary: #0056b3;
    --dark: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Exo', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

.main-wrapper {
    width: 100%;
    max-width: 650px;
}

/* Lang Switcher Styling */
.lang-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 12px;
}
.lang-nav a {
    text-decoration: none;
    color: var(--gray);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}
.lang-nav a:hover { opacity: 0.8; }
.lang-nav a.active { color: var(--primary); }
.lang-nav img { width: 18px; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

/* Card Styling */
.card {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    text-align: center;
}
.main-logo { max-width: 220px; height: auto; margin-bottom: 35px; }
h1 { font-size: 26px; margin-bottom: 15px; font-weight: 700; color: var(--dark); }

.domain-highlight {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 25px;
    padding: 5px 15px;
    background: #f0f7ff;
    border-radius: 8px;
}

/* Justified Description Block */
.main-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    text-align: justify;
    text-justify: inter-word;
    margin-top: 10px;
}

/* Footer Styling */
.site-footer { margin-top: 40px; text-align: center; }
.service-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 25px;
}
.service-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.2s;
}
.service-links a:hover { color: var(--dark); }

.bottom-branding {
    font-size: 12.5px;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}
.bottom-branding a {
    color: var(--dark);
    font-weight: 700;
    text-decoration: none;
    margin-left: 3px;
}

/* Responsive Overrides */
@media (max-width: 500px) {
    .card { padding: 35px 25px; }
    h1 { font-size: 22px; }
    .service-links { flex-direction: column; gap: 10px; }
}