/* Container for the Map */
#templeAnimationWindow {
    width: 610px;
    height: 453px;
    box-shadow: 0 0 10px #000;
    border: 2px solid #333;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
}

/* Stream Title */
.stream-title {
    text-align: center;
    margin: 20px auto 10px;
    text-shadow: 0 0 5px #fff;
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 24px;
    color: #f3ddbc;
}

/* Player Wrapper */
.player_wrapper {
    position: absolute;
    width: 64px;
    height: 64px;
}

/* Character Image Div */
.char-img {
    width: 64px;
    height: 64px;
    background-position: center bottom;
    background-repeat: no-repeat;
	margin-left: -20px;  /* زود الرقم بالسالب عشان تروح شمال أكتر */
    transform: scale(1.1); /* 1.3 يعني تكبير بنسبة 30% (ممكن تخليها 1.2 أو 1.5 حسب رغبتك) */
    transform-origin: bottom center; /* عشان يكبر لفوق وما ينزلش تحت الأرض */
}

/* Name and Health Bar Wrapper */
.info_wrapper {
    padding-top: 8px;
    position: absolute;
    width: 96px;
    text-align: center;
    left: -16px;
    top: -10px;
    pointer-events: none;
    z-index: 100;
}

.name {
    white-space: nowrap;
    color: #00FF00;
    font-size: 10px;
    font-weight: bold;
    font-family: Verdana, sans-serif;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hp-bar {
    margin: 2px auto 0;
    width: 25px;
    height: 4px;
    background-color: #00C000;
    border: 1px solid #000;
}

.skull {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 11px;
    height: 11px;
}