:root {
    /* 主色调 */
    --primary: #6366f1;
    /* 靛蓝色 */
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;

    /* 强调色 */
    --accent: #eab308;
    /* 黄色 */
    --accent-dark: #ca8a04;
    --accent-light: #facc15;

    /* 中性色 */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;

    /* 渐变 */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);

    /* 阴影 */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    padding-top: 80px;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1100;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: #ffffff;
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #facc15;
    outline-offset: 3px;
}

/* 导航栏样式 */
.navbar {
    background: var(--gradient-primary);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    color: var(--bg-white) !important;
    font-weight: 700;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .brand-text {
    margin-left: 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.025em;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link {
    color: var(--bg-white) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Ensure all navbar items (including buttons) are vertically centered */
.navbar .navbar-nav {
    align-items: center;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bg-white) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* 移动端导航样式 */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-collapse {
        background: var(--primary-dark);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 0.25rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-light);
        transform: none;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-toggler {
        padding: 0.4rem;
        border-radius: 0.375rem;
        background: var(--primary-light);
    }

    .navbar-toggler:hover {
        background: var(--primary-dark);
    }

    body {
        padding-top: 70px;
    }

    .hero-section {
        padding: 4rem 0 4rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }
}

/* Hero区域样式 */
.hero-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-eyebrow svg,
.hero-benefits svg,
.section-link svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero-actions .btn {
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-hero-primary {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.24);
}

.btn-hero-primary:hover {
    background: #f8fafc;
    color: #3730a3;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    border-color: rgba(255, 255, 255, 0.65) !important;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn-hero-secondary:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 1.25rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.92);
    list-style: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* 游戏卡片样式 */
.games-section {
    padding: 3rem 0 5rem;
    background-image: url('../image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.games-section .container {
    position: relative;
    z-index: 2;
}

.section-intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-kicker {
    margin: 0 0 0.35rem;
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-intro h2 {
    margin: 0 0 0.5rem;
    color: var(--text-dark);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
}

.section-intro p:last-child {
    max-width: 640px;
    margin: 0;
    color: #475569;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 44px;
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.section-link:hover {
    color: #3730a3;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.game-card {
    background: var(--bg-white);
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.game-card:focus-within {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.22), var(--shadow-hover);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 1rem;
    background: var(--bg-light);
    transition: transform 0.6s ease;
}

.game-card-illustration {
    display: grid;
    place-items: center;
    height: 180px;
    padding: 1rem;
    background: var(--bg-light);
}

.game-card-illustration svg {
    width: 116px;
    height: 116px;
    fill: none;
    stroke: var(--primary-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 5;
}

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

.game-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 180px);
}

.game-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.game-card .card-text {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.game-card .btn-primary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    font-weight: 700;
}

.game-card .btn-primary:hover {
    border-color: #3730a3;
    background: #3730a3;
}

/* 反馈表单部分样式 */
.feedback-section {
    padding: 4rem 0;
    background-image: url('../image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.feedback-section .container {
    position: relative;
    z-index: 2;
}

.feedback-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 分类区域样式 */
.categories-section {
    padding: 5rem 0;
    background-image: url('../image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.categories-section .container {
    position: relative;
    z-index: 2;
}

/* 内容区域样式 */
.content-section {
    background-image: url('../image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.content-section .container {
    position: relative;
    z-index: 2;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .homepage-zh {
        padding-top: 66px;
    }

    .homepage-zh .navbar {
        padding: 0.5rem 0;
    }

    .homepage-zh .navbar-brand img {
        height: 40px;
    }

    .homepage-zh .navbar-brand .brand-text {
        margin-left: 0.35rem;
        font-size: 1.16rem;
    }

    .homepage-zh .navbar-collapse {
        max-height: calc(100vh - 82px);
        overflow-y: auto;
        padding: 0.65rem;
    }

    .homepage-zh .navbar-nav {
        align-items: stretch;
    }

    .homepage-zh .navbar-nav .nav-item,
    .homepage-zh .navbar-nav .nav-link {
        width: 100%;
    }

    .homepage-zh .navbar-nav .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.55rem 0.75rem !important;
    }

    .homepage-zh .auth-buttons {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding-top: 0.25rem;
    }

    .homepage-zh .hero-section {
        min-height: auto;
        padding: 2rem 0 2.25rem;
    }

    .homepage-zh .hero-eyebrow {
        margin-bottom: 0.75rem;
        font-size: 0.82rem;
    }

    .homepage-zh .hero-section h1 {
        margin-bottom: 0.75rem;
        font-size: clamp(2.1rem, 11vw, 2.75rem);
    }

    .homepage-zh .hero-section .lead {
        max-width: 32rem;
        font-size: 1rem;
        line-height: 1.65;
    }

    .homepage-zh .hero-actions {
        margin-top: 1.25rem;
    }

    .homepage-zh .hero-actions .btn {
        flex: 1;
        max-width: 180px;
        padding: 0.65rem 0.85rem;
    }

    .homepage-zh .hero-benefits {
        gap: 0.4rem 0.85rem;
        margin-top: 1rem;
        font-size: 0.8rem;
    }

    .homepage-zh .games-section {
        padding: 2.5rem 0;
    }

    .section-intro {
        display: block;
        margin-bottom: 1.5rem;
    }

    .section-link {
        margin-top: 0.65rem;
    }

    .game-card img {
        height: 150px;
    }

    .game-card-illustration {
        height: 150px;
    }

    .game-card .card-body {
        height: calc(100% - 150px);
        padding: 1.25rem;
    }

    .game-card:hover {
        transform: none;
    }

    .feedback-subtitle {
        font-size: 1.25rem;
        padding: 0 1rem;
    }

    .content-section,
    .games-section,
    .categories-section,
    .feedback-section {
        background-attachment: scroll;
    }
}

@media (max-width: 390px) {
    .homepage-zh .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .homepage-zh .hero-actions .btn {
        max-width: none;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Premium链接特殊样式 */
.nav-link[href*="premium"],
.quick-game-btn[href*="premium"],
.premium-btn,
.navbar .premium-highlight {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    margin: 0 4px !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.4) !important;
    transition: all 0.3s ease !important;
    border: 2px solid #facc15 !important;
}

.nav-link[href*="premium"]:hover,
.quick-game-btn[href*="premium"]:hover,
.premium-btn:hover,
.navbar .premium-highlight:hover {
    background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%) !important;
    color: white !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.6) !important;
    border-color: #eab308 !important;
}

/* 游戏导航中的Premium链接样式 */
.nav-actions a[href*="premium"],
.floating-nav a[href*="premium"],
.nav-menu a[href*="premium"] {
    background: var(--gradient-accent) !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 10px 15px !important;
    margin: 5px 0 !important;
    display: block !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.3) !important;
}

.nav-actions a[href*="premium"]:hover,
.floating-nav a[href*="premium"]:hover,
.nav-menu a[href*="premium"]:hover {
    background: var(--accent-dark) !important;
    color: white !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.5) !important;
}

/* 特殊强化样式 - 确保游戏导航中的Premium链接显示正确 */
.premium-highlight,
a.premium-highlight {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 10px 15px !important;
    margin: 5px 0 !important;
    display: block !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.3) !important;
    border: 2px solid #facc15 !important;
}

.premium-highlight:hover,
a.premium-highlight:hover {
    background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%) !important;
    color: white !important;
    transform: translateX(5px) scale(1.02) !important;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.6) !important;
    border-color: #eab308 !important;
}

/* 强力Premium按钮样式 - 确保覆盖所有默认样式 */
.navbar .nav-link[href*="premium"],
.nav-actions a[href*="premium"],
.floating-nav a[href*="premium"],
.nav-menu a[href*="premium"],
.quick-game-btn[href*="premium"],
.premium-highlight,
a.premium-highlight,
.premium-btn {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.4) !important;
    border: 2px solid #facc15 !important;
    transition: all 0.3s ease !important;
    margin: 2px 4px !important;
    display: inline-block !important;
}

.navbar .nav-link[href*="premium"]:hover,
.nav-actions a[href*="premium"]:hover,
.floating-nav a[href*="premium"]:hover,
.nav-menu a[href*="premium"]:hover,
.quick-game-btn[href*="premium"]:hover,
.premium-highlight:hover,
a.premium-highlight:hover,
.premium-btn:hover {
    background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%) !important;
    color: white !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.6) !important;
    border-color: #eab308 !important;
}

/* 确保语言下拉菜单中的Premium链接保持普通样式 */
.dropdown-menu .dropdown-item[href*="premium"] {
    background: none !important;
    color: inherit !important;
    font-weight: normal !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.dropdown-menu .dropdown-item[href*="premium"]:hover {
    background: var(--bs-dropdown-link-hover-bg) !important;
    color: var(--bs-dropdown-link-hover-color) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* 超强力Premium按钮样式 - 最高优先级确保主导航栏Premium按钮是黄色 */
.navbar-nav .nav-item .nav-link[href*="premium"],
.navbar .nav-link[href*="premium"],
li.nav-item a[href*="premium"] {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    box-shadow: 0 3px 10px rgba(234, 179, 8, 0.5) !important;
    border: 2px solid #facc15 !important;
    transition: all 0.3s ease !important;
    margin: 2px 8px !important;
    display: inline-block !important;
}

.navbar-nav .nav-item .nav-link[href*="premium"]:hover,
.navbar .nav-link[href*="premium"]:hover,
li.nav-item a[href*="premium"]:hover {
    background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%) !important;
    color: white !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(234, 179, 8, 0.7) !important;
    border-color: #eab308 !important;
}

/* 专门针对游戏导航中的Premium链接 - 超强力样式 */
.floating-nav .nav-actions a.premium-highlight,
.nav-menu .nav-actions a[href*="premium"],
.nav-actions a.premium-highlight,
div.nav-actions a[href*="premium"],
.nav-actions > a[href*="premium"] {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    padding: 10px 15px !important;
    box-shadow: 0 3px 10px rgba(234, 179, 8, 0.5) !important;
    border: 2px solid #facc15 !important;
    transition: all 0.3s ease !important;
    margin: 5px 0 !important;
    display: block !important;
}

.floating-nav .nav-actions a.premium-highlight:hover,
.nav-menu .nav-actions a[href*="premium"]:hover,
.nav-actions a.premium-highlight:hover,
div.nav-actions a[href*="premium"]:hover,
.nav-actions > a[href*="premium"]:hover {
    background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%) !important;
    color: white !important;
    transform: translateX(5px) scale(1.02) !important;
    box-shadow: 0 5px 15px rgba(234, 179, 8, 0.7) !important;
    border-color: #eab308 !important;
}

/* 快速访问栏Premium链接样式 */
.quick-games-bar a.premium-highlight,
.quick-games-bar .premium-btn,
#quickAccessBar a[href*="premium"] {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 20px !important;
    padding: 8px 12px !important;
    box-shadow: 0 3px 10px rgba(234, 179, 8, 0.5) !important;
    border: 2px solid #facc15 !important;
    transition: all 0.3s ease !important;
    margin: 0 4px !important;
}

.quick-games-bar a.premium-highlight:hover,
.quick-games-bar .premium-btn:hover,
#quickAccessBar a[href*="premium"]:hover {
    background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%) !important;
    color: white !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(234, 179, 8, 0.7) !important;
    border-color: #eab308 !important;
}
