body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif; /* Fütüristik Font */
    background-color: #050505;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Arka Plan Animasyonu */
.background-anim {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, #000000, #1a0b2e, #000000);
    background-size: 400% 400%;
    z-index: -1;
    animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    width: 400px;
    margin-top: 50px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
}

.logo {
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff41;
}

.logo span {
    display: block;
    font-size: 14px;
    color: #00ff41;
    letter-spacing: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #aaa;
}

select, input {
    width: 100%;
    padding: 10px;
    background: #111;
    border: 1px solid #444;
    color: white;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
}

.target-game select {
    background: #1a0b2e; /* Morumsu */
    border-color: #7d2ae8;
}

.btn-analiz {
    width: 100%;
    padding: 15px;
    background: #00ff41;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-analiz:hover {
    background: #00cc33;
    box-shadow: 0 0 15px #00ff41;
    transform: scale(1.02);
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    border: 2px solid;
    text-align: center;
    background: rgba(0,0,0,0.8);
    animation: fadeIn 0.5s;
}

.disk-info {
    font-size: 12px;
    color: #ccc;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FOOTER REKLAM ALANI */
.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.zenginler-link {
    color: #00ff41;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.zenginler-link:hover {
    color: #fff;
    border-bottom: 2px solid #00ff41;
    text-shadow: 0 0 10px #00ff41;
}