/**
 * ASP Plugin - フロントエンドスタイル
 * コンパクト縦型カード（中央配置）
 */

/* コンテナ - 中央配置 */
.asp-ad-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

/* 広告アイテム - 幅100% */
.asp-ad-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    width: 100%;
}

.asp-ad-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.asp-ad-item:focus-within {
    outline: 2px solid #ff0000;
    outline-offset: 2px;
}

/* 画像 - 中央配置、全体表示 */
.asp-ad-image {
    position: relative;
    min-width: 200px;
    min-height: 200px;
    width: 200px;
    height: 200px;
    margin: 10px auto 0;
    background: #222;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asp-ad-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 遅延ロード画像 */
.asp-lazy-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asp-lazy-img.asp-loaded {
    opacity: 1;
}

/* 画像読み込みエラー時 */
.asp-lazy-img.asp-error {
    opacity: 0;
}

.asp-ad-image:has(.asp-error)::before {
    /* スピナーをアイコンに変更 */
    animation: none;
    border: none;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>') no-repeat center;
    background-size: contain;
}

/* 画像プレースホルダー */
.asp-ad-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid #444;
    border-top-color: #ff0000;
    border-radius: 50%;
    animation: asp-spin 1s linear infinite;
    z-index: 1;
}

.asp-ad-image:has(.asp-loaded)::before {
    display: none;
}

@keyframes asp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* コンテンツ - 画像の下に配置 */
.asp-ad-content {
    padding: 8px 10px 10px;
    width: 100%;
    text-align: center;
}

/* タイトル */
.asp-ad-title {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffff00;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

/* サークル名 */
.asp-ad-circle {
    font-size: 10px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.asp-ad-circle::before {
    content: '';
}

/* 備考 */
.asp-ad-note {
    font-size: 10px;
    color: #ff6600;
    font-weight: 600;
    margin-top: 2px;
}

/* 日付 */
.asp-ad-date {
    font-size: 9px;
    color: #666;
    margin-top: 2px;
}

/* リンクオーバーレイ */
.asp-ad-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.asp-ad-link:focus {
    outline: none;
}

/* エラー表示 */
.asp-ad-error {
    padding: 10px;
    background: #332200;
    border: 1px solid #ff6600;
    border-radius: 4px;
    color: #ff6600;
    font-size: 12px;
}

/* サービス別カラー */
.asp-ad-digiket .asp-ad-title {
    color: #ff9900;
}

.asp-ad-giftcard .asp-ad-title {
    color: #66ff66;
}

.asp-ad-hunk .asp-ad-title {
    color: #66ccff;
}

/* スマホ向け - さらにコンパクトに */
@media screen and (max-width: 600px) {
    .asp-ad-container {
        gap: 10px;
    }

    .asp-ad-image {
        min-width: 150px;
        min-height: 150px;
        width: 100%;
        height: 150px;
        margin-top: 8px;
    }

    .asp-ad-content {
        padding: 6px 8px 8px;
    }

    .asp-ad-title {
        font-size: 10px;
    }

    .asp-ad-circle,
    .asp-ad-note,
    .asp-ad-date {
        font-size: 9px;
    }
}

/* 画像なしの場合 */
.asp-ad-item:not(:has(.asp-ad-image)) .asp-ad-content {
    padding: 15px 10px;
}
