/* Start custom CSS for html, class: .elementor-element-d488dee *//* 方案 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 */
/* Start custom CSS for html, class: .elementor-element-154b630 *//* 遊戲連結區塊樣式 (通用變數) */
:root {
    --gl-primary: #000000;
    --gl-bg-hover: #00000015;
    --gl-border: #e5e7eb;
    --gl-text: #374151;
    --gl-white: #ffffff;
}

.game-link-block {
    border: 1px solid var(--gl-border);
    border-radius: 12px;
    padding: 20px;
    background-color: var(--gl-white);
    max-width: 100%;
    margin: 20px 0;
    font-family: system-ui, -apple-system, sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gl-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gl-primary);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gl-bg-hover);
}

.gl-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gl-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--gl-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--gl-text);
    background-color: var(--gl-white);
    transition: all 0.2s ease;
    font-weight: 500;
}

.gl-item i:first-child {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.1em;
    color: #9ca3af;
    transition: color 0.2s;
}

.gl-arrow {
    margin-left: auto;
    font-size: 0.8em;
    opacity: 0.5;
}

/* Hover Effects */
.gl-item:hover {
    border-color: var(--gl-primary);
    background-color: var(--gl-bg-hover);
    color: var(--gl-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.gl-item:hover i:first-child { color: var(--gl-primary); }/* End custom CSS */