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

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
.header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

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

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

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

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

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

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

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

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

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

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

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

.nav-mobile-link:hover {
    color: #ffd700;
    background-color: #2a2a2a;
}

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

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

/* Body padding to account for fixed header */
body {
    padding-top: 70px;
}

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

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

    .nav-mobile {
        display: none;
    }

    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .nav-wrapper {
        height: 80px;
    }

    body {
        padding-top: 80px;
    }

    .nav-list {
        gap: 40px;
    }

    .nav-link {
        font-size: 1.1rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 60px;
    }
}

/* Dark mode theme variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-primary: #ffd700;
    --accent-secondary: #ffed4e;
    --border-color: #333;
    --shadow-color: rgba(255, 215, 0, 0.3);
}

/* Animation for smooth transitions */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition-duration: 0.3s;
    }
}

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

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

    .nav-link:hover {
        background-color: #ffd700;
        color: #000000;
    }
}

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

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

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }
}

/* Section titles */
.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    box-shadow: 0 4px 15px var(--shadow-color);
}

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

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: #000000;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

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

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.hero-image {
    text-align: center;
}

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

@media (min-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

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

    .hero-actions {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 120px 0;
    }

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

/* Lottery Demo Section */
.lottery-demo {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.demo-container {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.demo-panel, .demo-results {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.demo-panel h3, .demo-results h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.lottery-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lottery-type {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lottery-type:hover, .lottery-type.active {
    background: var(--accent-primary);
    color: #000000;
    border-color: var(--accent-primary);
}

.number-selection, .bet-amount {
    margin-bottom: 1.5rem;
}

.number-selection label, .bet-amount label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.number-selection input, .bet-amount input {
    width: 100%;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.number-selection input:focus, .bet-amount input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.payout-display {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.payout-info, .potential-win {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.payout-info span:last-child, .potential-win span:last-child {
    color: var(--accent-primary);
    font-weight: 700;
}

.demo-bet-btn, .draw-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-bet-btn:hover, .draw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.lottery-balls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ball {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.result-info {
    text-align: center;
}

.result-info p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .demo-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .lottery-types {
        grid-template-columns: repeat(4, 1fr);
    }

    .lottery-balls {
        gap: 1rem;
    }

    .ball {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* Services Section */
.services {
    background: var(--bg-primary);
}

.service-article {
    margin-bottom: 3rem;
}

.service-article h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-article p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.lottery-types-grid {
    margin: 4rem 0;
}

.lottery-types-grid h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lottery-types-grid p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.grid-container {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.lottery-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.lottery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lottery-card h4 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.lottery-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.banking-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.banking-section h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.banking-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.banking-image {
    text-align: center;
}

.banking-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Registration Section */
.registration {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.registration-content {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.registration-steps h3, .mobile-app-section h3, .notification-system h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.registration-steps p, .mobile-app-section p, .notification-system p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.step-cards {
    display: grid;
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-card h4 {
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.app-image {
    text-align: center;
    margin-top: 2rem;
}

.app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .registration-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .step-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Techniques Section */
.techniques {
    background: var(--bg-primary);
}

.techniques-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.technique-item h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.technique-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.analysis-image {
    text-align: center;
}

.analysis-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.betting-techniques {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.betting-techniques h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.betting-techniques p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.betting-method {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.betting-method:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.betting-method h4 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.betting-method p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .techniques-grid {
        grid-template-columns: 1fr 1fr;
    }

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

/* Trust Section */
.trust {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.trust-item h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.security-image {
    text-align: center;
}

.security-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Customer Service Section */
.customer-service {
    background: var(--bg-primary);
}

.service-flex {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-main h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-main p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: var(--text-primary);
    font-weight: 600;
}

.service-image {
    text-align: center;
}

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

.help-system {
    margin-bottom: 4rem;
}

.help-system h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.help-system p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.promotions-section {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.promotions-section h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.promotions-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.promotion-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-primary);
}

.promotion-card h4 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promotion-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.community-section h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.community-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .service-flex {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .contact-item {
        flex: 1;
        min-width: 200px;
    }

    .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .promotion-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* FAQ Section */
.faq {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.faq-item a:hover {
    opacity: 0.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.cta-section p {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.cta-section a {
    color: #000000;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.cta-section a:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .lottery-card, .step-card, .technique-item, .trust-item, .faq-item, .promotion-card {
        animation: fadeInUp 0.6s ease-out;
    }

    .ball {
        animation: bounce 2s infinite;
    }

    .ball:nth-child(2) { animation-delay: 0.1s; }
    .ball:nth-child(3) { animation-delay: 0.2s; }
    .ball:nth-child(4) { animation-delay: 0.3s; }
    .ball:nth-child(5) { animation-delay: 0.4s; }
    .ball:nth-child(6) { animation-delay: 0.5s; }
}

/* Print styles */
@media print {
    .hero, .lottery-demo {
        page-break-inside: avoid;
    }

    .hero-actions, .demo-bet-btn, .draw-btn {
        display: none;
    }

    section {
        padding: 20px 0;
    }

    .footer, .sticky-buttons {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.footer-link:hover {
    color: var(--accent-primary);
}

.footer-link:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

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

@media (min-width: 1024px) {
    .footer-nav {
        gap: 3rem;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
    min-height: 48px;
}

.sticky-btn-login {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.sticky-btn-login:hover {
    background: var(--accent-primary);
    color: #000000;
}

.sticky-btn-register {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    border: 2px solid transparent;
}

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

.sticky-btn-bonus {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    border: 2px solid transparent;
}

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

.sticky-btn:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

@media (min-width: 480px) {
    .sticky-buttons {
        padding: 1.25rem;
        gap: 1rem;
    }

    .sticky-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
}

@media (min-width: 768px) {
    .sticky-buttons {
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: 600px;
        border-radius: 15px 15px 0 0;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .sticky-btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        border-radius: 15px;
        min-width: 150px;
    }
}

@media (min-width: 1024px) {
    .sticky-buttons {
        max-width: 720px;
        gap: 2rem;
    }

    .sticky-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
        min-width: 180px;
    }
}

/* Body padding adjustment for sticky buttons */
body {
    padding-bottom: 80px;
}

@media (min-width: 480px) {
    body {
        padding-bottom: 90px;
    }
}

@media (min-width: 768px) {
    body {
        padding-bottom: 100px;
    }
}

@media (min-width: 1024px) {
    body {
        padding-bottom: 110px;
    }
}

/* Promotion Page Styles */
.promotion-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid var(--border-color);
}

.promotion-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
}

/* Promotion Grid and Cards */
.promotion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.promotion-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.promotion-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.promotion-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.promotion-card h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.promotion-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promotion-details {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.promotion-details h4 {
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.promotion-details li {
    color: var(--text-primary);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.promotion-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* Campaign Cards */
.campaign-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.campaign-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.campaign-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.campaign-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

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

.campaign-steps li {
    counter-increment: step-counter;
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-primary);
}

.campaign-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--accent-primary);
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Lottery Promotions */
.lottery-promotions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.lottery-promo-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.lottery-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.promo-conditions {
    margin-top: 20px;
}

/* VIP Section */
.vip-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.vip-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border: 2px solid var(--accent-primary);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vip-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    position: relative;
    z-index: 2;
}

.vip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* Holiday Promotions */
.holiday-promotions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.holiday-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.holiday-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Points System */
.points-system {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.points-card, .rewards-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.points-icon, .rewards-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

/* Referral Section */
.referral-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.referral-card, .partner-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.referral-icon, .partner-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.referral-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

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

.step-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
}

.step-number {
    background: var(--accent-primary);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-card h4 {
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step-card li {
    color: var(--text-secondary);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.step-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* Terms Section */
.terms-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.terms-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

.terms-general h4, .terms-withdrawal h4 {
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card, .faq-section {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}

.contact-icon, .faq-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

.contact-channels h4, .contact-services h4 {
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* FAQ List */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Summary Section */
.summary-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.popular-promotions, .why-choose {
    margin: 30px 0;
    text-align: left;
}

.popular-promotions h3, .why-choose h3 {
    color: var(--accent-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.popular-promotions ol {
    list-style: none;
    counter-reset: promo-counter;
    padding: 0;
}

.popular-promotions li {
    counter-increment: promo-counter;
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-primary);
}

.popular-promotions li::before {
    content: counter(promo-counter);
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--accent-primary);
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.why-choose li {
    color: var(--text-primary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.why-choose li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.final-cta {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
}

.final-cta p {
    color: var(--text-primary);
    margin: 15px 0;
}

/* Article Footer */
.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.article-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 5px 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 30px 0;
}

/* How-to Section */
.how-to-section {
    padding: 30px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 30px;
}

.how-to-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Responsive Design for Promotion Page */
@media (min-width: 768px) {
    .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promotion-flex {
        flex-direction: row;
    }

    .campaign-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lottery-promotions {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .holiday-promotions {
        grid-template-columns: repeat(2, 1fr);
    }

    .points-system {
        grid-template-columns: repeat(2, 1fr);
    }

    .referral-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .points-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .referral-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .promotion-section {
        padding: 80px 0;
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .popular-promotions, .why-choose {
        text-align: left;
    }
}

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

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

.login-content h1 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}

.login-form {
    width: 100%;
    max-width: 400px;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

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

.btn-login {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-register {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--accent-primary);
    color: #000000;
}

@media (max-width: 768px) {
    .login-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

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

    .login-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 480px) {
    .login-content h1 {
        font-size: 1.6rem;
    }

    .login-form {
        padding: 1.5rem;
    }

    .form-group input,
    .btn-login,
    .btn-register {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

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

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

.register-content h1 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}

.register-form {
    width: 100%;
    max-width: 400px;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-register-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-login-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-login-outline:hover {
    background: var(--accent-primary);
    color: #000000;
}

@media (max-width: 768px) {
    .register-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

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

    .register-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 480px) {
    .register-content h1 {
        font-size: 1.6rem;
    }

    .register-form {
        padding: 1.5rem;
    }

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

/* High contrast support for footer and sticky buttons */
@media (prefers-contrast: high) {
    .footer {
        border-top: 2px solid var(--accent-primary);
    }

    .footer-link:hover {
        background-color: var(--accent-primary);
        color: #000000;
        padding: 0.5rem;
        border-radius: 4px;
    }

    .sticky-buttons {
        border-top: 2px solid var(--accent-primary);
    }

    .sticky-btn {
        border-width: 3px;
    }
}

/* Policy Page Styles */
.policy-section {
    background: var(--bg-primary);
    padding: 80px 0;
    min-height: calc(100vh - 140px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.policy-content .section-title {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000000;
    margin: 0;
    padding: 2rem;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.policy-content article {
    padding: 2.5rem;
}

.policy-date {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
    font-size: 1rem;
}

.policy-intro,
.policy-section-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-intro:last-child,
.policy-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-content h2 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-left: 1rem;
}

.policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.policy-content h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.policy-content h4 {
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.8rem 0;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
}

.policy-content ul,
.policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-content li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.policy-content ul li {
    position: relative;
    list-style: none;
    padding-left: 1.5rem;
}

.policy-content ul li::before {
    content: '•';
    color: var(--accent-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.policy-content ol li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.policy-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

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

.contact-info h3 {
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-info li {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
}

.contact-info strong {
    color: var(--accent-primary);
    min-width: 80px;
    font-weight: 700;
}

.contact-info p {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    color: var(--text-primary);
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.policy-footer hr {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}

.policy-footer p {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for Policy Page */
@media (max-width: 768px) {
    .policy-section {
        padding: 60px 0;
    }

    .policy-content {
        margin: 0 20px;
        border-radius: 15px;
    }

    .policy-content .section-title {
        font-size: 1.8rem;
        padding: 1.5rem;
        border-radius: 15px 15px 0 0;
    }

    .policy-content article {
        padding: 2rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .policy-content h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem 0;
    }

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

    .contact-info {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .contact-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .contact-info strong {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .policy-content {
        margin: 0 10px;
        border-radius: 10px;
    }

    .policy-content .section-title {
        font-size: 1.6rem;
        padding: 1.2rem;
        border-radius: 10px 10px 0 0;
    }

    .policy-content article {
        padding: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
        padding-left: 0.8rem;
    }

    .policy-content h2::before {
        width: 3px;
    }

    .policy-content h3 {
        font-size: 1rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.9rem;
        text-align: left;
    }

    .policy-content ul,
    .policy-content ol {
        padding-left: 1.5rem;
    }

    .policy-content ul li {
        padding-left: 1.2rem;
    }

    .contact-info {
        padding: 1.2rem;
    }

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

    .policy-date,
    .policy-footer p {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
}

/* Print styles for policy page */
@media print {
    .policy-section {
        padding: 20px 0;
    }

    .policy-content {
        box-shadow: none;
        border: 1px solid #000;
    }

    .policy-content .section-title {
        background: none;
        color: #000;
        border-bottom: 2px solid #000;
    }

    .policy-content h2,
    .policy-content h3,
    .contact-info h3 {
        color: #000;
    }

    .policy-content h2::before {
        background: #000;
    }

    .contact-info {
        background: none;
        border: 1px solid #000;
    }

    .policy-footer p {
        background: none;
        border: 1px solid #000;
    }
}