<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset và Base Styles */
* {
    box-sizing: border-box;
}

/* Particles background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

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

/* Glow button effect */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
}

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

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

/* Pulse button effect */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Background gradient */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Modern table styles */
.modern-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.modern-table thead th {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.table-success-custom {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.table-danger-custom {
    background: linear-gradient(135deg, #fed7d7 0%, #d5d2d2 100%);
}

/* Bot Groups Styles với hiệu ứng nâng cao */
.bot-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.bot-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Stat Items với icon và hiệu ứng */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-item.special-stat {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.win-icon {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
}

.lose-icon {
    background: linear-gradient(135deg, #D32F2F 0%, #F44336 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.neutral-icon {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: #0c2e73;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Màu sắc cho stat-value với hiệu ứng - Phong cách xổ số */
.stat-value.win {
    color: #2E7D32;
    text-shadow: 0 0 10px rgba(46, 125, 50, 0.4);
}

.stat-value.lose {
    color: #D32F2F;
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.4);
}

.stat-value.neutral {
    color: #4b5563;
}

/* Profit highlight với icons */
.profit-highlight.positive {
    color: #059669;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(5, 150, 105, 0.3);
}

.profit-highlight.negative {
    color: #dc2626;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

.profit-highlight.neutral {
    color: #4b5563;
    font-weight: 700;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.loading-shimmer {
    animation: shimmer 1.5s infinite;
    background: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-size: 800px 104px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stat-item {
        padding: 1rem 0.75rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
}

/* Highlight và Status Effects - Phiên bản đơn giản */

/* Song Thu Highlight - Phong cách xổ số */
.song-thu-highlight {
    background: #7B1FA2; /* Tím truyền thống */
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.song-thu-highlight:hover {
    background: #9C27B0; /* Tím sáng hơn */
    transform: translateY(-1px);
}

/* Success Status */
.success-status {
    background: #198754; /* Bootstrap Success Green */
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.success-status:hover {
    background: #146c43; /* Darker Success Green */
    transform: translateY(-1px);
}

/* Fail Status */
.fail-status {
    background: #6c757d; /* Bootstrap Secondary Gray */
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.fail-status:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Waiting Status */
.waiting-status {
    background: #ffc107; /* Bootstrap Warning Yellow */
    color: #212529; /* Dark text for better contrast */
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.waiting-status:hover {
    background: #e0a800;
    transform: translateY(-1px);
}

/* Number Highlight */
.number-highlight {
    background: #0d6efd; /* Bootstrap Primary Blue */
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.number-highlight:hover {
    background: #0b5ed7; /* Darker Blue */
    transform: translateY(-1px);
}

/* Masked Number */
.masked-number {
    background: #6b7280;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.masked-number:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

/* Dan De - Phong cách xổ số */
.dan-de {
    background: #D32F2F;
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.dan-de:hover {
    background: #F44336;
    transform: translateY(-1px);
}

/* Profit Highlight Positive - Phong cách xổ số */
.profit-highlight.positive {
    background: transparent;
    color: #2E7D32; /* Xanh lá truyền thống */
    padding: 0;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Profit Highlight Negative */
.profit-highlight.negative {
    background: transparent;
    color: #dc3545; /* Bootstrap Danger Red */
    padding: 0;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Profit Highlight Neutral */
.profit-highlight.neutral {
    background: transparent;
    color: #6c757d; /* Bootstrap Secondary Gray */
    padding: 0;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Badge highlight chung */
.badge-highlight {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.badge-highlight:hover {
    transform: translateY(-1px);
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .song-thu-highlight,
    .success-status,
    .fail-status,
    .waiting-status,
    .dan-de,
    .hits-highlight,
    .profit-highlight.positive,
    .profit-highlight.negative,
    .profit-highlight.neutral {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .number-highlight,
    .masked-number,
    .vip-number-highlight {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .song-thu-highlight,
    .success-status,
    .fail-status,
    .waiting-status,
    .dan-de,
    .hits-highlight,
    .profit-highlight.positive,
    .profit-highlight.negative,
    .profit-highlight.neutral {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .number-highlight,
    .masked-number,
    .vip-number-highlight {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* VIP Number Highlight */
.vip-number-highlight {
    background: #088706;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.vip-number-highlight:hover {
    background: #8e2de2; /* Lighter Purple on hover */
    transform: translateY(-1px);
}

/* Hits Highlight */
.hits-highlight {
    background: #0891b2;
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.hits-highlight:hover {
    background: #0e7490;
    transform: translateY(-1px);
}

/* Smooth scrolling cho toàn bộ trang */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

/* Custom scrollbar cho webkit browsers */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #6c757d;
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #495057;
}

::-webkit-scrollbar-corner {
    background: #f8f9fa;
}

/* Smooth scroll cho Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #6c757d #f8f9fa;
}

/* Scroll reveal animations - đơn giản hóa */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ẩn tất cả scroll to top buttons duplicate */
.scroll-to-top,
#scrollToTopBtn {
    display: none !important;
}

/* Chỉ hiển thị back-to-top từ base.html */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
}

/* Table responsive improvements */
.table-responsive {
    scrollbar-width: thin;
    scrollbar-color: rgba(108, 117, 125, 0.3) transparent;
    border-radius: 8px;
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
    background: transparent;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: rgba(108, 117, 125, 0.3);
    border-radius: 3px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 117, 125, 0.5);
}

/* Card improvements */
.card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Button improvements */
.btn {
    font-family: var(--font-family-sans);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Form controls */
.form-control, .form-select {
    font-family: var(--font-family-sans);
    border-radius: 6px;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Momentum scrolling cho iOS */
.scroll-container {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-text-size-adjust: 100%;
    }
    
    .btn, .form-control, .form-select {
        -webkit-appearance: none;
    }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
    
    .scroll-to-top i {
        font-size: 0.9rem;
    }
    
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top i {
        font-size: 0.8rem;
    }
}

/* Print styles */
@media print {
    .scroll-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Font stack cải thiện cho cross-platform */
:root {
    --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-mono: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Base font cho toàn bộ website */
body {
    font-family: var(--font-family-sans);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Headings với font weight phù hợp */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-sans);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Responsive font sizes */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
}
</pre></body></html>