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;
}

h1 {
    color: white;
    font-size: 56px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    margin-top: 10px; 
}

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

footer {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px dotted #444;
}

.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;
}

/* Hexagon Loader Animation */
.fx-loader-hexagon {
  display: inline-flex;
  gap: 24px; 
  margin-top: 0; 
}
.fx-loader-hexagon span {
  width: 48px;  
  height: 54px; 
  background: linear-gradient(180deg, #10b981, #06b6d4);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: fx-hex-pulse 1.4s ease-in-out infinite;
}
.fx-loader-hexagon span:nth-child(2) { animation-delay: 0.15s; background: linear-gradient(180deg, #06b6d4, #8b5cf6); }
.fx-loader-hexagon span:nth-child(3) { animation-delay: 0.3s; background: linear-gradient(180deg, #8b5cf6, #ec4899); }
.fx-loader-hexagon span:nth-child(4) { animation-delay: 0.45s; background: linear-gradient(180deg, #ec4899, #f59e0b); }
.fx-loader-hexagon span:nth-child(5) { animation-delay: 0.6s; background: linear-gradient(180deg, #f59e0b, #10b981); }
.fx-loader-hexagon span:nth-child(6) { animation-delay: 0.75s; }
@keyframes fx-hex-pulse {
  0%, 100% { transform: scale(0.7); opacity: 0.4; }
  50%      { transform: scale(1.1); opacity: 1; }
}

/* 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: transparent;
    color: #888;
}
.btn-secondary:hover {
    color: #fff;
}
.btn-primary {
    background-color: #10b981; 
    color: #000;
}
.btn-primary:hover {
    background-color: #0d9668;
}
