/* Basic Reset and Variables for DARK GOLD THEME */
:root {
    --main-bg-color: #0d0d0d; /* Very Deep Dark background */
    --card-bg-color: #1a1a1a; /* Dark Card background */
    --primary-color: #ffd700; /* Pure Gold/Yellow for accents */
    --status-color: #00e0ff; /* Neon Blue for Operational/Button Text */
    --text-color: #e0e0e0; /* Light text */
    --shadow-dark: 0 6px 15px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--main-bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 30px;
    background: var(--card-bg-color);
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    text-align: center;
    border: 1px solid #333;
}

header h1 {
    color: var(--primary-color); /* Gold Accent */
    font-size: 2.5em;
    margin-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

header p {
    font-size: 1.1em;
    color: #a0a0a0;
    margin-bottom: 30px;
}

/* Status Box */
.status-box {
    background-color: #2c2c2c;
    border: 1px solid #3a3a3a;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: none;
}

.status-indicator {
    font-size: 3em;
    margin-bottom: 15px;
}

.status-box h2 {
    color: var(--status-color); /* Neon Blue for Operational */
    font-size: 2em;
    margin-bottom: 10px;
}

.status-box p {
    margin: 5px 0;
}

.small-text {
    font-size: 0.9em;
    color: #b0b0b0;
    margin-top: 15px;
    border-top: 1px dashed #555;
    padding-top: 10px;
}

/* Access Links Section */
.access-links {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #3a3a3a;
}

.access-links h2 {
    font-size: 1.3em;
    color: var(--primary-color); /* Gold Accent */
    margin-bottom: 20px;
}

/* Button Styling */
.action-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--status-color); /* Neon border */
}

/* Specific Pi-hole Button Color */
.pihole-button {
    background-color: transparent; /* Transparent background */
    color: var(--status-color); /* NEON BLUE TEXT */
    text-shadow: 0 0 5px var(--status-color); /* Glow effect */
}

.action-button:hover {
    background-color: #1a1a1a; /* Dark background on hover */
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.5); /* Stronger neon glow on hover */
}

/* Footer Styling */
footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #3a3a3a;
    font-size: 0.8em;
    color: #777;
}

