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

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

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

/* Main Container for Terms and Conditions */
main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    padding: 40px 0;
}

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

/* Terms and Conditions Content Styles */
.terms-conditions-content {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    border: 1px solid #333;
}

.terms-conditions-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.terms-conditions-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #00d4ff;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 10px;
}

.terms-conditions-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #ffffff;
}

.terms-conditions-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #ffffff;
}

.terms-conditions-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #e0e0e0;
}

.terms-conditions-content p strong {
    color: #00d4ff;
    font-weight: 600;
}

.terms-conditions-content ul,
.terms-conditions-content ol {
    margin: 15px 0 15px 30px;
    color: #e0e0e0;
}

.terms-conditions-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.terms-conditions-content li strong {
    color: #00d4ff;
    font-weight: 600;
}

.terms-conditions-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    margin: 30px 0;
}

.terms-conditions-content .confirmation-list {
    list-style: none;
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
}

.terms-conditions-content .confirmation-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Responsive Design for Terms and Conditions */
@media (max-width: 768px) {
    .terms-conditions-content {
        padding: 30px 15px;
        margin: 20px 10px;
    }

    .terms-conditions-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .terms-conditions-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px 0;
    }

    .terms-conditions-content h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }

    .terms-conditions-content h4 {
        font-size: 1.1rem;
        margin: 15px 0 8px 0;
    }

    .terms-conditions-content ul,
    .terms-conditions-content ol {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 20px 0;
    }

    .terms-conditions-content {
        padding: 20px 10px;
        margin: 10px 5px;
    }

    .terms-conditions-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

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

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

    .terms-conditions-content ul,
    .terms-conditions-content ol {
        margin-left: 15px;
    }

    .terms-conditions-content .confirmation-list {
        padding: 15px;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    z-index: 1000;
}

.navbar {
    width: 100%;
}

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

/* Logo Styles */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}

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

.nav-item {
    position: relative;
}

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

.nav-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

/* CTA Button Styles */
.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 24px !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid #333;
}

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

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ff6b35;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 25px;
    text-align: center;
    margin-top: 10px;
    padding: 15px !important;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35) !important;
}

/* Main Content Adjustment */
main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

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

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

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

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

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

    main {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }
}

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

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

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

/* Container for content */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b35" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23f7931e" opacity="0.4"/><circle cx="40" cy="80" r="1" fill="%23ff6b35" opacity="0.2"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

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

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

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

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

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

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

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

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

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

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

.slot-demo .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.slot-demo .section-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

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

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

.slot-screen {
    background: #000000;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 3px solid #ff6b35;
    box-shadow: inset 0 0 20px rgba(255, 107, 53, 0.2);
}

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

.reel {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    width: 80px;
    height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reel.spinning {
    animation: spin 1s ease-in-out;
}

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

.symbol {
    font-size: 3rem;
    padding: 20px 0;
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

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

.bet-display, .win-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credit-amount, .win-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    background: #1a1a1a;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    min-width: 80px;
    text-align: center;
}

.spin-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: #0a0a0a;
}

.features-grid {
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: #cccccc;
    line-height: 1.6;
}

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

.game-providers {
    text-align: center;
    margin: 3rem 0;
}

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

.features-note {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.6;
}

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

.security-content {
    max-width: 1000px;
    margin: 0 auto;
}

.security-text h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.security-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.security-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    min-width: 30px;
}

.security-item span {
    color: #cccccc;
    line-height: 1.5;
}

/* Tools and Services Section */
.tools-services {
    padding: 80px 0;
    background: #0a0a0a;
}

.tools-grid {
    margin-bottom: 3rem;
}

.tool-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tool-header h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.tool-header p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tool-features {
    display: grid;
    gap: 2rem;
}

.tool-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.feature-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: #cccccc;
    line-height: 1.5;
}

.tools-image {
    text-align: center;
    margin-top: 3rem;
}

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

/* Customer Support Section */
.customer-support {
    padding: 80px 0;
    background: #111111;
}

.support-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.support-content h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-content > p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-info h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.support-note {
    color: #cccccc;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

/* Financial System Section */
.financial-system {
    padding: 80px 0;
    background: #0a0a0a;
}

.financial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.payment-methods h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.payment-methods > p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.payment-category {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
}

.payment-category h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.payment-category > p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.bank-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.bank-list li {
    color: #cccccc;
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

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

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

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

.financial-benefits {
    margin-bottom: 4rem;
}

.financial-benefits h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
}

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

.benefit-item p {
    color: #cccccc;
    margin: 0;
}

.financial-note {
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.financial-security h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-align: center;
}

.financial-security > p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Promotions Section */
.promotions {
    padding: 80px 0;
    background: #111111;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.promo-section h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.promo-section > p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.new-member-promos {
    display: grid;
    gap: 1.5rem;
}

.promo-item {
    display: flex;
    gap: 1rem;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 1px solid #333;
}

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

.promo-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.promo-content p {
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.weekly-promos h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.weekly-promos > p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.weekly-grid {
    display: grid;
    gap: 1.5rem;
}

.weekly-item {
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 1px solid #333;
}

.weekly-item h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.weekly-item p {
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.promo-image {
    text-align: center;
    margin-bottom: 4rem;
}

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

.bonus-usage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.bonus-steps h3, .bonus-terms h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.bonus-steps > p, .bonus-terms > p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 1px solid #333;
}

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

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.terms-grid {
    display: grid;
    gap: 1.5rem;
}

.term-item {
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 1px solid #333;
}

.term-item h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.term-item p {
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

/* Safety and Support Section */
.safety-support {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.safety-standards h3, .premium-service h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.safety-standards > p, .premium-service > p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.standards-list {
    display: grid;
    gap: 1.5rem;
}

.standard-item {
    display: flex;
    gap: 1rem;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 1px solid #333;
}

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

.standard-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.standard-content p {
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.premium-service h4 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

.premium-contacts {
    display: grid;
    gap: 1rem;
}

.contact-method {
    padding: 15px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    border: 1px solid #333;
}

.contact-method h5 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-method p {
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.support-image {
    text-align: center;
    margin-bottom: 4rem;
}

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

.fraud-prevention {
    margin-bottom: 4rem;
}

.fraud-prevention h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-align: center;
}

.fraud-prevention > p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.fraud-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 1px solid #333;
}

.fraud-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    min-width: 30px;
}

.fraud-item span {
    color: #cccccc;
    line-height: 1.5;
}

.responsible-gaming h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-align: center;
}

.responsible-gaming > p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.responsible-item {
    display: flex;
    gap: 1rem;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 1px solid #333;
    align-items: flex-start;
}

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

.responsible-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.responsible-content p {
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.external-link-note {
    color: #cccccc;
    text-align: center;
    margin-top: 3rem;
    line-height: 1.6;
    font-style: italic;
}

.external-link-note a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.external-link-note a:hover {
    color: #f7931e;
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #111111;
}

.faq-categories {
    display: grid;
    gap: 3rem;
}

.faq-category {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-category h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b35" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23f7931e" opacity="0.4"/><circle cx="40" cy="80" r="1" fill="%23ff6b35" opacity="0.2"/></svg>');
    animation: float 20s infinite linear;
}

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

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content > p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-note {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-final {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

    .bonus-usage {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media screen and (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

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

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

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

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }

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

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

    .slot-machine {
        padding: 20px;
    }

    .slot-reels {
        gap: 5px;
    }

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

    .symbol {
        font-size: 2rem;
        min-height: 48px;
        padding: 10px 0;
    }

    .slot-controls {
        flex-direction: column;
        gap: 15px;
    }

    .spin-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .security-items {
        grid-template-columns: 1fr;
    }

    .fraud-items {
        grid-template-columns: 1fr;
    }

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

    .cta h2 {
        font-size: 2rem;
    }

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

@media screen and (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

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

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

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

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

    .slot-machine {
        padding: 15px;
    }

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

    .symbol {
        font-size: 1.5rem;
        min-height: 40px;
        padding: 8px 0;
    }

    .feature-card, .tool-card, .faq-category {
        padding: 25px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid #333;
    margin-top: 80px;
}

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

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

.footer-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 80%;
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    padding: 12px 20px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.sticky-btn:hover::before {
    left: 100%;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    color: #ffffff;
    border: 1px solid #444;
}

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

.sticky-btn-register {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 60px;
    }

    .footer-nav {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

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

/* Responsive Sticky Buttons */
@media screen and (max-width: 768px) {
    .sticky-buttons {
        padding: 8px 10px;
        gap: 6px;
    }

    .sticky-btn {
        padding: 12px 8px;
        font-size: 12px;
        font-weight: 600;
        min-height: 44px;
        border-radius: 6px;
    }
}

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

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

    .sticky-buttons {
        padding: 6px 8px;
        gap: 4px;
    }

    .sticky-btn {
        padding: 10px 6px;
        font-size: 11px;
        min-height: 40px;
        border-radius: 4px;
    }
}

@media screen and (max-width: 360px) {
    .sticky-btn {
        font-size: 10px;
        padding: 8px 4px;
        min-height: 36px;
    }
}

/* Login Page Styles */
.login-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.login-form {
    width: 100%;
    max-width: 400px;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid #333;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #ff6b35;
    background: rgba(20, 20, 20, 1);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

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

.login-btn, .register-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.login-btn {
    order: 1;
}

.register-btn {
    order: 2;
}

/* Responsive Design for Login Page */
@media screen and (max-width: 768px) {
    .login-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .login-form {
        padding: 2rem;
        margin: 0 20px;
    }

    .login-section {
        padding: 120px 0 50px;
    }
}

@media screen and (max-width: 480px) {
    .login-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .login-form {
        padding: 1.5rem;
        margin: 0 15px;
    }

    .form-group input {
        padding: 12px 16px;
    }

    .login-btn, .register-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

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

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

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

.register-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

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

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for Register Page */
@media screen and (max-width: 768px) {
    .register-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .register-form {
        padding: 2rem;
        margin: 0 20px;
    }

    .register-section {
        padding: 120px 0 50px;
    }
}

@media screen and (max-width: 480px) {
    .register-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .register-form {
        padding: 1.5rem;
        margin: 0 15px;
    }

    .form-input {
        padding: 12px 16px;
    }

    .btn-primary, .btn-outline {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Promotion Page Styles */

/* Container and Common Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: 60px 0;
}

/* Section Titles */
.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Promotion Section */
.hero-promotion {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-attachment: fixed;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-promotion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b35" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23f7931e" opacity="0.4"/><circle cx="40" cy="80" r="1" fill="%23ff6b35" opacity="0.2"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* New Member Section */
.new-member-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

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

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card.featured {
    border: 2px solid #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
}

.promo-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.promo-details h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 600;
}

.promo-list {
    list-style: none;
    margin-bottom: 20px;
}

.promo-list li {
    color: #cccccc;
    padding: 8px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 20px;
}

.promo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.promo-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.promo-cta:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
}

/* Daily Code Section */
.daily-code-section {
    background: #0f0f0f;
}

.code-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

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

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

.code-item:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.code-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.code-desc {
    color: #cccccc;
    font-size: 0.9rem;
}

.code-steps {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #333;
}

.steps-list {
    list-style-type: none;
    counter-reset: step-counter;
    margin-bottom: 25px;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding: 15px 0 15px 50px;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
}

.daily-update {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid #333;
    text-align: center;
}

/* Slots Promotion Section */
.slots-promotion-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.slots-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

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

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

.feature-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.feature-item i {
    color: #ff6b35;
    font-size: 24px;
    min-width: 30px;
}

.providers-section {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #333;
}

.providers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.provider-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.provider-name {
    font-weight: 700;
    color: #ff6b35;
}

.provider-desc {
    color: #cccccc;
    font-size: 0.9rem;
}

.slots-cta-section {
    text-align: center;
    margin-top: 40px;
}

.promo-cta-large {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.promo-cta-large:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.pg-formula-section {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid #333;
}

.formula-benefits {
    margin-top: 25px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefits-list li {
    color: #cccccc;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 25px;
}

.benefits-list li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

/* Banking Section */
.banking-section {
    background: #0f0f0f;
}

.banking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.banking-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.banking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.banking-label {
    color: #cccccc;
    font-weight: 500;
}

.banking-value {
    color: #ff6b35;
    font-weight: 700;
}

.banking-methods {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #333;
}

.methods-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.method-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
}

.method-item i {
    color: #ff6b35;
    font-size: 24px;
    min-width: 30px;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.method-name {
    font-weight: 700;
    color: #ffffff;
}

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

.deposit-bonus-section {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid #333;
    text-align: center;
}

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

.tier-item {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.tier-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.tier-amount {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.tier-bonus {
    display: block;
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tier-percent {
    color: #cccccc;
    font-size: 0.9rem;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.vip-content {
    margin-top: 40px;
}

.vip-intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.vip-level {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vip-level.bronze::before {
    background: linear-gradient(45deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
}

.vip-level.silver::before {
    background: linear-gradient(45deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.vip-level.gold::before {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.vip-level.platinum::before {
    background: linear-gradient(45deg, rgba(229, 228, 226, 0.1), rgba(229, 228, 226, 0.05));
}

.vip-level:hover::before {
    opacity: 1;
}

.vip-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.level-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #ffffff;
}

.vip-level h5 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.vip-level p {
    color: #cccccc;
    line-height: 1.5;
}

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

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

.benefit-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.benefit-item i {
    color: #ff6b35;
    font-size: 24px;
    min-width: 30px;
}

.benefit-item span {
    color: #cccccc;
    line-height: 1.5;
}

/* Daily Promotions Section */
.daily-promotions-section {
    background: #0f0f0f;
}

.daily-intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.day-item {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.day-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.day-item h5 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.day-item ul {
    list-style: none;
}

.day-item li {
    color: #cccccc;
    padding: 8px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 20px;
}

.day-item li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

/* Festival Section */
.festival-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.festival-intro {
    text-align: center;
    margin-bottom: 40px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

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

.event-item:hover {
    border-color: #ff6b35;
    transform: translateX(10px);
}

.event-item i {
    color: #ff6b35;
    font-size: 32px;
    min-width: 40px;
}

.event-content h5 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.event-content p {
    color: #cccccc;
    line-height: 1.5;
}

/* How To Section */
.how-to-section {
    background: #0f0f0f;
}

.how-to-intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.step-item {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h5 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    margin-top: 10px;
}

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

.step-content li {
    color: #cccccc;
    padding: 8px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 20px;
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Terms Section */
.terms-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.terms-intro {
    text-align: center;
    margin-bottom: 40px;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.terms-general,
.terms-specific {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #333;
}

.terms-list {
    list-style: none;
    margin-bottom: 25px;
}

.terms-list li {
    color: #cccccc;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 25px;
}

.terms-list li::before {
    content: '📋';
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-section {
    background: #0f0f0f;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info {
    margin: 30px 0;
}

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

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

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

.channel-item i {
    color: #ff6b35;
    font-size: 28px;
    min-width: 35px;
}

.channel-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.channel-label {
    font-weight: 700;
    color: #ffffff;
}

.channel-value {
    color: #cccccc;
    font-size: 0.95rem;
}

.hours-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hours-label {
    color: #cccccc;
    font-weight: 500;
}

.hours-value {
    color: #ff6b35;
    font-weight: 700;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.faq-item {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.faq-item h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.faq-cta {
    text-align: center;
    margin-top: 30px;
}

/* Summary Section */
.summary-section {
    background: #0f0f0f;
    position: relative;
}

.summary-content {
    text-align: center;
    margin-top: 40px;
}

.summary-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlights {
    margin: 40px 0;
}

.highlights h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

.highlight-item:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.highlight-item i {
    color: #ff6b35;
    font-size: 28px;
    min-width: 35px;
}

.highlight-item span {
    color: #cccccc;
    font-weight: 500;
    line-height: 1.5;
}

.final-cta {
    margin-top: 50px;
}

.cta-button-final {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button-final:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

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

    .code-content,
    .slots-grid,
    .banking-grid,
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid,
    .schedule-grid,
    .steps-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .vip-levels {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .tiers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    section {
        padding: 40px 0;
    }

    .hero-promotion {
        padding: 100px 0 60px;
    }
}

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

    .promo-card,
    .step-item,
    .faq-item {
        padding: 20px;
    }

    .hero-promotion {
        padding: 80px 0 40px;
    }

    .cta-button-large,
    .cta-button-final {
        padding: 15px 25px;
        font-size: 1rem;
    }

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

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

    .promo-grid .promo-card {
        min-width: unset;
    }
}

/* Privacy Policy Styles */
.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 20px 40px 20px;
    display: flex;
    flex-direction: column;
}

.privacy-policy-content {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.privacy-policy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.privacy-policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.privacy-policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f7931e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-policy-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.privacy-policy-content li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: justify;
}

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

.privacy-policy-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 40px 0;
}

.privacy-policy-content em {
    color: #cccccc;
    font-style: italic;
}

/* Mobile Styles for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 90px 15px 30px 15px;
    }

    .privacy-policy-content {
        padding: 25px;
        border-radius: 8px;
    }

    .privacy-policy-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .privacy-policy-content h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .privacy-policy-content h3 {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .privacy-policy-content p,
    .privacy-policy-content li {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        padding-left: 20px;
    }

    .privacy-policy-content hr {
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 85px 10px 25px 10px;
    }

    .privacy-policy-content {
        padding: 20px;
        border-radius: 6px;
    }

    .privacy-policy-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .privacy-policy-content h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .privacy-policy-content h3 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

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

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        padding-left: 15px;
    }
}