/* style.css */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;font-family:'Poppins', system-ui, sans-serif}

body, html {
    width: 100%;
    min-height: 100vh;
    background: #0a1a0f;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gameContainer {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px #00000080;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 25px 20px;
    background: rgba(0, 20, 10, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    box-shadow: 0 15px 35px #00000040;
    border: 1px solid #00e67630;
}

@media (max-width: 767px) {
    #gameContainer { justify-content: center; }
    #content { margin: 16px; max-width: calc(100% - 32px); }
}

@media (min-width: 768px) {
    #gameContainer { justify-content: center; }
    #content { padding: 40px 35px; }
}

/* Logo */
.logoImg {
    max-width: 170px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px #00e67666);
    animation: softFloat 4s infinite;
}

/* Header Başlık */
.headerTitle {
    font-size: clamp(24px, 7vw, 34px);
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 10px #00c85380;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
}

.heroSub {
    color: #b8ffc4;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 35px;
    text-shadow: 0 2px 5px #00000060;
    background: rgba(0, 30, 10, 0.3);
    padding: 5px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid #00e67640;
    letter-spacing: 3px;
}

/* Butonlar */
.btn {
    background: linear-gradient(145deg, #00e676, #009f3c);
    border: none;
    color: #fff;
    font-weight: 800;
    font-size: clamp(24px, 7vw, 34px);
    padding: 16px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 0 #006425, 0 10px 20px #00000060, 0 0 20px #00e67680;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 1px solid #a5ffb0;
    transition: all 0.1s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    animation: pulseGreen 2.5s infinite;
}
.btn:active {
    transform: translateY(6px);
    box-shadow: 0 4px 0 #004d1a, 0 8px 15px #00000080, 0 0 20px #00ff80;
}
.btnSmall {
    font-size: clamp(20px, 6vw, 28px);
    padding: 14px 30px;
}

/* Ödül Bar – Sade ve Modern */
.prizeBarWrapper {
    width: 100%;
    margin: 5px 0 20px;
    padding: 12px 15px;
    background: rgba(0, 15, 5, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid #00e67640;
    box-shadow: inset 0 2px 8px #00000060, 0 8px 15px #00000030;
}
.prizeTrack {
    display: flex;
    align-items: center;
    gap: 8px;
}
.prizeStep {
    flex: 1;
    height: 14px;
    background: #1a3322;
    border-radius: 20px;
    box-shadow: inset 0 2px 5px #000000, 0 0 0 1px #2a4a3060;
    transition: all 0.3s ease;
}
.prizeStep.active {
    background: #00e676;
    box-shadow: 0 0 15px #00ff88, inset 0 1px 4px #ffffff;
}
.prizeMessage {
    color: #FFE484;
    text-align: center;
    margin-top: 14px;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #00000080;
    text-transform: uppercase;
}

/* Soru Kartı */
.questionCard {
    width: 100%;
    background: rgba(0, 20, 8, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 28px 20px;
    border: 1px solid #00e67660;
    box-shadow: 0 20px 30px #00000060, inset 0 0 20px #00ff8810;
    margin: 10px 0;
}
.qTitle {
    color: #e0ffe6;
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    text-shadow: 0 2px 5px #0a3d1a;
    line-height: 1.3;
}
.answersGrid {
    display: grid;
    gap: 14px;
}
.answerBtn {
    background: rgba(240, 255, 240, 0.95);
    border: none;
    padding: 16px 20px;
    border-radius: 40px;
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 600;
    color: #0a2a12;
    box-shadow: 0 7px 0 #2e6b3e, 0 5px 10px #00000040;
    border: 1px solid #a5ffb0;
    transition: 0.08s;
    text-align: left;
    cursor: pointer;
}
.answerBtn:active {
    transform: translateY(4px);
    box-shadow: 0 3px 0 #1a4a26, 0 5px 10px #00000040;
}

/* Final Kart */
.finalCard {
    width: 100%;
    background: rgba(0, 25, 10, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 35px 25px;
    border: 2px solid #00e676;
    box-shadow: 0 0 40px #00c85360, inset 0 0 20px #b3ffcf20, 0 20px 30px #00000060;
    margin: 15px 0;
    text-align: center;
}
.finalEmoji {
    font-size: 60px;
    margin-bottom: 10px;
    filter: drop-shadow(0 6px 10px #000);
}
.finalTitle {
    font-size: clamp(32px, 8vw, 44px);
    font-weight: 800;
    color: #e6ffea;
    text-shadow: 0 0 25px #00ff88, 2px 2px 0 #0a3d1a;
    margin-bottom: 15px;
}
.finalAmount {
    font-size: clamp(48px, 14vw, 60px);
    font-weight: 900;
    color: #00e676;
    text-shadow: 0 0 40px #00e676, 0 0 80px #1b5e20;
    margin: 15px 0 20px;
    letter-spacing: 3px;
}
.finalSub {
    color: #ccffd4;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 2px 5px #000;
    margin-bottom: 15px;
}

.hidden { display: none !important; }
.flexCol { display: flex; flex-direction: column; align-items: center; width: 100%; }

@keyframes pulseGreen {
    0% { box-shadow: 0 10px 0 #006425, 0 10px 20px #00000060, 0 0 15px #00e676; }
    50% { box-shadow: 0 10px 0 #006425, 0 10px 20px #00000060, 0 0 30px #00ff88, 0 0 15px #00c853; }
    100% { box-shadow: 0 10px 0 #006425, 0 10px 20px #00000060, 0 0 15px #00e676; }
}
@keyframes softFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}