/* ============================================
   ArkaGaming.cl — Image Placeholders
   Visual placeholders showing required dimensions
   for the design team. Remove once real images
   are placed in img/ directory.
   ============================================ */

.img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.04) 10px,
            rgba(255, 255, 255, 0.04) 20px
        ),
        rgba(20, 20, 30, 0.9);
    border: 2px dashed rgba(229, 9, 20, 0.3);
    z-index: 5;
    text-align: center;
    pointer-events: none;
    overflow: hidden;
}

.img-placeholder-icon {
    font-size: 2rem;
    color: rgba(229, 9, 20, 0.4);
    margin-bottom: 8px;
}

.img-placeholder-size {
    font-family: 'Rajdhani', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(240, 240, 245, 0.7);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.img-placeholder-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(160, 160, 176, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.img-placeholder-format {
    font-size: 0.65rem;
    color: rgba(106, 106, 122, 0.5);
    margin-top: 2px;
}

/* Hero placeholder — full viewport */
.img-placeholder-hero {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Community placeholder */
.img-placeholder-community {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* News hero placeholder */
.img-placeholder-news-hero {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Article hero placeholder */
.img-placeholder-article-hero {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Responsive: smaller text on mobile */
@media (max-width: 768px) {
    .img-placeholder-icon { font-size: 1.4rem; }
    .img-placeholder-size { font-size: 0.85rem; }
    .img-placeholder-label { font-size: 0.65rem; }
    .img-placeholder-format { font-size: 0.55rem; }
}
