/* Sidebar Ad Component Styles */
.sidebar-ad-fixed {
    position: fixed;
    left: 10px;
    top: 150px;
    width: 160px;
    z-index: 10;
    pointer-events: none;
}

.sidebar-ad-fixed * {
    pointer-events: auto;
}

.sidebar-ad-container {
    background: rgba(47, 47, 47, 0.3);
    border: 1px solid rgba(64, 64, 64, 0.5);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    animation: fadeInSidebar 0.5s ease-out;
}

.sidebar-ad-container:hover {
    background: rgba(47, 47, 47, 0.5);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ad-label {
    font-size: 11px;
    color: #fbbf24;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.4;
    padding: 6px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 4px;
    border: 1px dashed rgba(229, 9, 20, 0.3);
}

.ad-slot {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(47, 47, 47, 0.6) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(102, 102, 102, 0.3);
    transition: all 0.3s ease;
}

.ad-placeholder:hover {
    border-color: rgba(229, 9, 20, 0.4);
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05) 0%, rgba(47, 47, 47, 0.6) 100%);
}

.ad-placeholder-content {
    text-align: center;
    padding: 20px;
    opacity: 0.6;
}

.ad-placeholder:hover .ad-placeholder-content {
    opacity: 0.9;
}

@keyframes fadeInSidebar {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Hide on smaller screens */
@media (max-width: 1600px) {
    .sidebar-ad-fixed {
        display: none;
    }
}
