body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: black;
    color: white;
    box-sizing: border-box;
}


header {
    margin-bottom: 15px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px; 
    text-align: center;
}

.header-logo {
    width: 220px;
    height: auto;
    margin: 0;
    margin-top: 10px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

main, footer {
    width: 100%;
    max-width: 400px;
}

footer {
    margin-top: 0;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    background-color: #000;
    padding: 25px 20px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.box-link:hover {
    background-color: #111;
    border-color: #555;
}

.box-label {
    color: #888;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.box-value {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.bg-skin {
    background-color: #f1c27d;
    border-color: #e0b06b;
}

.bg-skin:hover {
    background-color: #e0b06b;
    border-color: #cfa05a;
}

.bg-skyblue {
    background-color: #87ceeb;
    border-color: #76bdda;
}

.bg-skyblue:hover {
    background-color: #76bdda;
    border-color: #65acc9;
}

.bg-skin .box-label, 
.bg-skyblue .box-label {
    color: #444; 
    font-size: 13px;
    font-weight: 800;
}

.bg-skin .box-value, 
.bg-skyblue .box-value {
    color: #000; 
    font-size: 22px;
    font-weight: 900;
}


/* Install Popup */
.install-popup {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.popup-content {
    background-color: #111;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.popup-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #fff;
}
.popup-content p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.4;
}
.popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.popup-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}
.btn-secondary {
    background-color: #ef4444;
    color: #fff;
}
.btn-secondary:hover {
    background-color: #dc2626;
}
.btn-primary {
    background-color: #10b981; 
    color: #000;
}
.btn-primary:hover {
    background-color: #0d9668;
}

/* Shimmering Divider Animation */
.fx-misc-divider {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0; /* Add vertical space around the divider */
}
.fx-misc-divider::before,
.fx-misc-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    background-size: 200% 100%;
    animation: fx-divider-shimmer 2.5s linear infinite;
}
.fx-misc-divider::after { animation-direction: reverse; }
.fx-misc-divider span {
    padding: 0 12px;
    color: #8b5cf6;
    font-size: 14px;
    filter: drop-shadow(0 0 6px rgba(139,92,246,0.5));
}
@keyframes fx-divider-shimmer {
    0%   { background-position: 200% 50%; opacity: 0.3; }
    50%  { opacity: 1; }
    100% { background-position: -200% 50%; opacity: 0.3; }
}
