/* Reset and Base Styles for Dark Mode */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #30363d;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f0f6fc;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: #ffd700;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

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

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

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

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

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

/* Active link styling */
.nav-link[href="/"] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    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);
    position: relative;
    overflow: hidden;
}

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

.cta-button:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

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

/* Mobile Menu Toggle Animation */
.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 Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #30363d;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
    max-width: 1280px;
    margin: 0 auto;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(48, 54, 61, 0.5);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #f0f6fc;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

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

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

/* Mobile CTA Button */
.mobile-cta-item {
    padding: 1rem 1.5rem;
}

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

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

.mobile-cta-button:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }
}

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

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

    .nav-container {
        height: 60px;
        padding: 0 1rem;
    }

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

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

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

    .logo {
        width: 30px;
        height: 30px;
    }

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

    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .mobile-cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .mobile-cta-item {
        padding: 1rem;
    }
}

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

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

/* Main Content Styles */
main {
    min-height: 100vh;
}

.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    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;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #8b949e;
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: #ffd700;
}

.subsection-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #ff6b35;
}

.section-image {
    margin: 3rem 0;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(13, 17, 23, 0) 100%);
    padding: 6rem 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
}

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

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button.primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

.hero-button.secondary {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.hero-button.secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

/* Platform Section */
.platform-intro,
.platform-details {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 2rem;
}

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

.feature-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f0f6fc;
}

.feature-text {
    color: #8b949e;
    line-height: 1.6;
}

.providers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.provider-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
    transform: translateX(8px);
}

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

.provider-content {
    flex: 1;
}

.provider-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.provider-desc {
    color: #8b949e;
    line-height: 1.6;
}

/* Slot Demo Section */
.demo-section {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, rgba(13, 17, 23, 0) 100%);
}

.slot-demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.slot-machine {
    background: rgba(48, 54, 61, 0.5);
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: #0d1117;
    border: 3px solid #30363d;
    border-radius: 12px;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    min-height: 200px;
}

.reel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 150px;
}

.symbol {
    font-size: 4rem;
    padding: 0.5rem;
    transition: transform 0.1s ease;
}

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

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

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.spin-button {
    flex: 1;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spin-button:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.credits-display {
    background: rgba(48, 54, 61, 0.5);
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
}

.credits-label {
    font-size: 0.875rem;
    color: #8b949e;
    display: block;
}

.credits-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
}

.result-message {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1rem;
    min-height: 2rem;
}

.result-message.win {
    color: #3fb950;
}

.result-message.lose {
    color: #f85149;
}

.demo-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.demo-features {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: #c9d1d9;
}

.demo-features i {
    color: #3fb950;
    font-size: 1.25rem;
}

.demo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
}

/* Access Section */
.access-content,
.access-note,
.access-closing {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 2rem;
}

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

.step-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f0f6fc;
    margin-bottom: 1rem;
}

.step-text {
    color: #8b949e;
    line-height: 1.6;
}

.access-list {
    list-style: none;
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.access-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #30363d;
    font-size: 1.125rem;
    color: #c9d1d9;
}

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

/* Games Section */
.games-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 2rem;
}

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

.game-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.game-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.game-desc {
    color: #8b949e;
    line-height: 1.6;
}

.other-games-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.other-game {
    display: flex;
    gap: 1.5rem;
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.other-game:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ff6b35;
}

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

.other-game-content h5 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.other-game-content p {
    color: #8b949e;
}

.games-note {
    font-size: 1.125rem;
    color: #c9d1d9;
    line-height: 1.8;
    margin: 2rem 0;
}

.technique-intro {
    font-size: 1.125rem;
    color: #c9d1d9;
    margin-bottom: 1.5rem;
}

.technique-list {
    list-style: none;
    counter-reset: technique-counter;
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.technique-list li {
    counter-increment: technique-counter;
    padding: 1rem 0;
    border-bottom: 1px solid #30363d;
    font-size: 1.125rem;
    color: #c9d1d9;
    position: relative;
    padding-left: 3rem;
}

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

.technique-list li::before {
    content: counter(technique-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    font-weight: 700;
    border-radius: 50%;
}

/* Bonus Section */
.bonus-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 2rem;
}

.promo-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.promo-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

.promo-card.highlighted {
    border: 2px solid #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #0d1117;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.promo-desc {
    font-size: 1.125rem;
    color: #c9d1d9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.promo-steps h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.promo-steps ul {
    list-style: none;
}

.promo-steps li {
    padding: 0.5rem 0;
    color: #c9d1d9;
    padding-left: 1.5rem;
    position: relative;
}

.promo-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

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

.promo-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.code-examples {
    margin-top: 1.5rem;
}

.code-item {
    background: rgba(13, 17, 23, 0.5);
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1rem;
    margin: 0.5rem 0;
    color: #c9d1d9;
}

.deposit-promos {
    list-style: none;
}

.deposit-promos li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #30363d;
    color: #c9d1d9;
}

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

.code-usage-intro {
    font-size: 1.125rem;
    color: #c9d1d9;
    margin-bottom: 2rem;
}

.code-steps {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    overflow-x: auto;
}

.code-step {
    flex: 1;
    min-width: 150px;
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.code-step:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

.code-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.code-step p {
    color: #c9d1d9;
    font-size: 1rem;
}

.warning-box {
    background: rgba(248, 81, 73, 0.1);
    border: 2px solid #f85149;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.warning-box i {
    color: #f85149;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box p {
    color: #c9d1d9;
    line-height: 1.6;
}

/* VIP Section */
.vip-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 2rem;
}

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

.tier-card {
    background: rgba(48, 54, 61, 0.3);
    border: 2px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.2);
}

.tier-card.bronze { border-color: #cd7f32; }
.tier-card.silver { border-color: #c0c0c0; }
.tier-card.gold { border-color: #ffd700; }
.tier-card.platinum { border-color: #e5e4e2; }
.tier-card.diamond { border-color: #b9f2ff; }

.tier-card.bronze:hover { border-color: #cd7f32; box-shadow: 0 12px 32px rgba(205, 127, 50, 0.3); }
.tier-card.silver:hover { border-color: #c0c0c0; box-shadow: 0 12px 32px rgba(192, 192, 192, 0.3); }
.tier-card.gold:hover { border-color: #ffd700; box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3); }
.tier-card.platinum:hover { border-color: #e5e4e2; box-shadow: 0 12px 32px rgba(229, 228, 226, 0.3); }
.tier-card.diamond:hover { border-color: #b9f2ff; box-shadow: 0 12px 32px rgba(185, 242, 255, 0.3); }

.tier-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.tier-subtitle {
    font-size: 0.875rem;
    color: #8b949e;
    margin-bottom: 1.5rem;
}

.tier-benefits {
    list-style: none;
    text-align: left;
}

.tier-benefits li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #30363d;
    color: #c9d1d9;
    font-size: 0.95rem;
}

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

.other-games-intro {
    font-size: 1.125rem;
    color: #c9d1d9;
    margin-bottom: 2rem;
}

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

.casino-game-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.casino-game-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ff6b35;
}

.casino-game-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.casino-game-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.casino-game-card ul {
    list-style: none;
}

.casino-game-card li {
    padding: 0.5rem 0;
    color: #c9d1d9;
    padding-left: 1.5rem;
    position: relative;
}

.casino-game-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3fb950;
    font-weight: 700;
}

.casino-note {
    font-size: 1.125rem;
    color: #c9d1d9;
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(48, 54, 61, 0.3);
    border-radius: 12px;
}

.security-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
}

.security-content p {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #c9d1d9;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin: 0.5rem 0;
}

/* CTA Section */
.cta-intro {
    font-size: 1.125rem;
    text-align: center;
    color: #c9d1d9;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.getting-started {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.start-step {
    display: flex;
    gap: 1.5rem;
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.start-step:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

.start-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.start-step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.start-step-content p {
    color: #c9d1d9;
    line-height: 1.6;
}

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

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

.why-item i {
    color: #3fb950;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-item p {
    color: #c9d1d9;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    margin: 3rem 0;
}

.final-cta-text {
    font-size: 1.125rem;
    color: #c9d1d9;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.final-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.final-button.primary {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.final-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

.contact-info {
    margin: 3rem 0;
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c9d1d9;
    font-size: 1.125rem;
}

.contact-info i {
    color: #ffd700;
}

.disclaimer {
    background: rgba(248, 81, 73, 0.05);
    border: 1px solid rgba(248, 81, 73, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.disclaimer p {
    color: #8b949e;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slot-demo-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-button {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .steps-grid,
    .games-grid,
    .promo-grid,
    .vip-tiers,
    .casino-games-grid {
        grid-template-columns: 1fr;
    }
    
    .slot-display {
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }
    
    .symbol {
        font-size: 3rem;
    }
    
    .code-steps {
        flex-direction: column;
    }
    
    .contact-info ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

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

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

    .subsection-title {
        font-size: 1.25rem;
    }

    .hero-button,
    .demo-cta,
    .final-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .symbol {
        font-size: 2.5rem;
    }

    .spin-button {
        font-size: 1rem;
    }
}

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

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #ffd700;
}

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #30363d;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.sticky-btn {
    flex: 1;
    max-width: 400px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-btn-login {
    background: rgba(48, 54, 61, 0.8);
    color: #f0f6fc;
    border: 1px solid #30363d;
}

.sticky-btn-login:hover {
    background: rgba(48, 54, 61, 1);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
}

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

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

.sticky-btn-credit {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid #ff6b35;
}

.sticky-btn-credit:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
}

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

/* Add padding to body to prevent sticky buttons from obscuring footer */
body {
    padding-bottom: 80px;
}

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

    .footer-link {
        font-size: 0.8125rem;
    }

    .site-footer {
        padding: 1.5rem 0;
        margin-top: 3rem;
    }
}

/* Sticky Buttons Responsive Design */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 0.625rem 0.75rem;
    }

    .sticky-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .sticky-btn {
        font-size: 0.75rem;
        padding: 0.625rem 0.75rem;
    }

    body {
        padding-bottom: 70px;
    }
}

/* Ensure sticky buttons don't obscure footer on scroll */
.site-footer {
    position: relative;
    z-index: 1;
}

/* Login Page Styles */
.login-section {
    min-height: calc(100vh - 70px - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(13, 17, 23, 0) 100%);
}

.login-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

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

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #f0f6fc;
    font-family: 'Prompt', sans-serif;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    background: rgba(13, 17, 23, 0.5);
    border: 1px solid #30363d;
    border-radius: 8px;
    color: #f0f6fc;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #8b949e;
}

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

.form-input:invalid:not(:placeholder-shown) {
    border-color: #f85149;
}

.error-message {
    font-size: 0.875rem;
    color: #f85149;
    min-height: 1.25rem;
    display: block;
}

.btn-login {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    margin-top: 0.5rem;
}

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

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

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

.btn-register {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-register:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

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

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

/* Login Page Responsive Design */
@media (max-width: 768px) {
    .login-section {
        padding: 3rem 1rem;
        min-height: calc(100vh - 60px - 70px);
    }

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

    .login-form {
        padding: 2rem 1.5rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

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

@media (max-width: 480px) {
    .login-section {
        padding: 2rem 0.75rem;
    }

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

    .login-form {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }

    .form-label {
        font-size: 0.9375rem;
    }

    .form-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

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

/* Accessibility Improvements for Login Page */
@media (prefers-reduced-motion: reduce) {
    .login-form,
    .form-input,
    .btn-login,
    .btn-register {
        transition-duration: 0.01ms !important;
    }
}

/* Promotion Page Styles */
.promo-hero-section {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(13, 17, 23, 0) 100%);
    padding: 5rem 0;
}

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

.promo-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promo-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
}

.promo-hero-cta {
    margin-top: 1rem;
}

.promo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.promo-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

.promo-code-section,
.credit-free-section,
.new-member-section,
.weekly-code-section,
.diamond-code-section,
.monthly-promo-section,
.summary-section,
.contact-info-section {
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 3rem;
}

.promo-subsection {
    margin: 3rem 0;
}

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

.code-type-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.code-type-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.code-type-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.code-type-card p {
    color: #c9d1d9;
    line-height: 1.6;
}

.promo-cta-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.promo-cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #0d1117;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.promo-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

.promo-cta-link.primary {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step-flow-item {
    display: flex;
    gap: 2rem;
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-flow-item:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

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

.step-flow-content {
    flex: 1;
}

.step-flow-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.step-flow-content p {
    color: #c9d1d9;
    line-height: 1.6;
}

.terms-box {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.terms-box p {
    color: #c9d1d9;
    line-height: 1.8;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

.highlight-item p {
    color: #c9d1d9;
    line-height: 1.6;
}

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

.code-table-item {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.code-table-item:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ff6b35;
}

.code-table-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.code-table-item p {
    color: #c9d1d9;
    line-height: 1.6;
}

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

.package-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
    transform: translateY(-4px);
}

.package-card.highlighted {
    border: 2px solid #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #0d1117;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.package-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.package-card p {
    color: #c9d1d9;
    line-height: 1.6;
}

.terms-content {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.terms-content p {
    color: #c9d1d9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

.channels-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.channel-item {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.channel-item:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

.channel-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.channel-item p {
    color: #c9d1d9;
    line-height: 1.6;
}

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

.tip-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tip-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ff6b35;
}

.tip-card p {
    color: #c9d1d9;
    line-height: 1.6;
}

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

.feature-column {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-column:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

.feature-column p {
    color: #c9d1d9;
    line-height: 1.6;
}

.how-to-get {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.how-to-get p {
    color: #c9d1d9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.how-to-get p:last-child {
    margin-bottom: 0;
}

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

.monthly-promo-card {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.monthly-promo-card:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ffd700;
}

.monthly-promo-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.monthly-promo-card p {
    color: #c9d1d9;
    line-height: 1.6;
}

.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.calendar-item {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.calendar-item:hover {
    background: rgba(48, 54, 61, 0.5);
    border-color: #ff6b35;
}

.calendar-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.calendar-item p {
    color: #c9d1d9;
    line-height: 1.6;
}

.summary-content {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2.5rem;
}

.summary-content p {
    color: #c9d1d9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.summary-content p:last-of-type {
    margin-bottom: 2rem;
}

.contact-info-content {
    background: rgba(48, 54, 61, 0.3);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-info-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
}

.contact-info-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 2rem 0 1rem;
}

.contact-details,
.social-links,
.service-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item,
.social-item,
.service-item {
    color: #c9d1d9;
    font-size: 1.125rem;
    line-height: 1.6;
}

.disclaimer-text {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #30363d;
}

.disclaimer-text p {
    color: #8b949e;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.disclaimer-text a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.disclaimer-text a:hover {
    color: #ff6b35;
}

/* Promotion Page Responsive Design */
@media (max-width: 768px) {
    .promo-hero-section {
        padding: 3rem 0;
    }

    .promo-hero-title {
        font-size: 1.75rem;
    }

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

    .promo-code-section,
    .credit-free-section,
    .new-member-section,
    .weekly-code-section,
    .diamond-code-section,
    .monthly-promo-section,
    .summary-section,
    .contact-info-section {
        padding: 3rem 0;
    }

    .code-types-grid,
    .code-table,
    .package-grid,
    .tips-grid,
    .features-columns,
    .monthly-promos {
        grid-template-columns: 1fr;
    }

    .step-flow-item {
        flex-direction: column;
        gap: 1rem;
    }

    .step-flow-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-details,
    .social-links,
    .service-info {
        gap: 0.75rem;
    }
}

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

    .promo-cta-button,
    .promo-cta-link {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .promo-cta-link.primary {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }

    .code-type-card,
    .code-table-item,
    .package-card,
    .tip-card,
    .feature-column,
    .monthly-promo-card {
        padding: 1.5rem;
    }

    .summary-content,
    .contact-info-content {
        padding: 1.5rem;
    }
}

/* Privacy Policy, Terms & Conditions, Responsible Gambling Pages */
.content-container article {
    max-width: 100%;
    padding: 4rem 0;
}

.content-container article h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.content-container article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: #ffd700;
}

.content-container article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #ff6b35;
}

.content-container article p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 1.5rem;
}

.content-container article ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style: disc;
}

.content-container article li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin: 0.75rem 0;
}

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

.content-container article hr {
    border: none;
    border-top: 1px solid #30363d;
    margin: 3rem 0;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .content-container article {
        padding: 3rem 0;
    }

    .content-container article h1 {
        font-size: 1.75rem;
    }

    .content-container article h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .content-container article h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }

    .content-container article p,
    .content-container article li {
        font-size: 1rem;
    }

    .content-container article ul {
        padding-left: 1.5rem;
    }
}

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

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

    .content-container article h2 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }

    .content-container article h3 {
        font-size: 1.125rem;
    }

    .content-container article p,
    .content-container article li {
        font-size: 0.9375rem;
    }
}
