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;
}
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 {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    min-height: 100vh;
}

.header {
    background: #2c2c54;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    color: #ff6b35;
}

.logo::before {
    content: "🚀";
    margin-right: 8px;
    font-size: 28px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn.primary {
    background: #ff6b35;
    color: white;
}

.btn.primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

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

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

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

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

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

.site-navigation {
    background: #2c2c54;
    padding: 0;
    position: relative;
    z-index: 1000;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

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

/* Banner Styles */
.site-banner{
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-banner-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.banner-scroll::-webkit-scrollbar {
    height: 8px;
}

.banner-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.banner-scroll::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 10px;
}

.banner-card {
    min-width: 450px;
    height: 280px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner-card:hover {
    transform: translateY(-5px);
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.banner-card.card1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-card.card2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.banner-card.card3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.banner-card.card4 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.banner-card.card5 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.card-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 16px;
}

.card-btn:hover {
    background: white;
    transform: scale(1.05);
}

.card-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    opacity: 0.8;
    z-index: 1;
}

@media (max-width: 768px) {
    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 10000;
    }

    .site-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #2c2c54;
        z-index: 9999;
        overflow-y: auto;
        padding-top: 80px;
    }

    .site-navigation.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 30px;
        font-size: 18px;
    }

    .mobile-auth {
        display: block;
        padding: 30px;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
    }

    .mobile-auth .auth-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .banner-card {
        min-width: 280px;
        height: 180px;
        padding: 25px;
    }

    .card-title {
        font-size: 18px;
    }

    .site-banner{
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 12px 15px;
    }

    .logo {
        font-size: 20px;
    }

    .banner-card {
        min-width: 250px;
        height: 160px;
        padding: 20px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
.footer {
    background: #1e1e3a;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

.footer-logo::before {
    content: "🚀";
    margin-right: 10px;
    font-size: 28px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 15px;
        padding: 8px 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 25px;
    }

    .footer-logo span {
        font-size: 20px;
    }
}

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

    .footer-grid {
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 14px;
        padding: 6px 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-logo span {
        font-size: 18px;
    }

    .footer-logo::before {
        font-size: 22px;
        margin-right: 8px;
    }
}

@media (min-width: 769px) {
    .footer-links a:hover {
        padding-left: 10px;
    }
}

.list-slots {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: white;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.slot-card {
    width: 100%;
    max-width: 200px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.slot-card:hover {
    transform: translateY(-10px);
}

.slot-image {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.slot-card:hover .slot-image {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.slot-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.badge.hot {
    background: rgba(255, 107, 53, 0.9);
    color: white;
}

.provider-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.provider-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

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

.slot-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1.2;
    color: white;
}

.slot-provider {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .slot-card {
        max-width: 150px;
    }

    .slot-image {
        height: 200px;
    }

    .slot-title {
        font-size: 12px;
    }

    .slot-provider {
        font-size: 10px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .container {
        padding: 0 10px;
    }

    .list-slots {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 180px;
        margin: 0 auto;
    }

    .slot-card {
        max-width: 100%;
    }

    .slot-image {
        height: 250px;
    }

    .slot-title {
        font-size: 13px;
    }

    .slot-provider {
        font-size: 11px;
    }

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

/* Ensure single column on mobile */
@media (max-width: 360px) {
    .slots-grid {
        grid-template-columns: 1fr;
        max-width: 160px;
        margin: 0 auto;
    }
}

.loyalty-section {
    margin-bottom: 20px;
    background: #1e1e3a;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.loyalty-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #94a3b8;
    margin-bottom: 0;
    margin-bottom: 20px;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.level-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.level-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.level-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
}

.level-1 .level-icon {
    background: linear-gradient(135deg, #8d7053 0%, #6b5139 100%);
}

.level-2 .level-icon {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.level-3 .level-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.level-4 .level-icon {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

.level-5 .level-icon {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.level-icon::before {
    content: "🌟";
    font-size: 35px;
}

.level-title {
    font-size: 18px;
    font-weight: bold;
    color: #94a3b8;
    margin-bottom: 20px;
}

.level-benefits {
    list-style: none;
    text-align: left;
}

.level-benefits li {
    margin-bottom: 12px;
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.level-benefits li::before {
    content: "💰";
    font-size: 12px;
    flex-shrink: 0;
}

.level-benefits li:nth-child(2)::before {
    content: "🎁";
}

.level-benefits li:nth-child(3)::before {
    content: "🎰";
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .levels-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .level-card {
        padding: 25px 15px;
    }

    .level-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .level-title {
        font-size: 16px;
    }

    .level-benefits li {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .loyalty-section {
        padding: 30px 20px;
    }

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

    .level-card {
        padding: 20px 15px;
    }

    .level-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 15px;
    }

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

    .level-benefits li {
        font-size: 11px;
        margin-bottom: 8px;
    }
}

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

    .loyalty-section {
        padding: 25px 15px;
    }

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

    .level-card {
        padding: 25px 20px;
    }

    .level-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        margin-bottom: 15px;
    }

    .level-title {
        font-size: 16px;
    }

    .level-benefits li {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .container {
        padding: 0 10px;
    }
}

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

.section-block {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-block:last-child {
    border-bottom: none;
}

.primary-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ff6b35;
    line-height: 1.3;
}

.secondary-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #fbbf24;
    line-height: 1.3;
}

.paragraph-content {
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
}

.bold-text {
    color: #fbbf24;
    font-weight: bold;
}

.unordered-list, .ordered-content {
    margin: 25px 0;
    padding-left: 0;
}

.list-element {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #e2e8f0;
}

.unordered-list .list-element::before {
    content: "⭐";
    position: absolute;
    left: 0;
    top: 0;
}

.ordered-content {
    counter-reset: item-counter;
}

.ordered-content .list-element {
    counter-increment: item-counter;
}

.ordered-content .list-element::before {
    content: counter(item-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #ff6b35;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.table-holder {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.table-data {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 15px;
}

.table-data:first-child {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.featured-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.featured-box .paragraph-content {
    margin-bottom: 0;
    color: white;
}

.notice-box {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.notice-box .paragraph-content {
    margin-bottom: 0;
    color: #fbbf24;
    font-weight: 500;
}

/* Benefits Grid */
.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
}

.benefit-card .card-heading {
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.benefit-card .paragraph-content {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 0;
}

.section-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff6b35 50%, transparent 100%);
    margin: 40px 0;
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .section-block {
        padding: 40px 0;
    }

    .primary-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .secondary-title {
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .paragraph-content {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .page-container {
        padding: 0 15px;
    }

    .table-holder {
        margin: 25px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .content-table {
        min-width: 400px;
    }

    .table-data {
        padding: 12px 15px;
        font-size: 14px;
    }

    .list-element {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .featured-box {
        padding: 20px;
        margin: 25px 0;
    }

    .notice-box {
        padding: 15px;
        margin: 20px 0;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .primary-title {
        font-size: 20px;
    }

    .secondary-title {
        font-size: 18px;
    }

    .paragraph-content {
        font-size: 14px;
    }

    .table-data {
        padding: 10px 12px;
        font-size: 13px;
    }

    .featured-box {
        padding: 15px;
    }

    .notice-box {
        padding: 12px;
    }

    .benefit-card {
        padding: 15px;
    }
}