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

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.logo-container {
    text-align: center;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.drip-text {
    font-family: 'Creepster', cursive;
    color: #333;
    margin: 0;
    line-height: 1.1;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.drip-text.accent {
    color: #4CAF50;
    font-size: 3.2rem;
    margin: -5px 0;
}

.drips {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.drip {
    width: 20px;
    height: 40px;
    background-color: #4CAF50;
    border-radius: 0 0 15px 15px;
    animation: dripping 2s infinite;
    transform-origin: top center;
    opacity: 0.8;
}

.drip:nth-child(1) { animation-delay: 0.0s; }
.drip:nth-child(2) { animation-delay: 0.2s; }
.drip:nth-child(3) { animation-delay: 0.4s; }
.drip:nth-child(4) { animation-delay: 0.6s; }
.drip:nth-child(5) { animation-delay: 0.8s; }

@keyframes dripping {
    0% {
        transform: scaleY(0);
        opacity: 1;
    }
    100% {
        transform: scaleY(1);
        opacity: 0;
    }
}

.controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

.maze-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

canvas {
    border: 1px solid #ccc;
    max-width: 100%;
    height: auto;
}

@media print {
    .controls {
        display: none;
    }
    
    body {
        background-color: white;
    }
    
    .container {
        box-shadow: none;
        padding: 0;
    }
    
    .logo-container {
        padding-bottom: 20px;
    }
    
    .drips {
        display: none;
    }
} 