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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff6b35 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Modern Card Design */
.modern-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffb347, #ff6b35);
    opacity: 0.8;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

/* Header Styles */
.header {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.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;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: #ffd700;
    transform: translateY(-1px);
}

.logo img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.1);
}

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

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

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

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    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);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

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

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 1px solid #333;
    padding: 1rem 0;
}

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

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

.nav-mobile-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

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

.cta-button-mobile {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-mobile:hover {
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
    transform: translateY(-2px);
}

/* Main Content Spacing */
main {
    padding-top: 70px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }

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

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

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

    .nav-desktop {
        display: none;
    }

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

    main {
        padding-top: 60px;
    }
}

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

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

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

/* Animation for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Hover effects for better UX */
.nav-link:hover,
.nav-mobile-link:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* High contrast for better readability */
@media (prefers-contrast: high) {
    .header {
        background: #000000;
        border-bottom: 2px solid #ffffff;
    }

    .nav-link:hover,
    .nav-mobile-link:hover {
        background-color: #ffffff;
        color: #000000;
    }
}

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

/* Homepage Styles */

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

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

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

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

.cta-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000000;
    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);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

section:nth-child(even) {
    background: linear-gradient(135deg, #151515 0%, #1a1a1a 100%);
}

section h2 {
    font-size: 2.2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

section h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

section h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Grid Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.section-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.content-side {
    flex: 2;
}

.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Steps List */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.steps-list li {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.steps-list li:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

/* Mobile Section */
.mobile-section {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Container */
.demo-container {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.demo-container h3 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 2rem;
}

/* Slot Machine */
.slot-machine {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.symbol {
    font-size: 2.5rem;
    line-height: 1;
    transition: transform 0.3s 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;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.credits, .bet {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #ffd700;
    font-weight: 600;
}

.spin-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spin-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.result {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    min-height: 30px;
    padding: 0.5rem;
}

.result.win {
    color: #00ff00;
    animation: winGlow 0.5s ease-in-out;
}

@keyframes winGlow {
    0%, 100% { text-shadow: 0 0 5px currentColor; }
    50% { text-shadow: 0 0 20px currentColor; }
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

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

.category-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.category-card p {
    color: #cccccc;
    line-height: 1.6;
}

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

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

.feature-column li {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border-left: 3px solid #ffd700;
    color: #ffffff;
}

/* Steps Container */
.steps-container {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.step-content h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

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

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.benefit-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.benefit-card li {
    color: #cccccc;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

/* Banking Methods */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.method-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.method-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.method-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Policy List */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.policy-list li {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    color: #ffffff;
    position: relative;
    padding-left: 3rem;
}

.policy-list li::before {
    content: '●';
    position: absolute;
    left: 1rem;
    color: #ffd700;
    font-weight: 700;
}

/* Security Info */
.security-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 2rem 0;
}

.security-info h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.security-info p {
    color: #cccccc;
    line-height: 1.6;
}

/* Service Channels */
.channels-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.channel {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.channel:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.channel h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

/* Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.coverage-area {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.coverage-area h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.coverage-area li {
    color: #cccccc;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.coverage-area li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

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

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item h3 {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
}

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

/* CTA Sections */
.cta-section {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 3rem 0;
}

.cta-section a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-section a:hover {
    color: #ffb347;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    border-radius: 20px;
    margin: 3rem 0;
}

.final-cta a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Conclusion */
.conclusion {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    margin-top: 3rem;
}

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

/* Image Styling */
.slot-image, .banking-image {
    text-align: center;
    margin: 3rem 0;
}

.slot-image img, .banking-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.slot-image img:hover, .banking-image img:hover {
    transform: scale(1.02);
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

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

    .section-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

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

    .channels-flex {
        gap: 1.5rem;
    }

    .demo-container {
        padding: 2rem 1rem;
    }

    .slot-reels {
        gap: 0.5rem;
    }

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

    .symbol {
        font-size: 2rem;
    }

    .slot-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    section h2 {
        font-size: 1.8rem;
    }

    section h3 {
        font-size: 1.5rem;
    }
}

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

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

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

    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    section {
        padding: 2rem 0;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .demo-container {
        padding: 1.5rem 1rem;
    }

    .slot-reels {
        gap: 0.3rem;
    }

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

    .symbol {
        font-size: 1.8rem;
    }

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

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: 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;
    position: relative;
}

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

.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: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 1px solid #333;
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.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;
    min-width: 120px;
    padding: 0.875rem 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sticky-btn-login {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
}

.sticky-btn-login:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    border-color: #4a90e2;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #357abd 0%, #4a90e2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000000;
    border-color: #ffd700;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

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

/* Body padding to prevent sticky buttons overlap */
body {
    padding-bottom: 70px;
}

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .sticky-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        min-width: 100px;
        border-radius: 15px;
    }

    body {
        padding-bottom: 60px;
    }
}

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

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

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

    .sticky-btn {
        padding: 0.625rem 0.25rem;
        font-size: 0.75rem;
        min-width: 90px;
        border-radius: 12px;
    }

    body {
        padding-bottom: 55px;
    }
}

/* High contrast for better readability */
@media (prefers-contrast: high) {
    .footer {
        background: #000000;
        border-top: 2px solid #ffffff;
    }

    .footer-link:hover {
        background: #ffffff;
        color: #000000;
    }

    .sticky-buttons {
        background: #000000;
        border-top: 2px solid #ffffff;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .sticky-btn {
        transition: none;
    }

    .footer-link {
        transition: none;
    }
}

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

.login-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    border: 1px solid #333;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.login-title {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.form-label {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid #444;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    background: rgba(42, 42, 42, 0.95);
}

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

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

.btn-login {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.btn-register {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-register:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

    .login-container {
        max-width: 100%;
        margin: 1rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

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

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

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

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

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

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

    .form-input {
        padding: 0.75rem;
    }

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

/* Register Page Styles */
.register-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.register-title {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.form-label {
    color: #cccccc;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.register-btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

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

.register-btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #ffd700;
    border-radius: 12px;
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-btn-outline:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive Design for Register Page */
@media (max-width: 768px) {
    .register-page {
        padding: 6rem 0 2rem;
    }

    .register-container {
        max-width: 100%;
        margin: 1rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

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

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

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

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

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

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

    .form-input {
        padding: 0.75rem 1rem;
    }

    .register-btn-primary,
    .register-btn-outline {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 8rem 0 4rem;
    background: #0a0a0a;
    min-height: 100vh;
}

.privacy-content {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #333;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #cccccc;
}

.privacy-meta p {
    margin: 0;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid #444;
}

.privacy-body {
    line-height: 1.7;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #444;
    position: relative;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ffd700;
}

.privacy-subsection {
    margin: 1.5rem 0;
}

.privacy-subsection h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #e0e0e0;
}

.privacy-section li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

.privacy-section li::marker {
    color: #ffd700;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #444;
    margin: 1.5rem 0;
}

.contact-info h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

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

.contact-info li {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.service-hours {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.service-hours p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #333;
    text-align: center;
}

.privacy-footer hr {
    border: none;
    height: 1px;
    background: #444;
    margin-bottom: 1.5rem;
}

.privacy-footer p {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .privacy-content {
        margin: 0 1rem;
        padding: 2.5rem;
    }

    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-meta {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 6rem 0 2rem;
    }

    .privacy-content {
        margin: 0 1rem;
        padding: 2rem;
        border-radius: 16px;
    }

    .privacy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .privacy-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .privacy-meta p {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .privacy-section {
        margin-bottom: 2.5rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .privacy-subsection h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

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

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .contact-info li {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }
}

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

    .privacy-header h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .privacy-meta p {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }

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

    .privacy-subsection h3 {
        font-size: 1rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .privacy-section ul {
        margin-left: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info li {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .privacy-footer p {
        font-size: 0.8rem;
    }
}

/* Terms and Conditions Page Styles */
.terms-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: 70px;
}

.terms-article {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.terms-header {
    margin-bottom: 2rem;
    text-align: center;
}

.terms-header h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.terms-meta p {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 0;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.terms-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.terms-section p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.terms-section li strong {
    color: #ffd700;
}

.contact-info {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    margin-top: 0;
}

.contact-info ul {
    padding-left: 0;
    list-style: none;
}

.contact-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.acceptance-section {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.acceptance-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    margin-top: 0;
}

.acceptance-section p {
    margin-bottom: 1rem;
}

.acceptance-section em {
    color: #ccc;
    font-style: italic;
}

/* Terms and Conditions Responsive Design */
@media (max-width: 768px) {
    .terms-content {
        padding: 1rem 0.5rem;
        margin-top: 70px;
    }

    .terms-article {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .terms-meta p {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .terms-section {
        margin-bottom: 2rem;
    }

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

    .terms-section h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .terms-section ul {
        padding-left: 1.5rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info li {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .terms-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .acceptance-section {
        padding: 1.5rem;
    }

    .acceptance-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 0.5rem 0.25rem;
    }

    .terms-article {
        padding: 1rem;
    }

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

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

    .terms-section h3 {
        font-size: 1.1rem;
    }

    .terms-section p, .terms-section li {
        font-size: 0.9rem;
    }

    .acceptance-section {
        padding: 1rem;
    }

    .acceptance-section p {
        font-size: 0.8rem;
    }
}

/* Promotion Page Specific Styles */

/* Hero Section for Promotion Page */
.hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Latest Promotions Section */
.promotions-latest {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
}

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

.promotion-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffb347, #ff6b35);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.promotion-card:hover::before {
    transform: scaleX(1);
}

.promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.promotion-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.promotion-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Login System Section */
.login-promotions {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.content-area {
    position: relative;
}

.steps-container {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateX(8px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.step-content {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefits-list li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* Slot Promotions Section */
.slot-promotions {
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
}

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

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

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

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

.feature-item p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

.game-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

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

.game-item h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.game-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Best Value Promotions Section */
.best-value-promotions {
    background: rgba(255, 215, 0, 0.02);
}

.section-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-side {
    width: 100%;
}

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

.day-promotion {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.04) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.day-promotion:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 107, 53, 0.08) 100%);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.day-promotion h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.day-promotion p {
    color: #cccccc;
    font-size: 1rem;
}

.vip-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.vip-benefits li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.vip-benefits li::before {
    content: '★';
    position: absolute;
    left: 1rem;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.2rem;
}

.vip-benefits li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* Free Credit Section */
.free-credit {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.conditions-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.conditions-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.conditions-list li::before {
    content: '💎';
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.conditions-list li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* Free Spins Section */
.free-spins {
    background: rgba(255, 107, 53, 0.02);
}

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

.spin-type {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.spin-type:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.spin-type h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.spin-type p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

/* Jackpot Section */
.jackpot-promotions {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.jackpot-type {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

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

.jackpot-type h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.jackpot-type p {
    color: #cccccc;
    font-size: 0.9rem;
}

.jackpot-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.jackpot-features li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.jackpot-features li::before {
    content: '🎰';
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.jackpot-features li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* Mobile Promotions Section */
.mobile-promotions {
    background: rgba(255, 215, 0, 0.02);
}

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

.mobile-feature {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-feature:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.mobile-feature h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.mobile-feature p {
    color: #cccccc;
    font-size: 0.95rem;
}

.mobile-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.mobile-benefits li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.mobile-benefits li::before {
    content: '📱';
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.mobile-benefits li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* Banking Promotions Section */
.banking-promotions {
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

.deposit-promo {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.deposit-promo:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.deposit-promo h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.deposit-promo p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

.banking-method {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 107, 53, 0.04) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.banking-method:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 107, 53, 0.08) 100%);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.banking-method h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.banking-method p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Registration Promotions Section */
.registration-promotions {
    background: rgba(255, 107, 53, 0.02);
}

.registration-steps {
    margin: 2rem 0;
}

.reg-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.reg-step:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateX(8px);
}

.new-member-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.new-member-benefits li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.new-member-benefits li::before {
    content: '🎁';
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.new-member-benefits li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* Existing Member Promotions Section */
.existing-member-promotions {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.existing-promo {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.existing-promo:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.existing-promo h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.existing-promo p {
    color: #cccccc;
    font-size: 0.95rem;
}

.point-system {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.point-system li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.point-system li::before {
    content: '⭐';
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.point-system li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* Demo Play Section */
.demo-play {
    background: rgba(255, 215, 0, 0.02);
}

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

.demo-game {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.demo-game:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.demo-game h4 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.demo-game p {
    color: #cccccc;
    font-size: 0.95rem;
}

.demo-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.demo-benefits li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.demo-benefits li::before {
    content: '🎮';
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.demo-benefits li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* Contact Section */
.contact-promotions {
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.contact-method h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.contact-method p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '🔧';
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.service-list li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(5px);
}

/* FAQ Section */
.faq {
    background: rgba(255, 107, 53, 0.02);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.faq-item h3 {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #e0e0e0;
    line-height: 1.7;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffb347, #ff6b35);
}

.final-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.final-cta a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

/* External Link */
.external-link {
    text-align: center;
    margin: 2rem 0;
}

.external-link a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.external-link a:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Conclusion */
.conclusion {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    margin-top: 3rem;
}

.conclusion p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

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

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

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

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

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid,
    .games-grid,
    .weekly-promotions,
    .spin-types,
    .supported-games,
    .jackpot-types,
    .mobile-features,
    .deposit-promotions,
    .banking-methods,
    .existing-promotions,
    .demo-games {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    section h3 {
        font-size: 1.5rem;
    }
}

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

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

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

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

    .cta-primary {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 2rem 0;
    }

    section h2 {
        font-size: 1.6rem;
    }

    section h3 {
        font-size: 1.3rem;
    }

    .promotion-card,
    .feature-item,
    .game-item,
    .day-promotion,
    .spin-type,
    .jackpot-type,
    .mobile-feature,
    .deposit-promo,
    .banking-method,
    .existing-promo,
    .demo-game {
        padding: 1.2rem;
    }

    .step,
    .reg-step {
        padding: 1.2rem;
    }

    .contact-method {
        padding: 1.2rem;
    }

    .faq-item h3 {
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .faq-item p {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .conclusion {
        padding: 2rem;
    }

    .conclusion p {
        font-size: 1rem;
    }
}