html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}



body {
    background: #0a0a0a;
    font-family: 'Arial', sans-serif;
    color: white;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: #ff4444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.3);
}

.nav-logo-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

.login-btn:hover {
    background: #ffd700;
    color: #000;
}

.register-btn {
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    color: white;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
}

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

.mobile-nav {
    padding: 30px 20px;
}

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

.mobile-nav-item {
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

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

.mobile-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-actions .nav-btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
}

.hero-banner {
    padding-top: 50px;
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg,
    rgba(255, 68, 68, 0.8),
    rgba(0, 100, 255, 0.8),
    rgba(255, 215, 0, 0.6)
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 500"><rect width="1200" height="500" fill="%23000"/><circle cx="200" cy="150" r="30" fill="%23FFD700" opacity="0.3"/><circle cx="1000" cy="200" r="20" fill="%23FFD700" opacity="0.2"/><circle cx="300" cy="350" r="25" fill="%23FFD700" opacity="0.1"/><circle cx="900" cy="100" r="35" fill="%23FFD700" opacity="0.2"/><circle cx="600" cy="400" r="20" fill="%23FFD700" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #ff4444;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 72px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bonus-text {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    color: white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.6);
    background: linear-gradient(45deg, #ff6b6b, #ff4444);
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-car {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 200px;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 20px;
    opacity: 0.3;
    animation: slideIn 2s ease-out;
}

.bg-racer {
    position: absolute;
    right: -50px;
    top: 30%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff4444, #0066ff);
    border-radius: 50%;
    opacity: 0.2;
    animation: slideInRight 2s ease-out;
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #ffd700, #ffaa00);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.coin:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.coin:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.coin:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; }
.coin:nth-child(4) { top: 70%; left: 20%; animation-delay: 3s; }
.coin:nth-child(5) { top: 10%; left: 90%; animation-delay: 4s; }

@keyframes slideIn {
    from { left: -400px; opacity: 0; }
    to { left: -100px; opacity: 0.3; }
}

@keyframes slideInRight {
    from { right: -300px; opacity: 0; }
    to { right: -50px; opacity: 0.2; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        height: 450px;
    }

    .main-title {
        font-size: 60px;
    }

    .bonus-text {
        font-size: 40px;
    }

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

    .bg-car {
        width: 300px;
        height: 150px;
    }

    .bg-racer {
        width: 200px;
        height: 200px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    body {
        padding-top: 70px;
    }

    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-logo-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .nav-logo-text {
        font-size: 18px;
    }
    .hero-banner {
        height: 400px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

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

    .subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .main-title {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .bonus-text {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .bg-car, .bg-racer {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-banner {
        height: 350px;
    }

    .logo {
        margin-bottom: 20px;
    }

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

    .subtitle {
        font-size: 14px;
    }

    .main-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .bonus-text {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .coin {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .hero-banner {
        height: 300px;
    }

    .main-title {
        font-size: 28px;
    }

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

    .cta-button {
        padding: 10px 25px;
        font-size: 12px;
    }
}
.container-slots {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.slots-section {
    padding: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.see-all {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.see-all:hover {
    background: #ffd700;
    color: #000;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(255, 215, 0, 0.3);
}

.slots-carousel {
    position: relative;
    overflow: hidden;
}

.slots-container {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.slots-container::-webkit-scrollbar {
    display: none;
}

.slot-item {
    flex: 0 0 auto;
    width: 200px;
    height: 280px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.slot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00ff00;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.demo-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: bold;
    z-index: 1;
}

.slot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 10px 10px;
    border-radius: 0 0 15px 15px;
}

.slot-title {
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slot-item {
        width: 180px;
        height: 250px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .slots-section {
        padding: 15px;
    }

    .slot-item {
        width: 160px;
        height: 220px;
    }

    .section-title {
        font-size: 20px;
    }

    .nav-arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .slot-item {
        width: 140px;
        height: 200px;
    }

    .slots-container {
        gap: 10px;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    overflow: hidden;
}

.section-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.wins-table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    background: rgba(255, 255, 255, 0.05);
}

.table-header th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.table-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 215, 0, 0.1);
}

.table-row td {
    padding: 18px 15px;
    vertical-align: middle;
}

.game-cell {
    display: flex;
    align-items: center;
}

.game-block {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.game-name {
    font-weight: 500;
    color: #fff;
    font-size: 14px;
}

.user-name {
    color: #fff;
    font-weight: 400;
}

.bet-amount {
    color: #fff;
    font-weight: 600;
}

.multiplier {
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
}

.payout {
    color: #00ff88;
    font-weight: bold;
    font-size: 16px;
}

.show-more-container {
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.show-more-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.show-more-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {


    .container {
        border-radius: 10px;
    }

    .section-header {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .table-header th {
        padding: 15px 8px;
        font-size: 10px;
    }

    .table-row td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .game-cell {
        gap: 8px;
    }

    .game-block {
        font-size: 10px;
        padding: 6px 8px;
    }

    .game-name {
        font-size: 12px;
        line-height: 1.2;
    }

    .payout {
        font-size: 14px;
    }

    .multiplier {
        font-size: 12px;
    }

    .show-more-container {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .table-header th:nth-child(3),
    .table-row td:nth-child(3) {
        display: none;
    }

    .table-header th,
    .table-row td {
        padding: 10px 5px;
        font-size: 11px;
    }

    .game-cell {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .game-block {
        font-size: 9px;
        padding: 4px 6px;
    }

    .payout {
        font-size: 12px;
    }
}

.footer {
    margin-top: 40px;
    background: #1a1a1a;
    padding: 40px 20px 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    display: block;
}

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

.logo-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.casino-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: #ff4444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.logo-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.telegram-link {
    color: #888;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.telegram-link:hover {
    color: #0088cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-column:first-child {
        grid-column: span 3;
        margin-bottom: 20px;
    }

    .logo-section {
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-column:first-child {
        grid-column: span 2;
    }

    .footer-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-link {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column:first-child {
        grid-column: span 1;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-link {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* Ultra small screens */
@media (max-width: 320px) {
    .footer {
        padding: 20px 10px 10px;
    }

    .footer-title {
        font-size: 14px;
    }

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

.content-text {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #0a0a0a;
    color: #ccc;
    line-height: 1.8;
}

.content-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin: 40px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffd700;
    position: relative;
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #ff4444, #ffd700);
}

.content-text h3 {
    color: #ffd700;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.content-text p strong {
    color: #fff;
    font-weight: bold;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-text ul li {
    position: relative;
    padding: 8px 0 8px 25px;
    margin-bottom: 8px;
    font-size: 16px;
}

.content-text ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 8px;
    color: #ffd700;
    font-size: 12px;
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-text table thead tr {
    background: linear-gradient(45deg, #ff4444, #ffd700);
}

.content-text table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: bold;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-text table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.content-text table tbody tr {
    transition: background-color 0.3s ease;
}

.content-text table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.content-text table tbody tr:last-child td {
    border-bottom: none;
}

.content-text table td strong {
    color: #ffd700;
    font-weight: bold;
}

/* Mobile Table Scroll */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .content-text {
        padding: 30px 15px;
    }

    .content-text h2 {
        font-size: 24px;
        margin: 30px 0 15px 0;
    }

    .content-text h3 {
        font-size: 18px;
    }

    .content-text p {
        font-size: 15px;
    }

    .content-text table {
        font-size: 13px;
    }

    .content-text table th,
    .content-text table td {
        padding: 12px 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-text {
        padding: 20px 15px;
    }

    .content-text h2 {
        font-size: 22px;
        margin: 25px 0 15px 0;
    }

    .content-text h3 {
        font-size: 16px;
        margin: 20px 0 10px 0;
    }

    .content-text p {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: left;
    }

    .content-text ul li {
        font-size: 14px;
        padding: 6px 0 6px 20px;
    }

    .content-text ul li::before {
        font-size: 10px;
    }

    .content-text table {
        font-size: 12px;
        min-width: 500px;
    }

    .content-text table th,
    .content-text table td {
        padding: 10px 8px;
        white-space: nowrap;
    }

    .table-container {
        -webkit-overflow-scrolling: touch;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .content-text {
        padding: 15px 10px;
    }

    .content-text h2 {
        font-size: 20px;
    }

    .content-text h3 {
        font-size: 15px;
    }

    .content-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .content-text ul li {
        font-size: 13px;
    }

    .content-text table {
        font-size: 11px;
        min-width: 450px;
    }

    .content-text table th,
    .content-text table td {
        padding: 8px 6px;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .hero-banner {
        height: 300px;
    }

    .main-title {
        font-size: 28px;
    }

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

    .cta-button {
        padding: 10px 25px;
        font-size: 12px;
    }
}