/* Start custom CSS for html, class: .elementor-element-055298f *//* 方案 A：明亮簡約版 (適合白底網站) */
.modern-game-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    border: 1px solid #ced4da; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.modern-game-card:hover {
    transform: translateY(-5px);
    border-color: #adb5bd;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-icon-box { flex-shrink: 0; margin-right: 20px; }
.card-icon-box img {
    width: 90px; height: 90px;
    border-radius: 20px; object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
}

.card-content-box {
    flex-grow: 1; display: flex; flex-direction: column;
    justify-content: center; text-align: left;
}

.card-title {
    font-size: 1.2em; font-weight: 700; color: #212529;
    margin: 0 0 8px 0; line-height: 1.3;
}

.card-tags { margin-bottom: 12px; }
.modern-badge {
    display: inline-block; font-size: 0.75em;
    padding: 3px 8px; border-radius: 6px;
    font-weight: 600; margin-right: 6px;
    text-decoration: none !important;
}
.badge-red { background-color: #FFEBEE; color: #D32F2F; }
.badge-orange { background-color: #FFF3E0; color: #E65100; }

.card-desc {
    font-size: 0.9em; color: #6c757d;
    margin: 0 0 15px 0; line-height: 1.5;
}

.gradient-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, #DC3545 0%, #C82333 100%);
    color: white; padding: 10px 24px;
    border-radius: 50px; font-weight: 700;
    font-size: 0.95em;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
    display: inline-flex; align-items: center;
}

@media (max-width: 480px) {
    .modern-game-card { padding: 15px; }
    .card-icon-box img { width: 70px; height: 70px; }
    .card-title { font-size: 1.1em; }
    .gradient-btn { padding: 8px 20px; font-size: 0.9em; }
}/* End custom CSS */