/* 詳細ページ専用スタイル */

.detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: var(--spacing-lg);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.detail-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.detail-hero.nintendo {
    border-left: 5px solid var(--nintendo-color);
    box-shadow: 0 0 30px rgba(230, 0, 18, 0.2);
}

.detail-hero.playstation {
    border-left: 5px solid var(--ps-color);
    box-shadow: 0 0 30px rgba(0, 111, 205, 0.2);
}

.detail-hero h1 {
    font-size: 3em;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-hero .platform {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.detail-section {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--card-border);
}

.detail-section h2 {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: var(--spacing-lg);
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.detail-section p {
    font-size: 1.05em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.detail-section p:last-child {
    margin-bottom: 0;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 1.05em;
}

.spec-list li strong {
    color: #fff;
    display: inline-block;
    min-width: 80px;
}

.download-section {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.1) 0%, rgba(150, 100, 255, 0.1) 100%);
}

.download-box {
    text-align: center;
    padding: var(--spacing-lg);
}

.download-box p {
    margin-bottom: 25px;
    font-size: 1.1em;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.download-button.nintendo {
    background: linear-gradient(135deg, var(--nintendo-color) 0%, #ff3333 100%);
}

.download-button.playstation {
    background: linear-gradient(135deg, var(--ps-color) 0%, #0088ff 100%);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.download-button span:first-child {
    font-size: 1.3em;
}

.back-link {
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.back-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .detail-hero {
        padding: 40px 25px;
    }

    .detail-hero h1 {
        font-size: 2em;
    }

    .detail-hero .platform {
        font-size: 1em;
    }

    .detail-section {
        padding: 25px 20px;
    }

    .detail-section h2 {
        font-size: 1.5em;
    }

    .detail-section p {
        font-size: 1em;
    }

    .spec-list li {
        padding: 12px 15px;
        font-size: 0.95em;
    }

    .spec-list li strong {
        display: block;
        margin-bottom: 5px;
    }

    .download-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}
