* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #000;
    color: #0f0;
    background-image: 
        linear-gradient(rgba(0, 20, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="0" y="50" font-family="monospace" font-size="10" fill="rgba(0,255,0,0.1)">01010101 10101010 01010101 10101010</text></svg>');
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    color: #0f0;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #0f0;
    text-shadow: 0 0 5px #0f0;
}

a {
    text-decoration: none;
  }

.main-content {
    display: flex;
    flex: 1;
    padding: 30px;
    gap: 20px;
}

.container {
    flex: 1;
    background-color: rgba(0, 15, 0, 0.7);
    border: 1px solid #0f0;
    border-radius: 0;
    padding: 25px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    color: #0f0;
}

.container:hover {
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    transform: translateY(-5px);
}

h2 {
    border-bottom: 1px solid #0f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: #0f0;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #0f0;
}

.login-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    font-size: 1.1em;
}

.login-info a {
    color: #0f0;
    text-decoration: none;
    position: relative;
}

.login-info a:hover {
    text-shadow: 0 0 10px #0f0;
}

.login-info a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #0f0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.login-info a:hover:after {
    transform: scaleX(1);
}

.matrix-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .container {
        padding: 20px;
    }
}