/* Start custom CSS for html, class: .elementor-element-c73eeb9 *//* 方案二：深灰色邊框版 (專業俐落風格) */
.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;
}

/* 滑鼠懸停 (Hover) 效果 */
.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;
}

.gradient-btn span {
    margin-left: 8px;
    font-size: 1.1em;
}

/* 手機版適配 */
@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-2d3f3f9 *//* 遊戲連結區塊樣式 */
:root {
    --gl-bg-block: #ffffff;
    --gl-bg-item: #ffffff;
    --gl-border: #e5e7eb;
    --gl-text: #374151;
    --gl-title-color: #696b7c;
    --gl-icon-color: #9ca3af;
    --gl-hover-bg: #696b7c15;
    --gl-hover-border: #696b7c;
    --gl-hover-text: #696b7c;
    --gl-hover-icon: #696b7c;
}

.game-link-block {
    border: 1px solid var(--gl-border);
    border-radius: 12px;
    padding: 20px;
    background-color: var(--gl-bg-block);
    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-title-color);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gl-border); 
}

.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-bg-item);
    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: var(--gl-icon-color);
    transition: color 0.2s;
}

.gl-arrow {
    margin-left: auto;
    font-size: 0.8em;
    opacity: 0.5;
    color: var(--gl-text);
}

/* Hover Effects */
.gl-item:hover {
    border-color: var(--gl-hover-border);
    background-color: var(--gl-hover-bg);
    color: var(--gl-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.gl-item:hover i:first-child { color: var(--gl-hover-icon); }
.gl-item:hover .gl-arrow { color: var(--gl-hover-text); opacity: 0.8; }/* End custom CSS */