/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
}

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

/* ===== HEADER STYLES ===== */
.site-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid #333333;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* ===== LOGO STYLES ===== */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo img {
    border-radius: 8px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

/* ===== HOMEPAGE STYLES ===== */

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ffd700;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ffd700;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="500" fill="url(%23grad1)"/></svg>') center/cover;
    opacity: 0.3;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 5px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #0f0f0f;
    text-align: center;
}

.demo-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffd700;
}

.slot-machine {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slot-screen {
    background: #000000;
    border: 5px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

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

.reel {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 10px;
    width: 100px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.symbol {
    font-size: 2.5rem;
    line-height: 1;
    transition: transform 0.1s ease;
}

.reel.spinning .symbol {
    animation: spinSymbol 0.1s linear infinite;
}

@keyframes spinSymbol {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.credits-display {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.credits-display span {
    color: #ffd700;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.bet-btn, .spin-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-btn {
    background: #333333;
    color: #ffffff;
    border: 2px solid #ffd700;
}

.bet-btn:hover {
    background: #ffd700;
    color: #000000;
}

.spin-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    font-size: 1.1rem;
    padding: 15px 40px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.demo-notice {
    color: #888888;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ffd700;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 25px;
}

.features-list h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.features-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.features-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Login Guide Section */
.login-guide-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.login-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
}

.login-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.login-steps ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.login-steps li {
    margin-bottom: 15px;
    color: #cccccc;
    line-height: 1.6;
}

.access-channels h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.channel-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.channel-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.channel-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.channel-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.channel-item p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
}

.login-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.games-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: #ffd700;
}

.games-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.category-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.category-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.category-card li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
    line-height: 1.5;
}

.category-card li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

.games-image {
    text-align: center;
    margin-top: 40px;
}

.games-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Premium Section */
.premium-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.premium-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.premium-image {
    flex: 0 0 45%;
}

.premium-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.premium-content {
    flex: 1;
}

.premium-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ffd700;
}

.premium-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
}

.provider-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.provider-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: border-color 0.3s ease;
}

.provider-card:hover {
    border-color: #ffd700;
}

.provider-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.provider-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
    line-height: 1.5;
}

.provider-card li::before {
    content: '💎';
    position: absolute;
    left: 0;
}

/* Strategy Section */
.strategy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.strategy-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: #ffd700;
}

.strategy-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 50px;
}

.strategy-flex {
    display: flex;
    gap: 60px;
    align-items: start;
}

.strategy-content {
    flex: 1;
}

.strategy-item h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.strategy-item h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #ffd700;
}

.strategy-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.strategy-item li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.strategy-item li::before {
    content: '📈';
    position: absolute;
    left: 0;
}

.bonus-tips {
    margin-top: 40px;
}

.bonus-tips h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: border-color 0.3s ease;
}

.tip-item:hover {
    border-color: #ffd700;
}

.tip-number {
    background: #ffd700;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.tip-content p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.strategy-image {
    flex: 0 0 35%;
}

.strategy-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Wallet Section */
.wallet-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.wallet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wallet-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wallet-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ffd700;
}

.wallet-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
}

.banks-section h3, .ewallet-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.bank-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.bank-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #333333;
    color: #cccccc;
    transition: border-color 0.3s ease;
}

.bank-item:hover {
    border-color: #ffd700;
}

.ewallet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ewallet-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.ewallet-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.ewallet-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.ewallet-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.ewallet-item p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.wallet-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.wallet-benefits ul {
    list-style: none;
    padding: 0;
}

.wallet-benefits li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.wallet-benefits li::before {
    content: '💰';
    position: absolute;
    left: 0;
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.promotions-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: #ffd700;
}

.promotions-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 50px;
}

.promotions-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.promo-category h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.promo-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.promo-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.promo-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.promo-card li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
    line-height: 1.5;
}

.promo-card li::before {
    content: '🎁';
    position: absolute;
    left: 0;
}

.daily-promos h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

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

.daily-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.daily-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.daily-number {
    background: #ffd700;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.daily-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.daily-content p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.vip-program h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vip-tier {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-tier:hover {
    transform: translateY(-10px);
}

.vip-tier.bronze:hover {
    border-color: #cd7f32;
    box-shadow: 0 15px 35px rgba(205, 127, 50, 0.1);
}

.vip-tier.silver:hover {
    border-color: #c0c0c0;
    box-shadow: 0 15px 35px rgba(192, 192, 192, 0.1);
}

.vip-tier.gold:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
}

.tier-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bronze .tier-header i {
    color: #cd7f32;
}

.silver .tier-header i {
    color: #c0c0c0;
}

.gold .tier-header i {
    color: #ffd700;
}

.tier-header h4 {
    font-size: 1.3rem;
    color: #ffffff;
}

.vip-tier ul {
    list-style: none;
    padding: 0;
}

.vip-tier li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #cccccc;
    line-height: 1.5;
}

.bronze li::before {
    content: '🥉';
    position: absolute;
    left: 0;
}

.silver li::before {
    content: '🥈';
    position: absolute;
    left: 0;
}

.gold li::before {
    content: '🥇';
    position: absolute;
    left: 0;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.security-flex {
    display: flex;
    gap: 60px;
    align-items: start;
}

.security-content {
    flex: 1;
}

.security-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ffd700;
}

.security-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
}

.security-features h3, .certifications h3, .responsible-gaming h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.security-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: border-color 0.3s ease;
}

.security-item:hover {
    border-color: #ffd700;
}

.security-item i {
    font-size: 2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.security-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.security-info p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: border-color 0.3s ease;
}

.cert-item:hover {
    border-color: #ffd700;
}

.cert-item i {
    font-size: 2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.cert-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.cert-item p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

.control-tools h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.control-tools ul {
    list-style: none;
    padding: 0;
}

.control-tools li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #cccccc;
    line-height: 1.5;
}

.control-tools li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
}

.security-image {
    flex: 0 0 35%;
}

.security-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffd700;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #ffd700;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

/* Conclusion Section */
.conclusion-section {
    padding: 80px 0;
    background: #0f0f0f;
    text-align: center;
}

.conclusion-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffd700;
}

.conclusion-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 30px;
}

.cta-section {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 40px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 800px;
    border: 1px solid #333333;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.btn-primary-large, .btn-secondary-large {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary-large {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary-large {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary-large:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

.conclusion-image {
    margin-top: 40px;
}

.conclusion-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Demo Section Mobile */
    .reels {
        gap: 10px;
    }

    .reel {
        width: 80px;
        height: 100px;
    }

    .symbol {
        font-size: 2rem;
    }

    .control-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Grid Layouts Mobile */
    .about-grid,
    .login-content,
    .wallet-grid,
    .premium-flex,
    .strategy-flex,
    .security-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .channels-grid,
    .ewallet-grid,
    .security-items,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .promo-cards,
    .daily-grid,
    .vip-tiers {
        grid-template-columns: 1fr;
    }

    /* Text Sizes Mobile */
    .demo-section h2,
    .games-section h2,
    .promotions-section h2,
    .faq-section h2,
    .conclusion-content h2 {
        font-size: 2rem;
    }

    .about-content h2,
    .login-text h2,
    .premium-content h2,
    .wallet-content h2,
    .security-content h2 {
        font-size: 1.8rem;
    }

    /* CTA Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.nav-link:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #ffd700;
    border-radius: 50%;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #ff8e53, #ff6b35);
}

.cta-button:active {
    transform: translateY(0);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .line1 {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .line2 {
    opacity: 0;
}

.mobile-menu-toggle.active .line3 {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid #333333;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
}

.mobile-nav.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.mobile-nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.mobile-cta-button {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    border: 2px solid transparent;
    margin-top: 10px;
}

.mobile-cta-button:hover {
    background: linear-gradient(45deg, #ff8e53, #ff6b35);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
        padding: 8px 12px;
    }

    .cta-button {
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-text {
        font-size: 20px;
    }

    .header-content {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 18px;
    }

    .mobile-nav-content {
        padding: 15px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 12px 16px;
    }

    .mobile-cta-button {
        font-size: 16px;
        padding: 15px 20px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-button:focus,
.mobile-nav-link:focus,
.mobile-cta-button:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .site-header {
        border-bottom: 2px solid #ffffff;
    }

    .nav-link,
    .mobile-nav-link {
        border: 1px solid #ffffff;
    }
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid #333333;
    padding: 40px 0;
    margin-top: 60px;
    margin-bottom: 120px; /* Space for sticky buttons */
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-link:hover {
    color: #ffd700;
    border-color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.footer-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* ===== STICKY BUTTONS STYLES ===== */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 2px solid #333333;
    padding: 15px 20px;
    z-index: 1001;
    backdrop-filter: blur(10px);
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    gap: 15px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    min-height: 48px;
}

.sticky-btn-login {
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    border-color: #666666;
}

.sticky-btn-login:hover {
    background: linear-gradient(45deg, #555555, #333333);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.sticky-btn-register {
    background: linear-gradient(45deg, #0066cc, #0080ff);
    color: #ffffff;
    border-color: #0080ff;
}

.sticky-btn-register:hover {
    background: linear-gradient(45deg, #0080ff, #0066cc);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.sticky-btn-credit {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    border-color: #ffd700;
}

.sticky-btn-credit:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.sticky-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.sticky-btn:active {
    transform: translateY(0);
}

/* ===== RESPONSIVE STYLES FOR FOOTER AND STICKY BUTTONS ===== */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-link {
        font-size: 13px;
        padding: 10px 15px;
    }

    .site-footer {
        padding: 30px 0;
        margin-bottom: 100px; /* Adjust for mobile sticky buttons */
    }

    .sticky-buttons {
        padding: 12px 15px;
        gap: 10px;
    }

    .sticky-btn {
        padding: 10px 15px;
        font-size: 13px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 15px;
    }

    .footer-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    .sticky-buttons {
        padding: 10px 12px;
        gap: 8px;
    }

    .sticky-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 40px;
    }
}

/* ===== LOGIN PAGE STYLES ===== */
.login-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #ffd700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    margin-bottom: 0;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: 'Sarabun', sans-serif;
    background: #2a2a2a;
    border: 2px solid #333333;
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: #333333;
}

.form-input::placeholder {
    color: #888888;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 56px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-outline:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.btn-outline:active {
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN FOR LOGIN PAGE ===== */
@media (max-width: 768px) {
    .login-section {
        padding: 20px 0;
        min-height: calc(100vh - 120px);
    }

    .login-container {
        max-width: 100%;
        margin: 0 20px;
        padding: 30px 20px;
        gap: 30px;
    }

    .login-title {
        font-size: 24px;
    }

    .form-input {
        padding: 14px 16px;
        font-size: 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 52px;
    }
}

@media (max-width: 480px) {
    .login-container {
        margin: 0 10px;
        padding: 25px 15px;
    }

    .login-title {
        font-size: 22px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 48px;
    }
}

/* ===== REGISTER PAGE STYLES ===== */
.register-section {
    padding: 80px 0;
    min-height: calc(100vh - 140px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ffd700;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ffd700;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="500" fill="url(%23grad1)"/></svg>') center/cover;
    opacity: 0.3;
}

.register-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(42, 42, 42, 0.8);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.register-content h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite;
    line-height: 1.3;
}

.register-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input {
    padding: 16px 18px;
    border: 2px solid #333333;
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder {
    color: #888888;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.form-buttons .btn-primary {
    width: 100%;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.form-buttons .btn-secondary {
    width: 100%;
    padding: 16px 30px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.form-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN FOR REGISTER PAGE ===== */
@media (max-width: 768px) {
    .register-section {
        padding: 40px 0;
        min-height: calc(100vh - 120px);
    }

    .register-content {
        max-width: 100%;
        margin: 0 20px;
        padding: 40px 30px;
        gap: 30px;
    }

    .register-content h1 {
        font-size: 1.5rem;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 16px;
    }

    .form-buttons .btn-primary,
    .form-buttons .btn-secondary {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 52px;
    }
}

@media (max-width: 480px) {
    .register-content {
        margin: 0 10px;
        padding: 30px 20px;
    }

    .register-content h1 {
        font-size: 1.3rem;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .form-buttons .btn-primary,
    .form-buttons .btn-secondary {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 48px;
    }
}

/* ===== PROMOTION PAGE STYLES ===== */

/* Hero Section */
.promotion-hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.promotion-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ffd700;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ffd700;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="500" fill="url(%23grad1)"/></svg>') center/cover;
    opacity: 0.3;
}

.promotion-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promotion-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite;
}

.promotion-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-banner {
    margin-top: 30px;
}

.mega-cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mega-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* Main Content Grid */
.promotion-content-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 0;
}

.promotion-section {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

.promotion-section.full-width {
    grid-column: 1 / -1;
}

.promotion-section h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.promotion-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.promotion-section h4 {
    font-size: 1.25rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.promotion-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Promotion Highlights */
.promotion-highlights {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Promotion Boxes */
.promotion-highlight-box,
.login-cta-box,
.slot-recommendation-box,
.special-code-box,
.vip-steps-box,
.referral-program-box,
.tips-box,
.mega-deal-box {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
    border: 1px solid #333333;
}

.promotion-highlight-box h3,
.login-cta-box h4,
.slot-recommendation-box h4,
.special-code-box h4,
.vip-steps-box h4,
.referral-program-box h4,
.tips-box h4,
.mega-deal-box h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.steps-list,
.channels-list {
    list-style: none;
    padding: 0;
}

.steps-list li,
.channels-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-list li:last-child,
.channels-list li:last-child {
    border-bottom: none;
}

/* Slot Promotions Grid */
.slot-promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.daily-promotions,
.weekly-promotions,
.monthly-promotions {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.slot-games-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.slot-games-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slot-games-list li:last-child {
    border-bottom: none;
}

/* Codes Section */
.codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.code-item {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-weight: 600;
}

.how-to-use ol {
    text-align: left;
    padding-left: 20px;
}

.how-to-use li {
    padding: 5px 0;
    color: #cccccc;
}

.special-code {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* VIP Codes Grid */
.vip-codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.diamond-level,
.platinum-level,
.gold-level {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.diamond-level {
    border-color: #ff69b4;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 105, 180, 0.05));
}

.platinum-level {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.gold-level {
    border-color: #ffd700;
}

.vip-requirements ol {
    text-align: left;
    padding-left: 20px;
}

.vip-requirements li {
    padding: 5px 0;
    color: #cccccc;
}

/* Daily Schedule */
.daily-schedule {
    margin: 30px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.day-schedule {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #333333;
}

.day-schedule.weekend {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.day-schedule h4 {
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-slot {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tracking-info-box {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
    border: 1px solid #333333;
}

.tracking-channels {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.tracking-channels li {
    padding: 5px 0;
    color: #cccccc;
}

/* Monthly Codes */
.monthly-codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.monthly-code-item {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-weight: 600;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.week-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.week-item h5 {
    color: #ffd700;
    margin-bottom: 10px;
    text-align: center;
}

.week-item ul {
    list-style: none;
    padding: 0;
}

.week-item li {
    padding: 5px 0;
    color: #cccccc;
}

/* Terms and Conditions */
.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.general-terms,
.special-terms {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.general-terms ul,
.special-terms ul {
    list-style: none;
    padding: 0;
}

.general-terms li,
.special-terms li {
    padding: 5px 0;
    color: #cccccc;
}

.mega-deal {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.mega-deal h5 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Newbie Package */
.package-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.package-step {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #333333;
}

.package-step h4 {
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.package-step ul {
    list-style: none;
    padding: 0;
}

.package-step li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

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

.newbie-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.benefits-30days,
.newbie-tips {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newbie-tips ol {
    text-align: left;
    padding-left: 20px;
}

.newbie-tips li {
    padding: 5px 0;
    color: #cccccc;
}

/* Guide Steps */
.steps-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.step-detail {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #333333;
}

.step-detail h4 {
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.step-detail ul {
    list-style: none;
    padding: 0;
}

.step-detail li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

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

/* FAQ Section */
.faq-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-category {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333333;
}

.faq-category h3 {
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.faq-contact-box {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
    border: 1px solid #333333;
}

.faq-contact-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.faq-contact-box li {
    padding: 5px 0;
    color: #cccccc;
}

/* Summary Section */
.summary-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.summary-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

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

/* Final CTA Section */
.final-mega-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid #ffd700;
    margin: 40px 0;
}

.mega-promotion-box h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.mega-promotion-box h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mega-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mega-benefits li {
    padding: 8px 0;
    color: #cccccc;
    font-size: 1.1rem;
}

.urgency {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 20px 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h4 {
    color: #ffd700;
    margin-bottom: 10px;
}

.contact-info p {
    color: #cccccc;
    margin: 5px 0;
}

/* Disclaimer Section */
.disclaimer-section {
    margin: 40px 0;
    padding: 20px;
    text-align: center;
}

.disclaimer-divider {
    border: none;
    height: 1px;
    background: #333333;
    margin: 20px 0;
}

.disclaimer-content p {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 10px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promotion-hero-content h1 {
        font-size: 1.8rem;
    }

    .promotion-hero-content p {
        font-size: 1rem;
    }

    .promotion-section {
        padding: 25px 20px;
    }

    .promotion-section h2 {
        font-size: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slot-promotions-grid {
        grid-template-columns: 1fr;
    }

    .codes-grid {
        grid-template-columns: 1fr;
    }

    .vip-codes-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .monthly-codes-grid {
        grid-template-columns: 1fr;
    }

    .weeks-grid {
        grid-template-columns: 1fr;
    }

    .terms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-steps {
        grid-template-columns: 1fr;
    }

    .newbie-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-detailed {
        grid-template-columns: 1fr;
    }

    .mega-benefits {
        text-align: center;
    }

    .mega-cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .promotion-hero-content h1 {
        font-size: 1.5rem;
    }

    .promotion-section {
        padding: 20px 15px;
    }

    .mega-cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */
.privacy-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333333;
}

.content-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShine 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.content-header p {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 8px 0;
}

.content-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.content-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffed4e;
    margin: 25px 0 15px 0;
    position: relative;
    padding-left: 20px;
}

.content-section h3::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 1.2rem;
}

.content-section p {
    color: #e5e5e5;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content-section ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.content-section li {
    color: #e5e5e5;
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    font-size: 1rem;
}

.content-section li::before {
    content: '▶';
    position: absolute;
    left: 10px;
    color: #ffd700;
    font-size: 0.8rem;
    top: 2px;
}

.content-section ol {
    list-style: none;
    counter-reset: item;
    margin: 20px 0;
    padding-left: 0;
}

.content-section ol li {
    counter-increment: item;
    padding-left: 40px;
}

.content-section ol li::before {
    content: counter(item);
    position: absolute;
    left: 10px;
    top: 0;
    background: #ffd700;
    color: #000000;
    font-weight: 700;
    font-size: 0.9rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section strong {
    color: #ffd700;
    font-weight: 600;
}

.content-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #333333;
}

.content-footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info p {
    color: #e5e5e5;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
}

.contact-info ul {
    list-style: none;
    text-align: center;
    margin: 20px 0;
}

.contact-info li {
    color: #e5e5e5;
    margin: 10px 0;
    font-size: 1rem;
}

.contact-info li::before {
    content: none;
}

/* ===== RESPONSIVE DESIGN FOR PRIVACY POLICY ===== */
@media (max-width: 768px) {
    .privacy-content {
        padding: 25px;
        margin: 20px 0;
        border-radius: 15px;
    }

    .content-header h1 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 20px;
        margin: 15px 0;
    }

    .content-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .content-header h1 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .content-section h2 {
        font-size: 1.3rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }

    .content-section p,
    .content-section li {
        font-size: 0.95rem;
    }
}