body {
    margin: 0;
    font-family: 'Permanent Marker', cursive;
    min-height: 100vh;
    background: url('istockphoto-183892963-612x612.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
}

.wall-container {
    padding: 20px;
    position: relative;
}

.wall-title {
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    background: rgba(0,0,0,0.4);
    padding: 15px;
    border-radius: 10px;
}

.spray-can {
    margin-left: 10px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
}

.brick-wall {
    background: rgba(0,0,0,0.2);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
}

.featured-question {
    position: relative;
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    animation: glow 2s infinite alternate;
    z-index: 3;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255,255,255,0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(255,255,255,0.4);
    }
}

.graffiti {
    position: absolute;
    font-size: 1.8rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: rotate(var(--rotate));
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 300px;
    text-align: center;
    line-height: 1.3;
    padding: 10px;
    border-radius: 3px;
    background: rgba(0,0,0,0.3);
}

.graffiti:hover {
    transform: rotate(var(--rotate)) scale(1.1);
    z-index: 2;
    background: rgba(0,0,0,0.5);
}

.graffiti::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle at var(--x) var(--y), 
        rgba(255,255,255,0.2) 0%, 
        rgba(255,255,255,0) 70%);
    pointer-events: none;
}

@keyframes spray {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes shake {
    0%, 100% { transform: rotate(var(--rotate)); }
    25% { transform: rotate(calc(var(--rotate) - 2deg)); }
    75% { transform: rotate(calc(var(--rotate) + 2deg)); }
}