/* Dark168 Styles */

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 2rem 0 4rem;
    background-color: #0a0a0a;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #111111;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #222222;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.privacy-content h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.privacy-content h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333333;
    font-weight: 700;
}

.privacy-content h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 2rem 0 0.8rem;
    font-weight: 700;
}

.privacy-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #cccccc;
}

.privacy-content ul, .privacy-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #cccccc;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-content strong {
    color: #ffd700;
    font-weight: 700;
}

.privacy-content hr {
    border: none;
    border-top: 1px solid #333333;
    margin: 2.5rem 0;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 1.5rem 0 3rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.8rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.6rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

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

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

    .privacy-content h3 {
        font-size: 1.1rem;
    }

    .privacy-content ul, .privacy-content ol {
        margin-left: 1rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

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 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #111111;
    border-bottom: 1px solid #222222;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.logo img {
    margin-right: 0.75rem;
    border-radius: 6px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: #cccccc;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background-color: #111111;
    border-top: 1px solid #222222;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-mobile.active {
    max-height: 400px;
}

.nav-mobile-content {
    padding: 1rem 0;
}

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

.nav-mobile-link {
    display: block;
    text-decoration: none;
    color: #cccccc;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 1rem;
}

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

.cta-button-mobile {
    display: block;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    margin: 1rem 1.5rem 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button-mobile:hover {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

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

    .nav-mobile {
        display: block;
    }

    .container {
        padding: 0 1rem;
    }

    .header-content {
        padding: 0.75rem 0;
        min-height: 60px;
    }

    .logo a {
        font-size: 1.25rem;
    }

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

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

    .logo a {
        font-size: 1.1rem;
    }

    .logo img {
        width: 30px;
        height: 30px;
        margin-right: 0.5rem;
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-mobile.active .nav-mobile-content {
    animation: slideDown 0.3s ease;
}

/* Main Content Styles */

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.hero::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 100 100"><defs><radialGradient id="g"><stop offset="0%" stop-color="%23ffd700" stop-opacity="0.1"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23g)"/><circle cx="80" cy="40" r="1.5" fill="url(%23g)"/><circle cx="40" cy="80" r="1" fill="url(%23g)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    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.4);
    background: linear-gradient(135deg, #ff6b35, #ffd700);
}

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

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Slot Demo Section */
.slot-demo {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.demo-game {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slot-machine {
    background: linear-gradient(135deg, #222222, #333333);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #ffd700;
}

.slot-display {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: #000000;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #444444;
}

.reel {
    width: 80px;
    height: 120px;
    background: #111111;
    border: 2px solid #ffd700;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

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

@keyframes spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

.demo-controls {
    text-align: center;
}

.spin-btn {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

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

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

.demo-credits {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Wallet System Section */
.wallet-system {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.wallet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.wallet-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

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

.experience-section {
    text-align: center;
}

.experience-section h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.experience-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #222222, #333333);
    border-radius: 15px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.feature-number {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
}

/* Slot Games Section */
.slot-games {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.games-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.games-intro h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.games-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

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

.popular-games h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.popular-games p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
}

.popular-games-list h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.games-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #222222, #333333);
    border-radius: 10px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.game-item:hover {
    transform: translateX(10px);
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.game-rank {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.game-info strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.25rem;
}

.game-info p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.strategies-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.strategies-content h4 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.strategies-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #222222, #333333);
    border-radius: 10px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.strategy-number {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.strategy-content strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.strategy-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
}

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

/* Registration Section */
.registration {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.registration-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.registration-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.registration-content a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid #ffd700;
    transition: all 0.3s ease;
}

.registration-content a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

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

.promotions-section h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.promotions-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.monthly-promotions h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.promo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #222222, #333333);
    border-radius: 15px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

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

.promo-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.promo-content strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
}

/* Customer Service Section */
.customer-service {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

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

.account-management h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.account-management p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.special-services h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #222222, #333333);
    border-radius: 15px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.service-details strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.service-details p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
}

/* Safety Section */
.safety {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.safety-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.safety-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.safety-content a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid #ffd700;
    transition: all 0.3s ease;
}

.safety-content a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

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

.responsible-gaming h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.responsible-gaming p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.responsible-guidelines h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.guideline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #222222, #333333);
    border-radius: 15px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.guideline-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.guideline-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guideline-content strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.guideline-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.faq-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.faq-category h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffd700;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #222222, #333333);
    border-radius: 15px;
    border: 1px solid #444444;
}

.faq-item h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

.faq-item a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid #ffd700;
    transition: all 0.3s ease;
}

.faq-item a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.faq-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.faq-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}

.faq-cta a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid #ffd700;
    transition: all 0.3s ease;
}

.faq-cta a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .wallet-grid,
    .games-showcase,
    .strategies-section,
    .registration-grid,
    .service-grid,
    .safety-grid,
    .faq-footer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .slot-display {
        gap: 0.5rem;
    }

    .reel {
        width: 60px;
        height: 90px;
    }

    .symbol {
        height: 30px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .btn-primary, .btn-secondary {
        min-width: auto;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .slot-machine {
        padding: 1.5rem;
    }

    .slot-display {
        flex-direction: row;
        gap: 0.25rem;
    }

    .reel {
        width: 50px;
        height: 75px;
    }

    .symbol {
        height: 25px;
        font-size: 1.2rem;
    }

    .features-list,
    .games-grid,
    .promotions-grid,
    .services-list,
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slot-games,
    .wallet-system,
    .registration,
    .customer-service,
    .safety,
    .faq {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .slot-display {
        padding: 0.5rem;
    }

    .reel {
        width: 40px;
        height: 60px;
    }

    .symbol {
        height: 20px;
        font-size: 1rem;
    }

    .feature-item,
    .game-item,
    .strategy-item,
    .promo-item,
    .service-item,
    .guideline-item,
    .faq-item {
        padding: 1rem;
    }

    .spin-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #111111;
    border-top: 1px solid #222222;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #222222;
    padding: 0.75rem 0;
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px;
    font-family: 'Prompt', sans-serif;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #333333, #444444);
    color: #ffffff;
    border: 1px solid #555555;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #444444, #555555);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: #ffffff;
    border: 1px solid #0066cc;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #0052a3, #004080);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.sticky-btn-bonus {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    border: 1px solid #ffd700;
    font-weight: 700;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #ffed4e, #ff8247);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Responsive Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }

    .sticky-buttons-container {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.7rem 0.75rem;
        min-height: 42px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .sticky-buttons-container {
        gap: 0.4rem;
        padding: 0 0.5rem;
    }

    .sticky-btn {
        font-size: 0.75rem;
        padding: 0.6rem 0.5rem;
        min-height: 40px;
    }
}

/* Login Page Styles */
.login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    background: rgba(34, 34, 34, 0.8);
    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 4px rgba(255, 215, 0, 0.1);
    background: rgba(34, 34, 34, 1);
}

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.login-btn, .register-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
}

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

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ff6b35, #ffd700);
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-container {
        max-width: 90%;
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }

    .login-title {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .form-input {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .login-btn, .register-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 1.5rem 1rem;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .form-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .login-btn, .register-btn {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}

/* Register Page Styles */
.register-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.register-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.register-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.register-form {
    width: 100%;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.register-form .form-group {
    margin-bottom: 2rem;
}

.register-form .form-label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.register-form .form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(34, 34, 34, 0.8);
    border: 2px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
}

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

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

.register-form .form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn-register, .btn-login {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-family: 'Prompt', sans-serif;
}

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

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

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

.btn-login:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .register-container {
        padding: 2rem 0;
        min-height: calc(100vh - 70px);
    }

    .register-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .register-form {
        padding: 2rem;
    }

    .register-form .form-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .btn-register, .btn-login {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

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

    .register-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .register-form {
        padding: 1.5rem;
    }

    .register-form .form-input {
        padding: 0.75rem;
        font-size: 16px;
    }

    .btn-register, .btn-login {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Ensure footer doesn't get hidden by sticky buttons */
body {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 70px;
    }
}

/* Promotion Page Styles */

/* Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Section Styles */
.promotion-hero,
.free-credit-section,
.wallet-section,
.slot-section,
.vip-section,
.how-to-section,
.weekly-section,
.terms-section,
.contact-section,
.faq-section,
.summary-section {
    padding: 4rem 0;
}

.free-credit-section {
    background-color: #0f0f0f;
}

.wallet-section {
    background-color: #111111;
}

.slot-section {
    background-color: #0f0f0f;
}

.vip-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a1a 100%);
}

.how-to-section {
    background-color: #111111;
}

.weekly-section {
    background-color: #0f0f0f;
}

.terms-section {
    background-color: #111111;
}

.contact-section {
    background-color: #0f0f0f;
}

.faq-section {
    background-color: #111111;
}

.summary-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
}

.summary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.wallet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.slot-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Cards */
.content-card,
.promo-card,
.games-card,
.vip-benefits,
.terms-card,
.contact-info,
.team-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

/* Typography */
.content-card h3,
.promo-card h4,
.games-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.content-card p,
.promo-card p,
.games-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Lists */
.feature-list,
.numbered-list,
.slot-list,
.daily-list,
.terms-list,
.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li,
.slot-list li,
.daily-list li,
.terms-list li,
.service-list li {
    color: #cccccc;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before,
.slot-list li::before,
.daily-list li::before,
.terms-list li::before,
.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.numbered-list {
    counter-reset: item;
}

.numbered-list li {
    color: #cccccc;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    counter-increment: item;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.slot-list.numbered {
    counter-reset: slot;
}

.slot-list.numbered li {
    counter-increment: slot;
}

.slot-list.numbered li::before {
    content: counter(slot);
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-item,
.vip-item,
.game-feature,
.benefit-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #ffffff;
}

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

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

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

/* Steps */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    color: #cccccc;
    line-height: 1.6;
}

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

.main-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.step-header h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding: 0;
    counter-reset: step;
}

.step-list li {
    color: #cccccc;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    counter-increment: step;
}

.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    background: #ffd700;
    color: #000000;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Daily Promotions */
.daily-promos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.daily-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.daily-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.daily-card h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.faq-item h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

/* Contact Methods */
.contact-methods {
    margin-top: 2rem;
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #ffffff;
}

/* Buttons */
.promo-btn,
.vip-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.promo-btn:hover,
.vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.promo-btn.large {
    padding: 1.125rem 2.25rem;
    font-size: 1.1rem;
}

.vip-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: #ffffff;
}

.vip-btn:hover {
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

/* CTA Wrappers */
.cta-wrapper {
    margin-top: 2rem;
}

.cta-wrapper.centered {
    text-align: center;
}

/* Disclaimer */
.disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.disclaimer hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.disclaimer p {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .wallet-content,
    .slot-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .daily-promos {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .promotion-hero,
    .free-credit-section,
    .wallet-section,
    .slot-section,
    .vip-section,
    .how-to-section,
    .weekly-section,
    .terms-section,
    .contact-section,
    .faq-section,
    .summary-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .content-card,
    .promo-card,
    .games-card,
    .vip-benefits,
    .terms-card,
    .contact-info,
    .team-info,
    .main-step,
    .daily-card,
    .faq-item {
        padding: 1.5rem;
    }

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

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

    .daily-promos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .promotion-hero,
    .free-credit-section,
    .wallet-section,
    .slot-section,
    .vip-section,
    .how-to-section,
    .weekly-section,
    .terms-section,
    .contact-section,
    .faq-section,
    .summary-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-header h3 {
        font-size: 1.4rem;
    }

    .content-card,
    .promo-card,
    .games-card,
    .vip-benefits,
    .terms-card,
    .contact-info,
    .team-info,
    .main-step,
    .daily-card,
    .faq-item {
        padding: 1.25rem;
    }

    .hero-btn,
    .promo-btn,
    .vip-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-btn.large,
    .promo-btn.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .main-steps {
        gap: 1.5rem;
    }
}
