


/* sorularin arkasindaki saydam kutu */
.content {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(0, 0, 0, 0.45); /* saydam siyah */
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

body {
    margin: 0;
    padding: 20px;
    }

/* her şey ortalı */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* footer solda */
footer {
    text-align: left; 
    width: 100%;
    margin-top: 40px;
    padding: 10px 0;
    color: rgb(137, 137, 137);
}

footer hr {
    border-color: rgb(137, 137, 137);
}

h1 {
    font-size: 2.5em;
    color: white !important;
}

/* tüm şıkları büyük tıklanabilir kutu yapar */
.option {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(90, 0, 0, 0.55); /* koyu kırmızı saydam */
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s ease;
    color: white;
}


.option:hover {
    background: rgba(120, 0, 0, 0.7);
    box-shadow: 0 0 15px #7c0000;
    transform: scale(1.03);
}


/* radio butonunu gizle */
.option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* seçili kutuyu komple renklendir */
.option:has(input[type="radio"]:checked) {
    background: #690808;
    box-shadow: 0 0 25px #a30404;
}

.question {
    margin-top: 10%;
}

/* soruların texti */
.question .q_text {
    font-size: 1.5em;
    color: white !important;
    font-weight: bold;
}

/* şıkların texti */
.option span {
    flex: 1;
    font-size: 18px;
    transition: background 0.2s ease;
}


/* --- RESULT CARD --- */

.result {
    display: none;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px; 
    background: #2b0202 ; /* #2a0000*/ 
    border-radius: 16px;
    /* box-shadow: 0 0 25px rgba(255, 0, 0, 0.35); hafif kırmızı glow */
    text-align: center;
    color: white; /* tüm yazılar beyaz */
}


/* fotoğraf responsive */
.result img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* karakter sonucu texti */
.result h2 {
    color: white !important;
    font-size: 2em;
    margin-bottom: 10px;
}

/* karakterin açıklaması */
.result p {
    color: white !important;
    font-size: 1.2em;
    line-height: 1.5;
}

/* finish quiz butonu icin*/
.finishQuiz {
    display: block;
    margin: 40px auto;
    padding: 18px 42px;
    background: rgba(120, 0, 0, 0.85); /* koyu kırmızı */
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.4);
}

.finishQuiz:hover {
    background: rgba(180, 0, 0, 0.90); /* daha parlak kırmızı */
    box-shadow: 0 0 18px #ff0033; /* neon kırmızı glow */
    transform: scale(1.06);
}


#return{
    align-self: flex-start;
    font-size: 16px;
    width: 170px;
    height: 60px;
    border-radius: 10px;
    background: rgba(138, 20, 5, 0.9);
}


#return:hover{
    
    background: rgba(180, 0, 0, 0.90); /* daha parlak kırmızı */
    box-shadow: 0 0 18px #ff0033; /* neon kırmızı glow */
    transform: scale(1.06);
}

a{
    color: #e4dbdb; 
    text-decoration: none;
}


body {
   
    min-height: 100vh; 
    margin: 0; 
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('st.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    z-index: -1;
}

