/**
 * VIP会員ページ専用スタイル
 * ゴールド×ピンクの最高級ラグジュアリーデザイン
 */

/* ========================================
   VIPカラーパレット
   ======================================== */
:root {
    --vip-gold: #FFD700;
    --vip-gold-light: #FFED4E;
    --vip-gold-dark: #DAA520;
    --vip-rose-gold: #ECC5A8;
    --vip-platinum: #E5E4E2;
}

/* ========================================
   VIPページヘッダー
   ======================================== */
.vip-header {
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #533483 75%, 
        #7b2869 100%
    );
    position: relative;
    overflow: hidden;
}

.vip-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ========================================
   VIPバッジ
   ======================================== */
.vip-badge-header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: 2px solid #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    animation: vip-pulse 2s ease-in-out infinite;
}

.vip-badge-header i {
    color: #1a1a2e;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

@keyframes vip-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.7);
    }
}

/* ========================================
   VIP統計カード
   ======================================== */
.vip-stats-section .stat-card {
    background: linear-gradient(135deg, #FFFFFF, #FFF9E6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.vip-stats-section .stat-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.vip-stats-section .stat-card i {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   VIP限定特典セクション
   ======================================== */
.vip-benefits-section {
    background: linear-gradient(135deg, #FFF9E6, #FFF5FB);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.vip-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.vip-benefits-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.vip-benefits-header h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.vip-benefits-header p {
    font-size: 18px;
    color: #666;
}

/* ========================================
   VIP特典グリッド
   ======================================== */
.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vip-benefit-card {
    background: linear-gradient(135deg, #FFFFFF, #FFFBF5);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vip-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vip-benefit-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.vip-benefit-card:hover::before {
    opacity: 1;
}

.vip-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 1;
}

.vip-benefit-icon i {
    font-size: 36px;
    color: #FFFFFF;
}

.vip-benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2D1B3D;
    margin-bottom: 15px;
    text-align: center;
}

.vip-benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ========================================
   VIP価格セクション
   ======================================== */
.vip-pricing-highlight {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 30px;
    margin: 60px 0;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid #FFD700;
}

.vip-pricing-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.vip-pricing-crown {
    font-size: 60px;
    color: #FFD700;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.vip-pricing-highlight h3 {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.vip-price-tag {
    display: inline-block;
    padding: 30px 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.vip-price-amount {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
}

.vip-price-note {
    display: block;
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 600;
    margin-top: 10px;
}

.vip-limited-badge {
    display: inline-block;
    background: #FF4757;
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    animation: blink 2s infinite;
    position: relative;
    z-index: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ========================================
   VIPコンテンツカード
   ======================================== */
.vip-content-card {
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.vip-content-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    content: '\f521';
    font-weight: 900;
    color: #FFFFFF;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

/* VIPページの動画サムネイルサイズ統一 */
body .card-thumbnail {
    height: 200px !important;
    position: relative;
    overflow: hidden;
}

body .card-thumbnail iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* ========================================
   レスポンシブ対応
   ======================================== */
@media (max-width: 768px) {
    .vip-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vip-benefits-header h2 {
        font-size: 32px;
    }
    
    .vip-benefit-card {
        padding: 30px 20px;
    }
    
    .vip-pricing-highlight {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .vip-price-amount {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .vip-benefits-header h2 {
        font-size: 28px;
    }
    
    .vip-benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .vip-benefit-icon i {
        font-size: 32px;
    }
    
    .vip-price-tag {
        padding: 25px 40px;
    }
    
    .vip-price-amount {
        font-size: 36px;
    }
}

/* ========================================
   動画カードの強制サイズ調整（最優先）
   ======================================== */
.content-grid .content-card .card-thumbnail {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
}

.content-grid .content-card .card-thumbnail iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
