/* CSS cho trang web Yue Poker */
:root {
    --primary-dark: #1a1a2e;
    --primary-medium: #16213e;
    --primary-light: #0f3460;
    --accent-gold: #ffd700;
    --accent-orange: #ff6b35;
    --accent-blue: #0f3460;
    --text-white: #ffffff;
    --text-light: #e8e8e8;
    --text-gray: #b8b8b8;
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 4px 15px rgba(255, 215, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--gradient-primary);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
}

.lang-switch {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-weight: 500;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    width: 110px;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.lang-switch:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
}

.lang-switch.active {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
    font-weight: bold;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.lang-switch.active:hover {
    box-shadow: var(--shadow-button);
}

/* Floating Social Menu */
.floating-social-menu {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-social-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.floating-social-item.telegram {
    background: #0088cc;
}

.floating-social-item.telegram:hover {
    background: #006699;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.floating-social-item.facebook {
    background: transparent;
}

.floating-social-item.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.2);
}

.floating-social-item:hover img {
    transform: scale(1.1);
}

.floating-social-item.facebook img {
    filter: brightness(3) contrast(2) saturate(1.5);
}

/* Hide on mobile */
@media (max-width: 768px) {
    .floating-social-menu {
        display: none;
    }
}

/* Bottom Navigation for Mobile */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
    padding: 10px 0;
}

.bottom-nav.active {
    display: block;
}

.bottom-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
}

.bottom-nav-link:hover,
.bottom-nav-link.active {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

.bottom-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.bottom-nav-text {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    padding: 120px 0 40px;
    background: var(--gradient-primary);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding: 1rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 0.2rem;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.hero-link {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.link-text {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}



/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Responsive text for section titles */
.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

/* Guide Section */
.guide-section {
    padding: 40px 0;
    background: var(--primary-medium);
}

.guide-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-card);
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-icon {
    font-size: 3rem;
    display: block;
}

.guide-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--accent-gold);
}

.guide-steps {
    display: grid;

}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step.step-with-images {
    align-items: flex-start;
}

.step.step-with-images .step-number {
    margin-top: 0.5rem;
}

.step.step-with-images .step-number-1 {
    align-self: flex-start;
    margin-top: -0.5rem;
}

.step-number {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.step-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0 1.5rem 0;
    width: 100%;
}

.register-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: block;
    max-width: 100%;
}

.payment-methods {
    display: grid;
    gap: 2rem;
}

.method-category h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.method-icon.alipay {
    background: #1677ff;
    color: white;
}

.method-icon.crypto {
    background: var(--gradient-accent);
    color: var(--primary-dark);
}

.method-item span {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.method-item small {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Download Links Section */
.download-links {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.download-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-item.ios {
    background: rgba(255, 255, 255, 0.05);
}

.download-item.android {
    background: rgba(255, 255, 255, 0.05);
}

.download-item.web {
    background: rgba(255, 255, 255, 0.05);
}

.download-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.download-item h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.download-btn {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 215, 0, 0.3);
    border-color: var(--accent-gold);
}

.club-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.club-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.club-icon {
    font-size: 1.5rem;
}

.club-header h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.club-id {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.club-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.club-number {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.club-note {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
}


/* Games Section */
.games-section {
    padding: 40px 0;
    background: var(--primary-dark);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.game-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
}

/* .game-card:hover::before {
    transform: scaleX(1);
} */

/* .game-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
} */

.game-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.game-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* .game-card:hover .game-icon {
    transform: scale(1.1);
} */

.game-card h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--accent-gold);
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-card p {
    color: var(--text-light);
    margin: 0 0 0.8rem 0;
    line-height: 1.7;
    font-size: 1.1rem;
    padding-left: 3.5rem;
}

.game-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
    padding-left: 3.5rem;
}

.feature {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.game-image {
    width: 60%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin: 1.5rem auto 1.5rem auto;
    display: block;
}

.stakes-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* Promotion Section */
.promotion-section {
    padding: 40px 0;
    background: var(--primary-medium);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-card);
    position: relative;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.promo-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-features {
    list-style: none;
}

.promo-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.promo-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.contact-icon-img[alt="Facebook"] {
    filter: brightness(3) contrast(2) saturate(1.5);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }
    
    .navbar .container {
        justify-content: space-between;
    }
    
    .lang-switcher {
        display: flex;
        gap: 0.4rem;
    }
    
    .lang-switch {
        width: 100px;
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem 0.8rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-text h3 {
        font-size: 1.2rem !important;
    }
    
    .feature-text p {
        font-size: 1rem;
    }
    
    /* Show bottom navigation on iPad */
    .bottom-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        display: none !important;
    }
    
    .hero .container {
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem 0.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .game-card p {
        padding-left: 0;
        font-size: 1rem;
    }
    
    .game-features {
        padding-left: 0;
        justify-content: center;
    }
    
    .game-features .feature {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .game-image {
        width: 100%;
    }
    
    .game-header {
        justify-content: center;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .step-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .register-image {
        width: 100%;
    }
    
    .step-images {
        margin-left: -3.5rem;
        width: calc(100% + 3.5rem);
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .download-item {
        padding: 0.8rem;
    }
    
    .download-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .download-item h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .download-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .club-id {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .club-number {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Show bottom navigation on mobile */
    .bottom-nav {
        display: block;
    }
    
    /* Add space between logo and text on mobile */
    .logo {
        gap: 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Add space between logo and text on mobile */
    .logo {
        gap: 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.6rem !important;
    }
    
    .guide-card h3,
    .game-card h3,
    .promo-card h3,
    .contact-card h3 {
        font-size: 1.6rem !important;
    }
    
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: block;
    }
    
    .guide-card,
    .game-card,
    .promo-card {
        padding: 1.5rem;
    }
    
    /* Adjust hero features for very small screens */
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-item {
        padding: 0.8rem 0.6rem;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
    
    .feature-text h3 {
        font-size: 1.2rem !important;
    }
    
    .feature-text p {
        font-size: 1rem;
    }
    
    .game-features .feature {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Adjust bottom nav for very small screens */
    .bottom-nav-text {
        font-size: 0.65rem;
    }
    
    .bottom-nav-link {
        min-width: 50px;
        padding: 6px 8px;
    }
} 