body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 500px;
    padding: 30px;
    background: #1a1a1a;
    border: 2px solid #ff4655;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff4655, #00d4ff, #ff4655);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.container:hover::before {
    opacity: 1;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo {
    width: 80px;
    height: auto;
    margin-right: 15px;
}

h1 {
    color: #ff4655;
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #cccccc;
}

.incense-holder {
    position: relative;
    width: 100px;
    height: 200px;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.incense-holder:hover {
    transform: translateY(-5px);
}

.incense {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 150px;
    background: #8b4513;
}

.flame {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 25px;
    background: #ff4655;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0;
    animation: flame-flicker 0.5s infinite alternate;
}

.smoke {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    animation: smoke-rise 3s infinite ease-out;
}

@keyframes flame-flicker {
    0% { transform: translateX(-50%) scaleY(1); }
    100% { transform: translateX(-50%) scaleY(1.2); }
}

@keyframes smoke-rise {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    20% { opacity: 0.5; }
    100% { opacity: 0; transform: translateX(-50%) translateY(-80px); }
}

.status {
    font-size: 1.2em;
    color: #cccccc;
    margin-top: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lit .status {
    color: #00d4ff;
}

.lit .flame {
    opacity: 1;
}

.lit .smoke {
    opacity: 1;
}
