
body {
    background: #050505;
    color: #f0f0f0;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
}

a {
    color: #00ff41;
    text-decoration: none;
}

h1, h2, h3 {
    color: #00ff41;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.hero {
    text-align: center;
    padding: 80px 0;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #00ff41;
    padding: 20px;
    background: #0b0b0b;
}

.toggle-switch {
    margin: 20px auto;
    width: 60px;
    height: 30px;
    background: #222;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: #00ff41;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.status-widget {
    border-top: 1px solid #00ff41;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 60px;
}
