* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background: linear-gradient(135deg, #0a0a0a, #1b1b2f, #0f0f23);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e0e0ff;
    overflow: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23444" stroke-width="0.5"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.loupe {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    box-shadow: 0 0 100px rgba(0, 195, 255, 0.3);
    pointer-events: none;
    z-index: 1;
    animation: move 10s infinite linear;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    25% { transform: translate(100px, 100px); }
    50% { transform: translate(200px, 0); }
    75% { transform: translate(100px, -100px); }
    100% { transform: translate(0, 0); }
}

.conan-char {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: url('https://i.ibb.co/0XsJ4dX/conan.png') no-repeat center;
    background-size: contain;
    opacity: 0.2;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.login-container {
    perspective: 1000px;
    position: relative;
    z-index: 10;
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 15px;
    background: rgba(10, 10, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    position: relative;
}

.login-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00c3ff, #0077ff, #00c3ff);
    z-index: -1;
    border-radius: 17px;
    filter: blur(10px);
    opacity: 0.6;
}

.login-form:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.login-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: #00c3ff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
    letter-spacing: 1px;
    position: relative;
}

.login-form h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00c3ff;
    margin: 8px auto;
    border-radius: 2px;
}

.login-form input {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid rgba(0, 195, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
    color: #e0e0ff;
    outline: none;
    transition: all 0.3s ease;
}

.login-form input:focus {
    border-color: #00c3ff;
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

.login-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #00c3ff, #0077ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
}

.login-form button:hover {
    background: linear-gradient(45deg, #0077ff, #00aaff);
    transform: scale(1.03);
    box-shadow: 0 7px 20px rgba(0, 195, 255, 0.5);
}

.link-daftar {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}

.link-daftar a {
    color: #00c3ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.link-daftar a:hover {
    color: #00aaff;
    text-shadow: 0 0 5px rgba(0, 195, 255, 0.5);
}

.dashboard-container {
    text-align: center;
    background: rgba(10, 10, 30, 0.7);
    padding: 50px;
    border-radius: 15px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.3);
    transform: translateY(0) rotateX(0deg);
    transition: transform 0.4s ease;
}

.dashboard-container h1 {
    color: #00c3ff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.dashboard-container a {
    color: #00c3ff;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 195, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dashboard-container a:hover {
    background: rgba(0, 195, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.file-list {
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
}

.file-list ul {
    list-style: none;
    padding: 0;
}

.file-list li {
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    margin: 8px 0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-list a {
    color: #00c3ff;
    text-decoration: none;
    padding: 5px 10px;
    background: rgba(0, 195, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.file-list a:hover {
    background: rgba(0, 195, 255, 0.2);
}