/* Стили для рекламы — одна иконка слева, ссылки справа */
.advertisements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.advertisement {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 10px;
    background: rgba(0, 212, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 18px;
    padding: 40px 25px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.advertisement::before {
    content: "РЕКЛАМА";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    color: var(--accent-it);
    padding: 3px 20px;
    font-size: 0.6rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
	box-shadow: var(--shadow-it);
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(0, 210, 255, 0.5);
    z-index: 10;
}

.advertisement .icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.advertisement .icon svg {
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.5));
}

.advertisement .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.advertisement .content a {
    color: var(--accent-it);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
	display: inline-block; 
    width: max-content;
}

.advertisement .content a:hover {
    color: #ffffff;
    text-shadow: var(--shadow-it);
}

@media (max-width: 640px) {
    .error-box { padding: 30px; }
    .error-code { font-size: 4rem; }
    .error-title { font-size: 1.2rem; }
}