/**
 * May88 Theme - Main Stylesheet
 *
 * @package May88_Theme
 */

/* ========================================
   1. Header Styles
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.header-inner {
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Site Branding */
.site-branding {
    flex-shrink: 0;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-title a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-title a:hover {
    color: #ff6b35;
}

/* Navigation - Desktop */
.main-navigation {
    flex: 1;
    margin: 0 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 10px 20px;
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

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

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #ff6b35;
    padding: 10px 25px;
}

.btn-login:hover {
    background: #ff6b35;
    color: #fff;
}

.btn-register {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
}

.btn-register:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

/* Mobile Navigation */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    border-left: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-navigation.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.close-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    position: relative;
}

.close-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px;
    color: #e0e0e0;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.mobile-menu-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-actions .btn {
    text-align: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   2. Hero Section
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   3. Games Section
   ======================================== */

.games-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.games-grid {
    margin-top: 50px;
}

.game-card {
    text-align: center;
    padding: 40px 30px;
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon span {
    font-size: 2rem;
    color: #fff;
}

.game-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.game-card p {
    color: #888;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   4. Features Section
   ======================================== */

.features-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
}

.features-grid {
    margin-top: 50px;
}

.feature-card {
    padding: 40px 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon span {
    font-size: 1.5rem;
    color: #ff6b35;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   5. VIP Section
   ======================================== */

.vip-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vip-text h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.vip-text p {
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.vip-benefits {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.vip-benefits li {
    color: #e0e0e0;
    padding: 10px 0 10px 30px;
    position: relative;
}

.vip-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.vip-levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vip-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.vip-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.vip-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.vip-bronze .vip-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: #fff;
}

.vip-silver .vip-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: #1a1a1a;
}

.vip-gold .vip-badge {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #1a1a1a;
}

.vip-diamond .vip-badge {
    background: linear-gradient(135deg, #b9f2ff 0%, #00bfff 100%);
    color: #1a1a1a;
}

.vip-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.vip-card p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   5.5 Page Hero Section
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
}

.page-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: #888;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
   5.6 About Page Styles
   ======================================== */

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.about-section p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff6b35, #f7931e);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #ff6b35;
    border-radius: 50%;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #888;
    margin: 0;
}

.values-grid {
    margin-top: 40px;
}

.value-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-card p {
    color: #888;
    margin: 0;
    line-height: 1.7;
}

.why-choose-grid {
    margin-top: 40px;
}

.why-choose-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    border-color: #ff6b35;
}

.why-choose-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.why-choose-item p {
    color: #888;
    margin: 0;
    line-height: 1.7;
}

.about-cta {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
}

.about-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.about-cta p {
    color: #888;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ========================================
   5.7 Games Page Styles
   ======================================== */

.games-intro {
    text-align: center;
    margin-bottom: 60px;
}

.games-intro h2 {
    color: #fff;
    margin-bottom: 20px;
}

.games-intro p {
    color: #888;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.game-category {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h2 {
    color: #fff;
    margin-bottom: 15px;
}

.category-header p {
    color: #888;
}

.games-list {
    margin-top: 30px;
}

.game-item {
    padding: 30px;
}

.game-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.game-item p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.7;
}

.vip-games-section {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
}

.vip-games-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.vip-games-section > p {
    color: #888;
    max-width: 700px;
    margin: 0 auto 40px;
}

.vip-benefit h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.vip-benefit p {
    color: #888;
    margin: 0;
    line-height: 1.7;
}

.games-cta {
    text-align: center;
    padding: 60px 0;
}

.games-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.games-cta p {
    color: #888;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   5.8 Promotions Page Styles
   ======================================== */

.promo-intro {
    text-align: center;
    margin-bottom: 60px;
}

.promo-intro h2 {
    color: #fff;
    margin-bottom: 20px;
}

.promo-intro p {
    color: #888;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.promo-category {
    margin-bottom: 60px;
}

.promo-list {
    margin-top: 30px;
}

.promo-item {
    padding: 30px;
    position: relative;
}

.promo-item.featured {
    border: 2px solid #ff6b35;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promo-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.promo-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.promo-item > p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.7;
}

.promo-terms {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.promo-terms li {
    color: #666;
    font-size: 0.9rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.promo-terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
}

.vip-promos .promo-item {
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.upgrade-vip-section {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
}

.upgrade-vip-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.upgrade-vip-section > p {
    color: #888;
    max-width: 700px;
    margin: 0 auto 40px;
}

.vip-levels-promo {
    margin: 40px 0;
}

.vip-level-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
}

.level-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.level-badge.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: #fff;
}

.level-badge.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: #1a1a1a;
}

.level-badge.gold {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #1a1a1a;
}

.level-badge.diamond {
    background: linear-gradient(135deg, #b9f2ff 0%, #00bfff 100%);
    color: #1a1a1a;
}

.vip-level-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.vip-level-card li {
    color: #888;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-level-card li:last-child {
    border-bottom: none;
}

.promo-terms-section {
    margin-top: 60px;
}

.promo-terms-section h2 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.terms-content {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 40px;
}

.terms-content ul {
    margin: 0;
    padding-left: 25px;
}

.terms-content li {
    color: #888;
    padding: 10px 0;
    line-height: 1.7;
}

/* ========================================
   5.9 Support Page Styles
   ======================================== */

.support-channels {
    margin-bottom: 60px;
}

.support-channels h2 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.support-channels > p {
    color: #888;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.channels-grid {
    margin-top: 40px;
}

.channel-card {
    text-align: center;
    padding: 40px 30px;
}

.channel-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon span {
    font-size: 1.8rem;
    color: #fff;
}

.channel-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.channel-card p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.7;
}

.channel-info {
    display: block;
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
}

.vip-support-section {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 60px;
    margin: 60px 0;
}

.vip-support-section h2 {
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.vip-feature h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.vip-feature p {
    color: #888;
    margin: 0;
    line-height: 1.7;
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 30px;
}

.faq-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #888;
    margin: 0;
    line-height: 1.7;
}

.contact-section {
    margin-bottom: 60px;
}

.contact-section h2 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-section > p {
    color: #888;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.form-row {
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff6b35;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin: 0;
}

.working-hours {
    margin-bottom: 60px;
}

.working-hours h2 {
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.hours-card {
    padding: 30px;
}

.hours-card h3 {
    color: #fff;
    margin-bottom: 20px;
}

.hours-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-card li {
    color: #888;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-card li:last-child {
    border-bottom: none;
}

.hours-card strong {
    color: #ff6b35;
}

/* ========================================
   5.10 Contact Page Styles
   ======================================== */

.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-section h2 {
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon span {
    font-size: 1.8rem;
    color: #fff;
}

.contact-info-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #888;
    line-height: 1.8;
    margin: 0;
}

.contact-main-section {
    margin-bottom: 60px;
}

.contact-form-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-form-section > p {
    color: #888;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details-section h2 {
    color: #fff;
    margin-bottom: 30px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.channel-item {
    padding: 25px;
}

.channel-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.channel-item p {
    color: #888;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.social-link {
    color: #ff6b35;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #f7931e;
}

.vip-contact-highlight {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(218, 165, 32, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 30px;
}

.vip-contact-highlight h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.vip-contact-highlight p {
    color: #888;
    margin-bottom: 15px;
    line-height: 1.7;
}

.vip-contact-highlight ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vip-contact-highlight li {
    color: #e0e0e0;
    padding: 5px 0;
}

.contact-faq-section {
    margin-bottom: 60px;
}

.contact-faq-section h2 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-faq-section > p {
    color: #888;
    text-align: center;
    margin-bottom: 40px;
}

.faq-quick-links {
    margin-top: 30px;
}

.faq-link {
    display: block;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-link:hover {
    border-color: #ff6b35;
}

.faq-link h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-link p {
    color: #888;
    margin: 0;
}

.commitment-section {
    margin-bottom: 60px;
}

.commitment-section h2 {
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.commitment-grid {
    margin-top: 40px;
}

.commitment-item {
    text-align: center;
    padding: 30px;
}

.commitment-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.commitment-item p {
    color: #888;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   6. CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.cta-actions .btn-primary {
    background: #fff;
    color: #ff6b35;
}

.cta-actions .btn-primary:hover {
    background: #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-actions .btn-secondary:hover {
    background: #fff;
    color: #ff6b35;
}

/* ========================================
   7. Footer Styles
   ======================================== */

.site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widgets {
    gap: 40px;
}

.footer-widget-area {
    padding: 0 15px;
}

.footer-widget-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.footer-widget p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b35;
    border-color: #ff6b35;
}

.social-icon {
    width: 18px;
    height: 18px;
    background: #888;
    border-radius: 2px;
}

.social-link:hover .social-icon {
    background: #fff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-label {
    color: #666;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* ========================================
   8. Page Content Styles
   ======================================== */

.site-content {
    padding-top: 80px;
}

.page-wrapper {
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-excerpt {
    color: #888;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.page-thumbnail {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.page-thumbnail img {
    width: 100%;
    height: auto;
}

.entry-content {
    color: #e0e0e0;
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3 {
    color: #fff;
    margin: 40px 0 20px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content a {
    color: #ff6b35;
    text-decoration: underline;
}

.entry-content a:hover {
    color: #f7931e;
}

/* ========================================
   9. Posts Grid Styles
   ======================================== */

.posts-grid {
    margin-top: 50px;
}

.post-card {
    overflow: hidden;
}

.post-thumbnail {
    margin: -30px -30px 25px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.entry-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.entry-title a {
    color: #fff;
}

.entry-title a:hover {
    color: #ff6b35;
}

.entry-meta {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-summary {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.read-more:hover {
    color: #f7931e;
}

/* ========================================
   10. Pagination
   ======================================== */

.pagination {
    margin-top: 60px;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    gap: 10px;
}

.page-numbers a,
.page-numbers span {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 5px;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.page-numbers a:hover,
.page-numbers .current {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
}

/* ========================================
   11. Widget Area
   ======================================== */

.widget-area {
    padding: 30px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 10px;
    border: 1px solid #2a2a2a;
}

.widget {
    margin-bottom: 40px;
}

.widget-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #888;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #ff6b35;
}

/* ========================================
   12. Utility Classes
   ======================================== */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #ff6b35;
    color: #fff;
    padding: 10px 20px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 0;
}

.no-results .page-title {
    margin-bottom: 20px;
}

.no-results p {
    color: #888;
    margin-bottom: 30px;
}

/* ========================================
   13. Image Styles
   ======================================== */

/* 游戏卡片图片 */
.game-image {
    margin: -30px -30px 20px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* 游戏缩略图 */
.game-thumb {
    margin: -20px -20px 15px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-item:hover .game-thumb img {
    transform: scale(1.05);
}

/* 分类头部图片 */
.category-image {
    margin: -40px -40px 30px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* 关于我们图片 */
.about-image {
    margin: -40px -40px 30px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* 促销图片 */
.promo-image {
    margin: -40px -40px 30px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* 支持页面图片 */
.support-image {
    margin: -40px -40px 30px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.support-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* 联系页面图片 */
.contact-image {
    margin: -40px -40px 30px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* 通用图片样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 图片加载占位 */
.game-image,
.game-thumb,
.category-image,
.about-image,
.promo-image,
.support-image,
.contact-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}
