:root {
    /* Primary Colors */
    --mk-blue: #0079c1;
    --mk-blue-dark: #00507e;
    --mk-blue-light: #28aaff;
    --mk-gold: #d4af37;
    --mk-gold-light: #f5d76e;
    --mk-gold-dark: #aa8c28;

    /* Neutral Colors */
    --mk-black: #111111;
    --mk-dark-gray: #1e1e1e;
    --mk-gray: #333333;
    --mk-light-gray: #666666;
    --mk-white: #f5f5f5;

    /* Accent Colors */
    --mk-red: #c70000;
    --mk-ice-blue: #a8d8ff;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--mk-blue) var(--mk-dark-gray);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--mk-dark-gray);
    color: var(--mk-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><path fill="%23222222" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"/></svg>');
}

/* Scroll Bar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--mk-dark-gray);
}

::-webkit-scrollbar-thumb {
    background-color: var(--mk-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--mk-blue-light);
}

/* Layout */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Header Styles */
.site-header {
    position: relative;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--mk-blue);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.logo-container {
    text-align: center;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

/* Title Animation */
.mk-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 121, 193, 0.7);
}

.mk-title-main {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, var(--mk-white) 20%, var(--mk-blue-light) 40%, var(--mk-blue) 60%, var(--mk-blue-dark) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    animation: title-glow 3s ease-in-out infinite alternate;
}

.mk-title-sub {
    font-size: 1.2rem;
    color: var(--mk-gold);
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.7);
}

.mk-number {
    color: var(--mk-gold);
    position: relative;
    display: inline-block;
    font-size: 4rem;
    text-shadow: 0 0 10px var(--mk-gold-light);
    animation: number-pulse 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% {
        text-shadow: 0 0 5px rgba(0, 121, 193, 0.7);
    }
    100% {
        text-shadow: 0 0 20px rgba(40, 170, 255, 0.9), 0 0 30px rgba(40, 170, 255, 0.7);
    }
}

@keyframes number-pulse {
    0% {
        text-shadow: 0 0 5px var(--mk-gold-light);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 15px var(--mk-gold-light), 0 0 25px var(--mk-gold);
    }
    100% {
        text-shadow: 0 0 10px var(--mk-gold-light);
        transform: scale(1.05);
    }
}

/* Logo effects */
.logo-container::before,
.logo-container::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--mk-blue-light) 20%,
        var(--mk-gold) 50%,
        var(--mk-blue-light) 80%,
        transparent);
    animation: logo-line-anim 4s infinite linear;
}

.logo-container::before {
    top: 0;
    left: -50%;
}

.logo-container::after {
    bottom: 0;
    right: -50%;
    animation-delay: -2s;
}

@keyframes logo-line-anim {
    0% {
        transform: translateX(-30%);
    }
    100% {
        transform: translateX(30%);
    }
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
}

.nav-link {
    display: inline-block;
    color: var(--mk-white);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--mk-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--mk-gold);
}

.nav-link:hover::after {
    width: 70%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--mk-white);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

/* Section Styling */
section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--mk-gray);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--mk-blue);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 121, 193, 0.1), transparent 50%);
    pointer-events: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mk-blue);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--mk-blue-light);
    text-shadow: 0 0 8px rgba(0, 121, 193, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--mk-gold);
}

.to-index {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--mk-blue);
    border-radius: 50%;
    color: var(--mk-white);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.to-index:hover {
    background-color: var(--mk-gold);
    transform: translateY(-3px);
}

.content-wrapper {
    padding: 10px;
}

.content-title {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--mk-gold);
    border-left: 4px solid var(--mk-gold);
    padding-left: 10px;
}

/* Images */
.game-image {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--mk-blue-dark);
    position: relative;
}

.game-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.game-image:hover img {
    transform: scale(1.02);
}

/* Tables */
.menu-table-container,
.info-table-container {
    margin: 20px 0;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.menu-table,
.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--mk-gray);
    overflow: hidden;
}

.menu-table th,
.info-table th {
    background-color: var(--mk-blue-dark);
    color: var(--mk-white);
    text-align: left;
    padding: 12px 15px;
}

.menu-table td,
.info-table td {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-table tr:hover,
.info-table tr:hover {
    background-color: rgba(0, 121, 193, 0.1);
}

.menu-table a,
.info-table a {
    color: var(--mk-blue-light);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.menu-table a:hover,
.info-table a:hover {
    color: var(--mk-gold);
    text-decoration: underline;
}

.menu-table th[colspan="2"] {
    background-color: var(--mk-blue);
    text-align: center;
    font-size: 1.1em;
}

/* Links */
a {
    color: var(--mk-blue-light);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--mk-gold);
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: var(--mk-black);
    color: var(--mk-light-gray);
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid var(--mk-blue);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    margin: 10px 0;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--mk-blue);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--mk-gold);
    transform: translateY(-5px);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Header & Navigation */
    .mk-title-main {
        font-size: 2.5rem;
    }

    .mk-title-sub {
        font-size: 1rem;
    }

    .mk-number {
        font-size: 3rem;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 1001;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--mk-black);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 80px 0 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        margin: 10px 0;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Content */
    section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-title {
        font-size: 1.2rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .page-container {
        padding: 0 10px;
    }

    .mk-title-main {
        font-size: 2rem;
    }

    .mk-number {
        font-size: 2.5rem;
    }

    section {
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .content-title {
        font-size: 1.1rem;
    }

    .menu-table th,
    .info-table th,
    .menu-table td,
    .info-table td {
        padding: 8px;
    }
}
/* サイトロゴメニュー */
.site-logo-menu {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}

.site-logo-menu svg {
    width: 100%;
    height: auto;
    max-height: 100px;
}

/* パンくずリスト */
.breadcrumb-nav {
    background-color: var(--mk-black);
    border-top: 1px solid rgba(0, 121, 193, 0.3);
    border-bottom: 1px solid rgba(0, 121, 193, 0.3);
    padding: 5px 0;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 8px;
    color: var(--mk-blue-light);
}

.breadcrumb-link {
    color: var(--mk-blue-light);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: var(--mk-gold);
    text-decoration: none;
}

.current-page {
    color: var(--mk-gold);
    font-weight: 600;
}

/* 更新日時とSNSボタン */
.meta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 15px;
    background-color: rgba(0, 121, 193, 0.1);
    border-radius: 5px;
    border-left: 3px solid var(--mk-gold);
}

.time {
    font-size: 0.85rem;
    color: var(--mk-light-gray);
    margin: 0;
}

.time time {
    color: var(--mk-gold-light);
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-buttons, .fb-share-button {
    display: inline-block;
    vertical-align: middle;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .site-logo-menu svg {
        max-height: 80px;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 5px;
    }

    .breadcrumb-nav {
        padding: 3px 0;
    }

    .meta-info {
        padding: 8px 10px;
    }
}
/* タイトル画像のスタイル */
.title-image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--mk-blue);
}

.title-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.title-image-container:hover .title-image {
    transform: scale(1.02);
}

/* タイトル画像のエフェクト */
.title-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 121, 193, 0.3),
        transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.title-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(315deg,
        rgba(212, 175, 55, 0.2),
        transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .title-image-container {
        margin: 0 auto 15px;
        border-width: 1px;
    }
}
/* フッター著作権表記部分のスタイル */

.copy {
    background-color: var(--mk-black);
    padding: 30px 20px;
    margin-top: 50px;
    border-top: 4px solid var(--mk-blue);
    position: relative;
    overflow: hidden;
}

/* モータルコンバットらしいデザイン要素 - 斜めの青色ライン */
.copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 121, 193, 0.1) 0%,
        transparent 40%,
        rgba(212, 175, 55, 0.05) 80%,
        rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 辺縁を光らせる効果 */
.copy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        var(--mk-blue-light) 20%,
        var(--mk-gold) 50%,
        var(--mk-blue-light) 80%,
        transparent);
    animation: footer-line-anim 6s infinite linear;
}

@keyframes footer-line-anim {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(50%);
    }
}

.contact-info,
.usage-terms,
.copyright {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 121, 193, 0.3);
    color: var(--mk-light-gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--mk-blue-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-info a:hover {
    color: var(--mk-gold);
    text-decoration: underline;
}

.contact-info img {
    margin-right: 5px;
    transition: transform 0.3s;
}

.contact-info a:hover img {
    transform: scale(1.2);
}

.usage-terms {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 121, 193, 0.3);
}

.usage-terms p {
    color: var(--mk-light-gray);
    margin: 5px 0;
    font-size: 0.85rem;
    position: relative;
    padding-left: 0;
}

.usage-terms p:first-child {
    color: var(--mk-blue-light);
    font-weight: bold;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    color: var(--mk-light-gray);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.copyright a {
    color: var(--mk-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgba(0, 121, 193, 0.1);
    margin-bottom: 5px;
}

.copyright a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.copyright img {
    transition: transform 0.3s;
}

.copyright a:hover img {
    transform: rotate(360deg);
}

/* キラキラエフェクト - モータルコンバットっぽい */
.copyright::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--mk-gold-light);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: sparkle 5s infinite linear;
    pointer-events: none;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: translate(-50px, -20px) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translate(-40px, -10px) scale(1);
    }
    20% {
        opacity: 0;
        transform: translate(-30px, 0px) scale(0);
    }
    30% {
        opacity: 0.6;
        transform: translate(-20px, -5px) scale(0.8);
    }
    40% {
        opacity: 0;
        transform: translate(-10px, -15px) scale(0);
    }
    50% {
        opacity: 0.7;
        transform: translate(0px, -20px) scale(1);
    }
    60% {
        opacity: 0;
        transform: translate(10px, -15px) scale(0);
    }
    70% {
        opacity: 0.6;
        transform: translate(20px, -5px) scale(0.8);
    }
    80% {
        opacity: 0;
        transform: translate(30px, 0px) scale(0);
    }
    90% {
        opacity: 0.8;
        transform: translate(40px, -10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(50px, -20px) scale(0);
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .copy {
        padding: 20px 15px;
    }

    .contact-info,
    .usage-terms,
    .copyright {
        padding: 10px;
    }

    .contact-info {
        font-size: 0.8rem;
    }

    .usage-terms p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .copy {
        padding: 15px 10px;
    }

    .contact-info,
    .usage-terms,
    .copyright {
        padding: 8px;
    }

    .contact-info {
        font-size: 0.75rem;
    }

    .usage-terms p {
        font-size: 0.75rem;
    }
}
/* おすすめセクションのスタイル */
#recommendations {
    margin: 40px 0;
    padding: 30px 20px;
    background-color: var(--mk-gray);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--mk-gold);
}

/* デコレーション要素 */
#recommendations::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(0, 121, 193, 0.1);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    transform: rotate(5deg);
}

/* モータルコンバット風のトップヘッダー */
#recommendations::after {
    content: 'おすすめ記事';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(90deg, var(--mk-blue), var(--mk-blue-dark));
    color: var(--mk-white);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* 記事リンクのスタイル */
#recommendations a {
    display: block;
    margin: 30px 0 15px;
    padding: 20px;
    text-decoration: none;
    color: var(--mk-white);
    background-color: var(--mk-dark-gray);
    border-radius: 8px;
    border-left: 3px solid var(--mk-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

#recommendations a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-left-color: var(--mk-gold);
}

/* ホバーエフェクト */
#recommendations a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 121, 193, 0.1),
        transparent 50%,
        rgba(212, 175, 55, 0.05));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0.5;
}

#recommendations a:hover::before {
    opacity: 1;
}

/* 記事画像のスタイル */
#recommendations img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
    object-fit: cover;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--mk-blue-dark);
}

#recommendations a:hover img {
    transform: scale(1.02);
}

/* 記事タイトルのスタイル */
#recommendations a {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* 新着マーク */
#recommendations a.new::after {
    content: 'NEW';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--mk-gold);
    color: var(--mk-black);
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* モータルコンバット風の装飾要素 - ドラゴンロゴ */
#recommendations::before {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%230079c1" opacity="0.2" d="M50,5c24.85,0,45,20.15,45,45S74.85,95,50,95S5,74.85,5,50S25.15,5,50,5z M65,30c0,0-10,5-15,5s-15-5-15-5s5,15,0,25 s-15,10-15,10s15,5,25,10s20,0,20,0s10-5,20-10s25-10,25-10s-10-0-15-10s0-25,0-25s-10,5-15,5S65,30,65,30z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    #recommendations {
        padding: 25px 15px;
        margin: 30px 0;
    }

    #recommendations::after {
        font-size: 1rem;
        padding: 8px 15px;
    }

    #recommendations a {
        padding: 15px;
        margin: 25px 0 10px;
    }
}

@media screen and (max-width: 480px) {
    #recommendations {
        padding: 20px 10px;
        margin: 20px 0;
    }

    #recommendations::after {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    #recommendations a {
        padding: 10px;
        font-size: 0.9rem;
    }
}
