* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 223, 0, 0.3), transparent);
}

.question-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.question-content {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 223, 0, 0.3);
}

.image-container {
    position: relative;
    margin: 30px auto;
    width: 100%;
    max-width: 600px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    filter: brightness(0.8);
}

.question-mark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 33%;
    height: 100%;
    background: rgba(255, 223, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    backdrop-filter: blur(5px);
}

.vertical-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.5;
}

.vertical-text span {
    display: block;
    writing-mode: vertical-lr;
    text-orientation: upright;
    letter-spacing: 0.1em;
}

.stats {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
}

.button-group {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

button {
    background: #FFD700;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.reset-button {
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #333;
}

.reset-button:not(:disabled):hover {
    background: #2a2a2a;
    border-color: #444;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

button:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none !important;
    opacity: 0.7;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

button:not(:disabled):hover::before {
    transform: translateX(100%);
}

button:active {
    transform: translateY(0);
} 