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

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

.office-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

/* Coffee Station */
.coffee-station {
    position: absolute;
    top: 20%;
    left: 10%;
    z-index: 10;
}

.coffee-machine {
    position: relative;
}

.machine-body {
    width: 60px;
    height: 80px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.coffee-stream {
    position: absolute;
    top: 70px;
    left: 25px;
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, #8B4513, #D2691E);
    animation: pour 2s infinite;
}

.coffee-cup {
    position: absolute;
    top: 95px;
    left: 15px;
    width: 25px;
    height: 20px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    border: 2px solid #ddd;
}

.steam {
    position: absolute;
    width: 4px;
    height: 20px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: steam 3s infinite ease-in-out;
}

.steam-1 { top: -10px; left: 20px; animation-delay: 0s; }
.steam-2 { top: -15px; left: 30px; animation-delay: 0.5s; }
.steam-3 { top: -8px; left: 40px; animation-delay: 1s; }

/* Desk Area */
.desk-area {
    position: absolute;
    top: 40%;
    left: 30%;
    transform: perspective(800px) rotateX(15deg);
}

.desk {
    width: 200px;
    height: 100px;
    background: linear-gradient(145deg, #8B4513, #A0522D);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.monitor {
    position: absolute;
    top: -80px;
    left: 50px;
    width: 100px;
    height: 70px;
    background: #2c3e50;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.screen {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 90px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 2px;
    overflow: hidden;
}

.code-lines {
    padding: 8px;
}

.line {
    height: 2px;
    background: #00ff00;
    margin: 3px 0;
    border-radius: 1px;
    animation: typing 4s infinite;
}

.line:nth-child(1) { width: 70%; animation-delay: 0s; }
.line:nth-child(2) { width: 45%; animation-delay: 1s; }
.line:nth-child(3) { width: 80%; animation-delay: 2s; }

.cursor {
    animation: blink 1s infinite;
}

.keyboard {
    position: absolute;
    top: 20px;
    left: 40px;
    display: flex;
    gap: 2px;
}

.key {
    width: 8px;
    height: 8px;
    background: #ecf0f1;
    border-radius: 2px;
    animation: keypress 3s infinite;
}

.space-key {
    width: 20px;
}

.mouse {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 15px;
    height: 20px;
    background: #95a5a6;
    border-radius: 8px 8px 4px 4px;
    animation: mouseClick 4s infinite;
}

/* Meeting Room */
.meeting-room {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 150px;
    height: 100px;
}

.glass-wall {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.meeting-table {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: #8B4513;
    border-radius: 15px;
}

.person {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f39c12;
    border-radius: 50%;
    animation: nod 3s infinite ease-in-out;
}

.person-1 { top: 40%; left: 20%; animation-delay: 0s; }
.person-2 { top: 40%; right: 20%; animation-delay: 1s; }
.person-3 { top: 20%; left: 50%; transform: translateX(-50%); animation-delay: 2s; }

.speech-bubble {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 8px;
    color: #2c3e50;
    animation: bubble 4s infinite;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}

/* Office Plant */
.office-plant {
    position: absolute;
    bottom: 20%;
    left: 5%;
}

.pot {
    width: 30px;
    height: 25px;
    background: linear-gradient(145deg, #8B4513, #A0522D);
    border-radius: 0 0 15px 15px;
}

.plant-stem {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: #27ae60;
}

.leaf {
    position: absolute;
    width: 15px;
    height: 8px;
    background: #2ecc71;
    border-radius: 0 100% 0 100%;
    animation: sway 4s infinite ease-in-out;
}

.leaf-1 { bottom: 45px; left: 8px; animation-delay: 0s; }
.leaf-2 { bottom: 35px; right: 8px; transform: scaleX(-1); animation-delay: 1s; }
.leaf-3 { bottom: 55px; left: 12px; animation-delay: 2s; }

/* Printer */
.printer {
    position: absolute;
    bottom: 30%;
    right: 25%;
}

.printer-body {
    width: 50px;
    height: 30px;
    background: linear-gradient(145deg, #bdc3c7, #95a5a6);
    border-radius: 4px;
}

.paper-jam {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 8px;
    background: #fff;
    transform: rotate(15deg);
    animation: jam 2s infinite;
}

.error-light {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 6px;
    height: 6px;
    background: #e74c3c;
    border-radius: 50%;
    animation: error 1s infinite;
}

/* Water Cooler */
.water-cooler {
    position: absolute;
    top: 60%;
    right: 10%;
}

.cooler-body {
    width: 25px;
    height: 50px;
    background: linear-gradient(145deg, #3498db, #2980b9);
    border-radius: 4px;
}

.water-bottle {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 20px;
    background: rgba(52, 152, 219, 0.3);
    border-radius: 8px 8px 0 0;
    border: 1px solid #3498db;
}

.gossip-bubble {
    position: absolute;
    top: -30px;
    left: -20px;
    background: #f39c12;
    padding: 4px 6px;
    border-radius: 8px;
    font-size: 6px;
    color: #fff;
    animation: gossip 5s infinite;
}

/* Floating Elements */
.wifi-signal {
    position: absolute;
    top: 10%;
    left: 50%;
    display: flex;
    gap: 2px;
    align-items: flex-end;
}

.signal-bar {
    width: 4px;
    background: #2ecc71;
    animation: signal 2s infinite ease-in-out;
}

.signal-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.signal-bar:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.signal-bar:nth-child(3) { height: 16px; animation-delay: 0.6s; }

.email-notifications {
    position: absolute;
    top: 25%;
    right: 5%;
}

.notification {
    font-size: 20px;
    animation: float 3s infinite ease-in-out;
    margin: 5px 0;
}

.notification:nth-child(1) { animation-delay: 0s; }
.notification:nth-child(2) { animation-delay: 1s; }
.notification:nth-child(3) { animation-delay: 2s; }

/* Office Clock */
.office-clock {
    position: absolute;
    top: 5%;
    right: 30%;
}

.clock-face {
    position: relative;
    width: 40px;
    height: 40px;
    border: 3px solid #34495e;
    border-radius: 50%;
    background: #ecf0f1;
}

.hour-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 12px;
    background: #2c3e50;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(150deg);
}

.minute-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 16px;
    background: #e74c3c;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(6deg);
    animation: tick 60s infinite linear;
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #2c3e50;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Animations */
@keyframes pour {
    0%, 100% { opacity: 0; transform: scaleY(0); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes steam {
    0% { opacity: 0.6; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-30px) scale(1.5); }
}

@keyframes typing {
    0% { width: 0; }
    50% { width: var(--line-width, 70%); }
    100% { width: var(--line-width, 70%); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes keypress {
    0%, 90% { transform: translateY(0); }
    5% { transform: translateY(2px); }
}

@keyframes mouseClick {
    0%, 95% { transform: scale(1); }
    2% { transform: scale(0.9); }
}

@keyframes nod {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes bubble {
    0%, 70% { opacity: 0; transform: translateX(-50%) scale(0); }
    80%, 90% { opacity: 1; transform: translateX(-50%) scale(1); }
    100% { opacity: 0; transform: translateX(-50%) scale(0); }
}

@keyframes sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes jam {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(25deg); }
}

@keyframes error {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes gossip {
    0%, 80% { opacity: 0; transform: scale(0); }
    85%, 95% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

@keyframes signal {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes tick {
    0% { transform: translate(-50%, -100%) rotate(6deg); }
    100% { transform: translate(-50%, -100%) rotate(366deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .office-container {
        transform: scale(0.8);
        transform-origin: center center;
    }
}

@media (max-width: 480px) {
    .office-container {
        transform: scale(0.6);
    }
}