/*
Theme Name: Bet852
Theme URI: https://bet852.hk/
Description: Bet852 品牌網站主題
Version: 1.0
Author: Bet852
*/

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft JhengHei', 'PingFang TC', 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 主容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    color: #dc2626;
    margin-bottom: 20px;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(220, 38, 38, 0.5);
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.5rem;
    color: #ef4444;
}

/* 链接样式 */
a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

/* 顶部信息栏 */
.header-top {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 100%);
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.header-top-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-top-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #333;
    color: #dc2626;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #dc2626;
    color: #000;
    transform: translateY(-2px);
}

/* 导航栏 */
.navbar {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%);
    padding: 15px 0;
    border-bottom: 3px solid #dc2626;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ef4444;
    transform: scale(1.05);
}

.logo img {
    max-height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(220, 38, 38, 0.3);
}

.logo-tagline {
    font-size: 0.7rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 主导航 */
.main-navigation {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #dc2626;
}

/* Active 狀態樣式 - 當前頁面高亮 */
.nav-menu li.active > a,
.nav-menu .active > a {
    color: #ffb400;
    font-weight: 600;
}

.nav-menu li.active > a:after,
.nav-menu .active > a:after {
    width: 100%;
    background: linear-gradient(90deg, #ffb400, #ffd700);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    background-color: #dc2626;
    color: #fff;
}

.register-btn {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* 汉堡菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #dc2626;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #dc2626;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.menu-toggle:hover::before {
    opacity: 1;
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle.active {
    background-color: #dc2626;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.menu-toggle.active::before {
    opacity: 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #000;
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #000;
}

/* 菜单展开动画 */
@keyframes menuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@-webkit-keyframes menuSlideDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
    }
}

@keyframes menuSlideUp {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

@-webkit-keyframes menuSlideUp {
    from {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(-20px) scale(0.95);
    }
}

@keyframes menuItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes menuItemFadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* 搜索表单 */
.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1001;
    min-width: 300px;
    border: 1px solid #333;
}

.search-form.active {
    display: block;
}

.search-form input {
    width: 100%;
    padding: 12px;
    background-color: #000;
    border: 2px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

.search-form input:focus {
    outline: none;
    border-color: #dc2626;
}

/* Banner 区域 */
.banner-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffd700" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffd700" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 0;
}

.banner-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-highlight {
    color: #dc2626;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.banner-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: #000;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    border: 3px solid #dc2626;
    padding: 15px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: #dc2626;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
    }
}

/* 游戏分类区块 */
.games-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.game-card:hover {
    border-color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
}

.game-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-card:hover:before {
    left: 100%;
}

.game-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

/* Figure 和 Figcaption 样式 */
.game-image figure {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.game-image figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #dc2626;
    padding: 15px 10px 10px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(10px);
}

.game-card:hover .game-image figcaption {
    opacity: 1;
    transform: translateY(0);
}

.game-content {
    padding: 20px;
    text-align: left;
}

.game-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: bold;
}

.game-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.game-btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.game-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* 资讯列表 */
.news-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
}

.news-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(45deg, #333, #555);
    display: block;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 文章特色圖片區塊 */
.post-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.post-thumbnail {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #333, #555);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-thumbnail:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-thumbnail.no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #333, #555);
}

.post-thumbnail.no-thumb img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* 確保圖片容器正確顯示 */
.post-thumbnail-wrapper img,
.post-thumbnail img {
    transition: transform 0.3s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #dc2626;
    line-height: 1.3;
}

.news-title a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #ef4444;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #dc2626;
}

.news-excerpt {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-read-more {
    color: #dc2626;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-read-more:hover {
    color: #ef4444;
    transform: translateX(5px);
}

/* 主要内容区域 */
.main-content {
    padding: 80px 0;
    background-color: #0a0a0a;
}

body.home .main-content,
body.front-page .main-content {
    padding-top: 0;
}

body.page-template-contact-php .main-content,
body.page-template-about-php .main-content,
body.page-template-app-php .main-content,
body.page-template-deposit-withdraw-php .main-content,
body.page-template-bet852-ios-php .main-content,
body.page-template-bet852-android-php .main-content {
    padding-top: 0;
    padding-bottom: 0;
}

/* Bet852 手機裝置說明頁 */
.bet852-device-page {
    color: #fff;
}

.bet852-device-section {
    padding: 72px 0;
    background: #0a0a0a;
}

.bet852-device-section--alt {
    background: #111;
}

.bet852-device-container {
    width: min(calc(100% - 40px), 820px);
    margin: 0 auto;
}

.bet852-device-container--wide {
    width: min(calc(100% - 40px), 960px);
}

.bet852-device-content {
    min-width: 0;
    text-align: center;
}

.bet852-device-title,
.bet852-device-heading {
    color: #d4af37;
    line-height: 1.25;
    text-align: center;
    border: 0;
    padding: 0;
    text-shadow: none;
}

.bet852-device-title {
    margin: 0 0 24px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.bet852-device-heading {
    margin: 0 0 20px;
    font-size: clamp(1.6rem, 4vw, 2.25rem);
}

.bet852-device-text {
    margin: 0;
    color: #ccc;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.bet852-device-text + .bet852-device-text {
    margin-top: 16px;
}

.bet852-device-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.bet852-device-page .bet852-device-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;
}

.bet852-device-page .bet852-device-button:hover,
.bet852-device-page .bet852-device-button:focus {
    text-decoration: none;
}

.bet852-device-list {
    margin: 24px 0 0;
    padding-left: 1.4rem;
    color: #ccc;
    line-height: 1.8;
}

.bet852-device-list li + li {
    margin-top: 12px;
}

.bet852-device-cta {
    text-align: center;
}

.bet852-device-cta .bet852-device-button {
    margin-top: 28px;
}

@media (max-width: 600px) {
    .bet852-device-section {
        padding: 48px 0;
    }

    .bet852-device-container,
    .bet852-device-container--wide {
        width: min(calc(100% - 32px), 960px);
    }

    .bet852-device-links {
        flex-direction: column;
        align-items: stretch;
    }

    .bet852-device-page .bet852-device-button {
        width: 100%;
        max-width: none;
    }
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 侧边栏 */
.sidebar {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sidebar h3 {
    color: #dc2626;
    margin-bottom: 20px;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.sidebar ul li:before {
    content: "▶";
    color: #dc2626;
    position: absolute;
    left: 0;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-top: 3px solid #dc2626;
    padding: 60px 0 30px;
    color: #ccc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #999;
}

.footer-bottom a {
    color: #dc2626;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ef4444;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        display: none;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
        width: 55px;
        height: 55px;
    }
    
    .main-navigation {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 100%) !important;
        transform: translateY(-100%) !important;
        -webkit-transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
        border: 1px solid #333 !important;
        border-radius: 0 0 15px 15px !important;
        z-index: 9999 !important;
        max-height: calc(100vh - 70px) !important;
        -webkit-overflow-scrolling: touch !important;
        overflow-y: auto !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
    }
    
    .main-navigation.active {
        transform: translateY(0) !important;
        -webkit-transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        animation: menuSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        -webkit-animation: menuSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .main-navigation.closing {
        animation: menuSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .main-navigation .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #333;
    }
    
    .main-navigation .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .main-navigation .nav-menu a {
        display: block;
        padding: 15px 0;
        text-align: center;
        border-radius: 8px;
        margin: 5px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .main-navigation .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .main-navigation .nav-menu a:hover {
        background-color: rgba(220, 38, 38, 0.1);
        color: #dc2626;
        transform: translateX(5px);
    }
    
    .main-navigation .nav-menu a:hover::before {
        left: 100%;
    }
    
    .main-navigation .nav-menu li {
        animation: menuItemFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
    }
    
    .main-navigation .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .main-navigation .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .main-navigation .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .main-navigation .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .main-navigation .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    .main-navigation .nav-menu li:nth-child(6) { animation-delay: 0.35s; }
    .main-navigation .nav-menu li:nth-child(7) { animation-delay: 0.4s; }
    
    /* 菜单开启时防止背景滚动 */
    body.menu-open {
        overflow: hidden;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .register-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* 超小屏幕优化 (375px-480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        display: none;
    }
    
    .register-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .search-form {
        min-width: 200px;
        right: -50px;
    }
    
    .menu-toggle {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    /* Banner 区域优化 */
    .banner-section {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .banner-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .banner-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* 游戏分类优化 */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .game-card {
        margin-bottom: 10px;
    }
    
    .game-image {
        height: 150px;
    }
    
    .game-content {
        padding: 20px;
    }
    
    .game-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .game-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .game-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* 资讯列表优化 */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .news-card {
        margin-bottom: 10px;
    }
    
    .news-thumbnail,
    .post-thumbnail-wrapper {
        height: 150px;
    }
    
    .post-thumbnail {
        height: 100%;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .news-meta {
        font-size: 0.8rem;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    /* 优惠活动优化 */
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .promotion-card {
        margin-bottom: 10px;
    }
    
    .promotion-image {
        height: 120px;
        font-size: 1.5rem;
    }
    
    .promotion-content {
        padding: 20px;
    }
    
    .promotion-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .promotion-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    /* 页脚优化 */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .contact-info {
        font-size: 0.85rem;
    }
    
    .payment-methods span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    /* 浮动按钮优化 */
    .floating-support {
        bottom: 15px !important;
        left: 15px !important;
    }
    
    .support-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
    
    #back-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    /* 标题优化 */
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
}

/* 特殊效果 */
.glow {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}

/* 无文章状态 */
.no-posts {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.no-posts-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.7;
}

.no-posts h2 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 20px;
}

.no-posts p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ====== Breadcrumb 美化樣式 ====== */
.breadcrumbs-container {
  margin: 10px 0 20px;
  font-size: 14px;
  color: #ccc;
}
.breadcrumbs-container a {
  color: #ff4b4b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs-container a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ✅ Logo 顯示修復與尺寸控制 */
.custom-logo,
.default-logo {
  display: block !important;
  max-width: 180px !important;
  height: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 🚫 強制移除遊戲卡片與縮略圖的偽元素圖示 */
article.game-card .game-image::before,
article.game-card .game-image:before,
div.game-image::before,
div.game-image:before,
.news-thumbnail::before,
.news-thumbnail:before,
div.news-thumbnail::before,
div.news-thumbnail:before {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* 🖥️ 桌面版特別強化 - 確保偽元素完全移除 */
@media (min-width: 768px) {
  article.game-card .game-image::before,
  article.game-card .game-image:before,
  div.game-image::before,
  div.game-image:before,
  .news-thumbnail::before,
  .news-thumbnail:before,
  div.news-thumbnail::before,
  div.news-thumbnail:before {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== Phase 2.0：首頁主視覺與內容層次 ===== */
body.home .main-content,
body.front-page .main-content {
  padding-bottom: 0;
}

body.home .banner-section,
body.front-page .banner-section {
  isolation: isolate;
  min-height: clamp(650px, 76vh, 820px);
  background: #070707;
  overflow: hidden;
}

body.home .banner-background-image,
body.front-page .banner-background-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

body.home .banner-overlay,
body.front-page .banner-overlay {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 4, 5, 0.98) 0%, rgba(4, 4, 5, 0.93) 34%, rgba(4, 4, 5, 0.68) 55%, rgba(4, 4, 5, 0.28) 76%, rgba(4, 4, 5, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 56%, rgba(0, 0, 0, 0.94) 100%);
}

body.home .banner-section > .container,
body.front-page .banner-section > .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-top: 88px;
  padding-bottom: 170px;
}

body.home .banner-content,
body.front-page .banner-content {
  width: 100%;
  max-width: 580px;
  padding: 0;
  text-align: left;
}

body.home .banner-eyebrow,
body.front-page .banner-eyebrow {
  margin: 0 0 18px;
  color: #e0bd62;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

body.home .banner-title,
body.front-page .banner-title {
  max-width: 580px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-align: left;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  text-wrap: balance;
}

body.home .banner-subtitle,
body.front-page .banner-subtitle {
  max-width: 540px;
  margin: 0 0 34px;
  color: #d2d2d2;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

body.home .banner-actions,
body.front-page .banner-actions {
  justify-content: flex-start;
  gap: 14px;
}

body.home .banner-actions .btn-primary,
body.home .banner-actions .btn-secondary,
body.front-page .banner-actions .btn-primary,
body.front-page .banner-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

body.home .banner-actions .btn-primary,
body.front-page .banner-actions .btn-primary {
  border: 1px solid #ed5d45;
  background: linear-gradient(135deg, #a7131c 0%, #dd3028 64%, #cf8d31 135%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(178, 24, 28, 0.3);
}

body.home .banner-actions .btn-secondary,
body.front-page .banner-actions .btn-secondary {
  border: 1px solid #d5b45c;
  background: rgba(10, 10, 10, 0.5);
  color: #f1d27b;
  box-shadow: inset 0 0 0 1px rgba(255, 225, 143, 0.06);
}

body.home .banner-actions .btn-primary:hover,
body.front-page .banner-actions .btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #bd1822 0%, #eb4035 64%, #dca041 135%);
  box-shadow: 0 14px 32px rgba(178, 24, 28, 0.4);
  color: #fff;
}

body.home .banner-actions .btn-secondary:hover,
body.front-page .banner-actions .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: #f1d27b;
  background: rgba(213, 180, 92, 0.12);
  color: #ffe5a0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

body.home .banner-actions a:focus-visible,
body.home .banner-quick-link:focus-visible,
body.home .news-title a:focus-visible,
body.home .news-read-more:focus-visible,
body.home .guide-btn:focus-visible,
body.front-page .banner-actions a:focus-visible,
body.front-page .banner-quick-link:focus-visible,
body.front-page .news-title a:focus-visible,
body.front-page .news-read-more:focus-visible,
body.front-page .guide-btn:focus-visible {
  outline: 3px solid #f0cf75;
  outline-offset: 3px;
}

body.home .banner-quick-links,
body.front-page .banner-quick-links {
  position: absolute;
  right: 20px;
  bottom: 24px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(213, 180, 92, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(24, 23, 21, 0.94), rgba(8, 8, 8, 0.92));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.36);
}

body.home .banner-quick-link,
body.front-page .banner-quick-link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 20px;
  border-right: 1px solid rgba(213, 180, 92, 0.2);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

body.home .banner-quick-link:last-child,
body.front-page .banner-quick-link:last-child {
  border-right: 0;
}

body.home .banner-quick-link:hover,
body.front-page .banner-quick-link:hover {
  background: rgba(213, 180, 92, 0.08);
  color: #fff;
  box-shadow: inset 0 2px 0 rgba(238, 204, 113, 0.64);
}

body.home .banner-quick-icon,
body.front-page .banner-quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(224, 189, 98, 0.5);
  border-radius: 9px;
  background: rgba(224, 189, 98, 0.08);
  color: #e0bd62;
}

body.home .banner-quick-icon svg,
body.front-page .banner-quick-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home .banner-quick-copy,
body.front-page .banner-quick-copy {
  min-width: 0;
}

body.home .banner-quick-copy strong,
body.home .banner-quick-copy small,
body.front-page .banner-quick-copy strong,
body.front-page .banner-quick-copy small {
  display: block;
  overflow-wrap: anywhere;
}

body.home .banner-quick-copy strong,
body.front-page .banner-quick-copy strong {
  margin-bottom: 4px;
  color: #f5e6ba;
  font-size: 1rem;
  line-height: 1.35;
}

body.home .banner-quick-copy small,
body.front-page .banner-quick-copy small {
  color: #aaa;
  font-size: 0.78rem;
  line-height: 1.5;
}

body.home .banner-quick-arrow,
body.front-page .banner-quick-arrow {
  color: #d8b65e;
  font-size: 1.1rem;
}

body.home .games-section,
body.home .news-section,
body.home .faq-section,
body.home .guide-section,
body.front-page .games-section,
body.front-page .news-section,
body.front-page .faq-section,
body.front-page .guide-section {
  padding: clamp(72px, 8vw, 104px) 0;
}

body.home .games-section,
body.front-page .games-section {
  background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
}

body.home .news-section,
body.front-page .news-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

body.home .faq-section,
body.front-page .faq-section {
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
}

body.home .guide-section,
body.front-page .guide-section {
  background: linear-gradient(180deg, #0b0b0b 0%, #111 100%);
}

body.home .content-header,
body.front-page .content-header {
  margin-bottom: 36px;
}

body.home .section-title,
body.front-page .section-title {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  color: #f4e4b6;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: none;
}

body.home .section-subtitle,
body.front-page .section-subtitle {
  margin: 0 auto;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.75;
}

body.home .games-grid,
body.home .news-grid,
body.home .faq-grid,
body.home .guides-grid,
body.front-page .games-grid,
body.front-page .news-grid,
body.front-page .faq-grid,
body.front-page .guides-grid {
  margin-top: 0;
  padding: 0;
  gap: 20px;
}

body.home .games-grid,
body.home .guides-grid,
body.front-page .games-grid,
body.front-page .guides-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home .news-grid,
body.home .faq-grid,
body.front-page .news-grid,
body.front-page .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home .game-card,
body.home .news-card,
body.home .faq-item,
body.home .guide-card,
body.front-page .game-card,
body.front-page .news-card,
body.front-page .faq-item,
body.front-page .guide-card {
  border: 1px solid rgba(205, 170, 83, 0.3);
  border-radius: 12px;
  background: linear-gradient(145deg, #1b1b1b 0%, #0e0e0e 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 236, 177, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.home .game-card::before,
body.front-page .game-card::before {
  content: none;
}

body.home .game-card:hover,
body.home .news-card:hover,
body.home .faq-item:hover,
body.home .guide-card:hover,
body.home .news-card:focus-within,
body.home .guide-card:focus-within,
body.front-page .game-card:hover,
body.front-page .news-card:hover,
body.front-page .faq-item:hover,
body.front-page .guide-card:hover,
body.front-page .news-card:focus-within,
body.front-page .guide-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(229, 195, 103, 0.68);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(213, 180, 92, 0.08);
}

body.home .game-content,
body.front-page .game-content {
  min-height: 170px;
  padding: 26px;
}

body.home .game-title,
body.front-page .game-title {
  margin-bottom: 12px;
  color: #f0d487;
  font-size: 1.18rem;
  line-height: 1.35;
}

body.home .game-description,
body.front-page .game-description {
  margin: 0;
  color: #b8b8b8;
  font-size: 0.94rem;
  line-height: 1.75;
}

body.home .news-card,
body.front-page .news-card {
  height: 100%;
}

body.home .news-thumbnail,
body.front-page .news-thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #242424, #101010);
}

body.home .news-thumbnail img,
body.front-page .news-thumbnail img {
  aspect-ratio: 16 / 9;
}

body.home .news-content,
body.front-page .news-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

body.home .news-title,
body.front-page .news-title {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.45;
}

body.home .news-title a,
body.front-page .news-title a {
  color: #f3dfaa;
}

body.home .news-title a:hover,
body.front-page .news-title a:hover {
  color: #ffe6a2;
}

body.home .news-excerpt,
body.front-page .news-excerpt {
  margin-bottom: 18px;
  color: #bbb;
  font-size: 0.94rem;
  line-height: 1.7;
}

body.home .news-meta,
body.front-page .news-meta {
  margin: 0 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(213, 180, 92, 0.16);
  border-bottom: 0;
  color: #929292;
  font-size: 0.82rem;
}

body.home .news-read-more,
body.front-page .news-read-more {
  margin-top: auto;
  color: #debe66;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

body.home .news-read-more:hover,
body.front-page .news-read-more:hover {
  color: #f1d27b;
  transform: translateX(2px);
}

body.home .faq-item,
body.front-page .faq-item {
  overflow: hidden;
}

body.home .faq-question,
body.front-page .faq-question {
  padding: 22px;
  background: transparent;
}

body.home .faq-question:hover,
body.front-page .faq-question:hover {
  background: rgba(213, 180, 92, 0.055);
}

body.home .faq-question h3,
body.front-page .faq-question h3 {
  color: #f0d487;
  font-size: 1.05rem;
  line-height: 1.5;
}

body.home .faq-answer,
body.front-page .faq-answer {
  background: rgba(7, 7, 7, 0.52);
}

body.home .faq-answer p,
body.front-page .faq-answer p {
  color: #bbb;
  line-height: 1.7;
}

body.home .guide-card,
body.front-page .guide-card {
  display: flex;
  height: 100%;
  overflow: hidden;
}

body.home .guide-content,
body.front-page .guide-content {
  width: 100%;
  padding: 24px;
}

body.home .guide-content h3,
body.front-page .guide-content h3 {
  margin-bottom: 12px;
  color: #f0d487;
  font-size: 1.16rem;
  line-height: 1.4;
}

body.home .guide-content p,
body.front-page .guide-content p {
  margin-bottom: 22px;
  color: #b8b8b8;
  font-size: 0.93rem;
  line-height: 1.7;
}

body.home .guide-btn,
body.front-page .guide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(213, 180, 92, 0.58);
  border-radius: 8px;
  background: rgba(213, 180, 92, 0.08);
  color: #efd17b;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.home .guide-btn:hover,
body.front-page .guide-btn:hover {
  border-color: #e1c168;
  background: rgba(213, 180, 92, 0.15);
  color: #ffe39a;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  body.home .banner-section > .container,
  body.front-page .banner-section > .container {
    padding-top: 76px;
    padding-bottom: 166px;
  }

  body.home .banner-content,
  body.front-page .banner-content {
    max-width: 540px;
  }

  body.home .banner-quick-link,
  body.front-page .banner-quick-link {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 17px;
  }

  body.home .banner-quick-arrow,
  body.front-page .banner-quick-arrow {
    display: none;
  }

  body.home .games-grid,
  body.home .news-grid,
  body.home .guides-grid,
  body.front-page .games-grid,
  body.front-page .news-grid,
  body.front-page .guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .faq-grid,
  body.front-page .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.home .banner-section,
  body.front-page .banner-section {
    min-height: clamp(700px, 100svh, 820px);
  }

  body.home .banner-background-image,
  body.front-page .banner-background-image {
    object-position: 70% center;
  }

  body.home .banner-overlay,
  body.front-page .banner-overlay {
    background:
      linear-gradient(90deg, rgba(3, 3, 4, 0.94) 0%, rgba(3, 3, 4, 0.8) 62%, rgba(3, 3, 4, 0.7) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.24) 52%, rgba(0, 0, 0, 0.96) 100%);
  }

  body.home .banner-section > .container,
  body.front-page .banner-section > .container {
    justify-content: center;
    padding: 64px 15px 24px;
  }

  body.home .banner-content,
  body.front-page .banner-content {
    max-width: 560px;
  }

  body.home .banner-title,
  body.front-page .banner-title {
    max-width: 540px;
    font-size: clamp(2.5rem, 8vw, 3.6rem);
  }

  body.home .banner-actions,
  body.front-page .banner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 520px;
  }

  body.home .banner-actions .btn-primary,
  body.home .banner-actions .btn-secondary,
  body.front-page .banner-actions .btn-primary,
  body.front-page .banner-actions .btn-secondary {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 13px 18px;
  }

  body.home .banner-quick-links,
  body.front-page .banner-quick-links {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 44px;
  }

  body.home .banner-quick-link,
  body.front-page .banner-quick-link {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 15px 13px;
  }

  body.home .banner-quick-icon,
  body.front-page .banner-quick-icon {
    width: 36px;
    height: 36px;
  }

  body.home .banner-quick-icon svg,
  body.front-page .banner-quick-icon svg {
    width: 21px;
    height: 21px;
  }

  body.home .games-section,
  body.home .news-section,
  body.home .faq-section,
  body.home .guide-section,
  body.front-page .games-section,
  body.front-page .news-section,
  body.front-page .faq-section,
  body.front-page .guide-section {
    padding: 64px 0;
  }

  body.home .games-grid,
  body.home .news-grid,
  body.home .guides-grid,
  body.front-page .games-grid,
  body.front-page .news-grid,
  body.front-page .guides-grid {
    grid-template-columns: 1fr;
  }

  body.home .game-content,
  body.front-page .game-content {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  body.home .banner-section,
  body.front-page .banner-section {
    min-height: auto;
  }

  body.home .banner-section > .container,
  body.front-page .banner-section > .container {
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 24px;
  }

  body.home .banner-background-image,
  body.front-page .banner-background-image {
    object-position: 72% center;
  }

  body.home .banner-overlay,
  body.front-page .banner-overlay {
    background:
      linear-gradient(90deg, rgba(3, 3, 4, 0.95) 0%, rgba(3, 3, 4, 0.84) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.98) 100%);
  }

  body.home .banner-eyebrow,
  body.front-page .banner-eyebrow {
    margin-bottom: 14px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  body.home .banner-title,
  body.front-page .banner-title {
    margin-bottom: 20px;
    font-size: clamp(2.1rem, 10.5vw, 2.8rem);
    line-height: 1.1;
  }

  body.home .banner-subtitle,
  body.front-page .banner-subtitle {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.65;
  }

  body.home .banner-actions,
  body.front-page .banner-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.home .banner-quick-links,
  body.front-page .banner-quick-links {
    grid-template-columns: 1fr;
    margin-top: 38px;
    border-radius: 10px;
  }

  body.home .banner-quick-link,
  body.front-page .banner-quick-link {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 13px 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 180, 92, 0.18);
  }

  body.home .banner-quick-link:last-child,
  body.front-page .banner-quick-link:last-child {
    border-bottom: 0;
  }

  body.home .banner-quick-arrow,
  body.front-page .banner-quick-arrow {
    display: inline;
  }
}

@media (max-width: 430px) {
  body.home .banner-section > .container,
  body.front-page .banner-section > .container {
    padding: 56px 12px 20px;
  }

  body.home .banner-title,
  body.front-page .banner-title {
    font-size: clamp(2rem, 10.4vw, 2.55rem);
  }

  body.home .banner-quick-links,
  body.front-page .banner-quick-links {
    margin-top: 34px;
  }

  body.home .content-header,
  body.front-page .content-header {
    margin-bottom: 28px;
  }

  body.home .section-title,
  body.front-page .section-title {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .banner-actions a,
  body.home .banner-quick-link,
  body.home .game-card,
  body.home .news-card,
  body.home .faq-item,
  body.home .guide-card,
  body.home .news-read-more,
  body.home .guide-btn,
  body.front-page .banner-actions a,
  body.front-page .banner-quick-link,
  body.front-page .game-card,
  body.front-page .news-card,
  body.front-page .faq-item,
  body.front-page .guide-card,
  body.front-page .news-read-more,
  body.front-page .guide-btn {
    transition: none;
  }

  body.home .banner-actions a:hover,
  body.home .game-card:hover,
  body.home .news-card:hover,
  body.home .faq-item:hover,
  body.home .guide-card:hover,
  body.home .news-card:focus-within,
  body.home .guide-card:focus-within,
  body.home .news-read-more:hover,
  body.front-page .banner-actions a:hover,
  body.front-page .game-card:hover,
  body.front-page .news-card:hover,
  body.front-page .faq-item:hover,
  body.front-page .guide-card:hover,
  body.front-page .news-card:focus-within,
  body.front-page .guide-card:focus-within,
  body.front-page .news-read-more:hover {
    transform: none;
  }
}

/* Bet852 固定資訊頁 */
.bet852-info-page {
  --bet852-info-gold: #d9b95f;
  --bet852-info-gold-light: #f2d98f;
  --bet852-info-red: #d52b2f;
  --bet852-info-red-dark: #8f1118;
  min-width: 0;
  overflow: hidden;
  background: #090909;
  color: #c9c9c9;
}

.bet852-info-container {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
}

.bet852-info-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 9vw, 124px) 0 clamp(72px, 8vw, 108px);
  border-bottom: 1px solid rgba(217, 185, 95, 0.26);
  background:
    radial-gradient(circle at 84% 18%, rgba(213, 43, 47, 0.19), transparent 34%),
    radial-gradient(circle at 72% 74%, rgba(217, 185, 95, 0.1), transparent 30%),
    linear-gradient(135deg, #080808 0%, #14100f 52%, #090909 100%);
}

.bet852-info-hero::before,
.bet852-info-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.bet852-info-hero::before {
  top: -34%;
  right: -8%;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 185, 95, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(217, 185, 95, 0.025), 0 0 0 112px rgba(213, 43, 47, 0.025);
}

.bet852-info-hero::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bet852-info-red) 34%, var(--bet852-info-gold) 66%, transparent);
  opacity: 0.7;
}

.bet852-info-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.bet852-info-eyebrow,
.bet852-info-kicker {
  margin: 0;
  color: var(--bet852-info-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.bet852-info-title {
  max-width: 780px;
  margin: 18px 0 22px;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-align: left;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.48);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.bet852-info-lead {
  max-width: 700px;
  margin: 0;
  color: #c8c8c8;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.bet852-info-section {
  padding: clamp(72px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(213, 43, 47, 0.055), transparent 28%),
    linear-gradient(180deg, #101010 0%, #080808 100%);
}

.bet852-info-section-heading {
  max-width: 760px;
  margin: 0 0 38px;
}

.bet852-info-section-heading--compact {
  margin-bottom: 24px;
}

.bet852-info-heading,
.bet852-info-panel-title,
.bet852-info-notice-title {
  padding: 0;
  border: 0;
  text-align: left;
  text-shadow: none;
}

.bet852-info-heading {
  margin: 12px 0 14px;
  color: #f4e6bc;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.bet852-info-section-copy {
  margin: 0;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.8;
}

.bet852-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bet852-info-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bet852-info-card {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(217, 185, 95, 0.28);
  border-radius: 12px;
  background: linear-gradient(145deg, #1b1b1b 0%, #0e0e0e 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 236, 177, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bet852-info-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bet852-info-red), var(--bet852-info-gold), transparent 78%);
  content: "";
}

.bet852-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 201, 119, 0.6);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(213, 43, 47, 0.05);
}

.bet852-info-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 22px;
  padding: 0 10px;
  border: 1px solid rgba(217, 185, 95, 0.42);
  border-radius: 7px;
  background: rgba(217, 185, 95, 0.075);
  color: var(--bet852-info-gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.bet852-info-card-title {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  color: #f0d487;
  font-size: 1.25rem;
  line-height: 1.4;
  text-shadow: none;
}

.bet852-info-card p,
.bet852-info-notice p,
.bet852-info-panel p,
.bet852-info-faq-item p {
  margin: 0;
  color: #b9b9b9;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.bet852-info-notice {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(213, 43, 47, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 16, 23, 0.2), rgba(20, 15, 14, 0.92));
}

.bet852-info-notice-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(238, 85, 88, 0.6);
  border-radius: 10px;
  background: rgba(213, 43, 47, 0.16);
  color: #ffb1aa;
  font-size: 1.25rem;
  font-weight: 800;
}

.bet852-info-notice-title {
  margin: 0 0 8px;
  color: #ffd0c8;
  font-size: 1.2rem;
  line-height: 1.4;
}

.bet852-info-panel {
  margin-top: 24px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(217, 185, 95, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(115deg, rgba(213, 43, 47, 0.12), transparent 38%),
    linear-gradient(145deg, #191817 0%, #0d0d0d 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.bet852-info-panel--cta {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.bet852-info-panel--cta > div {
  min-width: 0;
  max-width: 720px;
}

.bet852-info-panel-title {
  margin: 10px 0 12px;
  color: #f1d98e;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.bet852-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.bet852-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.bet852-info-button--primary {
  flex: 0 0 auto;
  border-color: #eb5a4d;
  background: linear-gradient(135deg, var(--bet852-info-red-dark) 0%, var(--bet852-info-red) 68%, #bc7628 140%);
  box-shadow: 0 12px 28px rgba(143, 17, 24, 0.32);
}

.bet852-info-button--secondary {
  border-color: rgba(217, 185, 95, 0.64);
  background: rgba(217, 185, 95, 0.075);
  color: var(--bet852-info-gold-light);
}

.bet852-info-button:hover {
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.bet852-info-button--primary:hover {
  background: linear-gradient(135deg, #a9151d 0%, #e33a37 68%, #cb8733 140%);
  box-shadow: 0 15px 32px rgba(143, 17, 24, 0.4);
}

.bet852-info-button--secondary:hover {
  border-color: var(--bet852-info-gold-light);
  background: rgba(217, 185, 95, 0.14);
  color: #ffe9aa;
}

.bet852-info-page a:focus-visible,
.bet852-info-page summary:focus-visible {
  outline: 3px solid var(--bet852-info-gold-light);
  outline-offset: 3px;
}

.bet852-info-faq {
  margin-top: clamp(64px, 8vw, 92px);
}

.bet852-info-faq-list {
  display: grid;
  gap: 14px;
}

.bet852-info-faq-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 185, 95, 0.28);
  border-radius: 10px;
  background: linear-gradient(145deg, #181818 0%, #0d0d0d 100%);
}

.bet852-info-faq-item summary {
  padding: 20px 24px;
  color: #f0d487;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.bet852-info-faq-item summary::marker {
  color: var(--bet852-info-red);
}

.bet852-info-faq-item p {
  padding: 0 24px 22px;
}

@media (max-width: 1024px) {
  .bet852-info-hero {
    padding-top: 88px;
    padding-bottom: 78px;
  }

  .bet852-info-grid,
  .bet852-info-grid--three {
    gap: 16px;
  }

  .bet852-info-card {
    min-height: 0;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .bet852-info-hero {
    padding: 68px 0 62px;
  }

  .bet852-info-title {
    font-size: clamp(2.25rem, 8vw, 3.1rem);
  }

  .bet852-info-section {
    padding: 64px 0;
  }

  .bet852-info-grid,
  .bet852-info-grid--three {
    grid-template-columns: 1fr;
  }

  .bet852-info-panel--cta {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .bet852-info-container {
    width: min(calc(100% - 32px), 1120px);
  }

  .bet852-info-hero {
    padding: 58px 0 54px;
  }

  .bet852-info-hero::before {
    top: -12%;
    right: -42%;
    width: 112vw;
  }

  .bet852-info-eyebrow,
  .bet852-info-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .bet852-info-title {
    margin-top: 14px;
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .bet852-info-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .bet852-info-section-heading {
    margin-bottom: 30px;
  }

  .bet852-info-heading {
    font-size: 1.75rem;
  }

  .bet852-info-card {
    padding: 22px;
  }

  .bet852-info-notice {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .bet852-info-notice-mark {
    width: 40px;
    height: 40px;
  }

  .bet852-info-panel--cta {
    flex-direction: column;
    gap: 24px;
  }

  .bet852-info-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bet852-info-button,
  .bet852-info-panel--cta .bet852-info-button {
    width: 100%;
  }

  .bet852-info-faq-item summary {
    padding: 18px 20px;
  }

  .bet852-info-faq-item p {
    padding: 0 20px 20px;
  }
}

@media (max-width: 430px) {
  .bet852-info-container {
    width: min(calc(100% - 28px), 1120px);
  }

  .bet852-info-section {
    padding: 54px 0;
  }

  .bet852-info-card,
  .bet852-info-panel {
    padding: 20px;
  }
}

@media (max-width: 390px) {
  .bet852-info-title {
    font-size: 2rem;
  }

  .bet852-info-heading {
    font-size: 1.6rem;
  }

  .bet852-info-notice {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bet852-info-card,
  .bet852-info-button {
    transition: none;
  }

  .bet852-info-card:hover,
  .bet852-info-button:hover {
    transform: none;
  }
}
