body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.game-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.office {
    width: 100%;
    height: 500px;
    background-color: #e9f5ff;
    position: relative;
    margin-bottom: 20px;
    border: 3px solid #333;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #e9f5ff, #cce5ff);
}

/* Karakter Stilleri */
.character {
    width: 40px;
    height: 60px;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.character-idle {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><circle cx="50" cy="30" r="20" fill="%23333"/><rect x="30" y="50" width="40" height="60" fill="%234CAF50"/><rect x="20" y="50" width="10" height="30" fill="%234CAF50"/><rect x="70" y="50" width="10" height="30" fill="%234CAF50"/><rect x="35" y="110" width="10" height="30" fill="%23333"/><rect x="55" y="110" width="10" height="30" fill="%23333"/></svg>');
}

.character-walking {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><circle cx="50" cy="30" r="20" fill="%23333"/><rect x="30" y="50" width="40" height="60" fill="%234CAF50"/><rect x="20" y="60" width="10" height="25" fill="%234CAF50" transform="rotate(20,20,60)"/><rect x="70" y="55" width="10" height="25" fill="%234CAF50" transform="rotate(-10,70,55)"/><rect x="35" y="115" width="10" height="25" fill="%23333" transform="rotate(-20,35,115)"/><rect x="55" y="120" width="10" height="25" fill="%23333" transform="rotate(10,55,120)"/></svg>');
    animation: walkAnimation 0.5s infinite alternate;
}

.character-working {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><circle cx="50" cy="30" r="20" fill="%23333"/><rect x="30" y="50" width="40" height="60" fill="%234CAF50"/><rect x="20" y="50" width="10" height="30" fill="%234CAF50"/><rect x="70" y="50" width="10" height="30" fill="%234CAF50"/><rect x="35" y="110" width="10" height="30" fill="%23333"/><rect x="55" y="110" width="10" height="30" fill="%23333"/><rect x="60" y="40" width="30" height="10" fill="%23FFC107" transform="rotate(30,60,40)"/></svg>');
    animation: workAnimation 0.3s infinite alternate;
}

@keyframes walkAnimation {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

@keyframes workAnimation {
    0% { transform: translateX(0px) rotate(0deg); }
    100% { transform: translateX(5px) rotate(5deg); }
}

/* Masa Tasarımları */
.desk {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.yellow-desk {
    width: 150px;
    height: 100px;
    background-color: #FFEB3B;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border: 3px solid #FBC02D;
}

.yellow-desk::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 70px;
    background-color: #FFF59D;
    border-radius: 3px;
}

.wooden-desk {
    width: 150px;
    height: 100px;
    background-color: #8D6E63;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border: 3px solid #5D4037;
}

.wooden-desk::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 70px;
    background-color: #A1887F;
    border-radius: 3px;
}

/* Bilgisayar ve Sandalye */
.desk-computer {
    position: absolute;
    width: 40px;
    height: 30px;
    background-color: #90CAF9;
    border: 2px solid #42A5F5;
    border-radius: 3px;
    z-index: 2;
}

.desk-chair {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #757575;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

/* Müşteri Tasarımı */
.client {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #9C27B0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 5;
}

/* UI Stilleri */
.ui {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.task-list {
    width: 70%;
}

.task {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid #4CAF50;
    position: relative;
}

.task h3 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    width: 0%;
    transition: width 0.1s;
}

.start-task {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.start-task:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
}

.start-task:disabled {
    background-color: #BDBDBD;
    cursor: not-allowed;
    transform: none;
}

.time-remaining {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 14px;
    color: #757575;
}

.stats {
    width: 25%;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.stats h2 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.stats p {
    margin: 10px 0;
    font-size: 14px;
}

.character-face {
    font-size: 50px;
    text-align: center;
    margin-top: 20px;
    animation: moodAnimation 2s infinite;
}

@keyframes moodAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Ofis Detayları */
.office-plant {
    position: absolute;
    width: 40px;
    height: 60px;
    background-color: #4CAF50;
    border-radius: 50% 50% 0 0;
}

.office-plant::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 30px;
    background-color: #388E3C;
    border-radius: 50%;
    top: -15px;
    left: 10px;
}