* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('dragon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.title {
    text-align: center;
    font-size: 4rem;
    color: #d4af37;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 60px;
    letter-spacing: 3px;
    font-weight: bold;
}

.content {
    background: transparent;
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 1.2rem;
}

.entry:last-child {
    border-bottom: none;
}

.name {
    color: #e0e0e0;
    font-weight: 500;
    flex: 1;
}

.number-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.number {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.3rem;
    min-width: 80px;
    text-align: right;
}

.number.hidden {
    display: none;
}

.reveal-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0a0a0a;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.reveal-btn:hover {
    background: linear-gradient(135deg, #b8941f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

.reveal-btn:active {
    transform: translateY(0);
}

.reveal-btn.revealed {
    background: linear-gradient(135deg, #666, #444);
    color: #aaa;
    cursor: default;
}

.loading {
    text-align: center;
    color: #d4af37;
    font-size: 1.2rem;
    padding: 20px;
}

.error {
    text-align: center;
    color: #ff4444;
    font-size: 1.2rem;
    padding: 20px;
}
