.newspaper-headline {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   margin: 0 auto;
   padding: 8px 16px;
   font-size: 15px;
   font-weight: bold;
   line-height: 1.4;
   text-align: left;
   color: #ff3b3b;
   text-shadow: 1px 1px 2px black;
   background: rgba(0, 0, 0, 0.3);
   backdrop-filter: blur(1px);
   border-radius: 0;
   max-width: 500px;
   pointer-events: none;
   opacity: 0.9;
}

.newspaper-bonus-line {
   color: rgb(68, 219, 68);
   opacity: 0;
   transition: opacity 1.5s ease;
}

.newspaper-bribe-button {
   padding: 6px 12px;
   font-size: 14px;
   font-weight: bold;
   background-color: var(--color-primary);
   border: none;
   border-radius: 4px;
   cursor: pointer;
   pointer-events: auto;
   transition: opacity 1.5s ease;
}

.newspaper-name {
   text-align: center;
   font-family: 'Impact', 'Arial Black', sans-serif;
   font-size: 32px;
   text-transform: uppercase;
   text-shadow: 1px 1px 2px black;
   color: #ff3b3b;
   background: rgba(0, 0, 0, 0.3);
   backdrop-filter: blur(1px);
   border-radius: 6px;
   padding: 4px 8px;
   max-width: 100%;
   opacity: 0.9;
   transition: color 1.5s ease;
}

.newspaper-title-overlay {
   position: absolute;
   top: 12px;
   left: 0;
   right: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   pointer-events: none;
   padding: 0 12px;
}

.newspaper-container {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   box-sizing: border-box;
   pointer-events: none;
}

.newspaper-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 1;
   transition: opacity 2s ease;
}