:root {
    --primary-color: #450b17;
    --secondary-color: #c7051d;
    --accent-color: #e0e0e0;
    --bg-color: #110d0e;
    --text-color: #f5f5f5;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.zm83k2-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mn74j2-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0f1f 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(199, 5, 29, 0.3);
}

.kx92p5-navbar {
    padding: 0.5rem 0;
}

.fp38q1-logo img {
    max-width: 120px;
    height: auto;
}

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

.dw29k5-nav-menu .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.dw29k5-nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.dw29k5-nav-menu .nav-link:hover::after {
    width: 80%;
}

.qz61k4-online-count {
    color: var(--text-color);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.jm29s7-btn-login {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.jm29s7-btn-login:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.cv85k3-btn-signup {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4082a 100%);
    border: none;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(199, 5, 29, 0.4);
}

.cv85k3-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 5, 29, 0.6);
    color: #fff;
}

.ls42n9-burger {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.ls42n9-burger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
}

.xb29k7-hero {
    background: linear-gradient(135deg, #1a0e10 0%, #2a1215 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.xb29k7-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/banner.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.pv84n2-hero-content {
    position: relative;
    z-index: 1;
}

.rk53m9-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wn67k4-hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.jk91s2-btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
}

.jk91s2-btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

.dk38m1-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
}

.feature-item svg {
    fill: #4ade80;
}

.lm72k8-hero-image {
    position: relative;
    z-index: 1;
}

.lm72k8-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(199, 5, 29, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.qp29x7-container {
    flex: 1;
    padding: 2rem 0;
}

.yh93k5-jackpots {
    margin: 2rem 0;
}

.sk72m3-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.jx39k7-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    opacity: 0.9;
}

.pb85n1-jackpot-card {
    background: linear-gradient(135deg, #1f1215 0%, #2a1518 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pb85n1-jackpot-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(199, 5, 29, 0.4);
}

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

.jackpot-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.jackpot-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.vn82k6-screenshots {
    margin: 2rem 0;
}

.lk74n8-screenshot-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lk74n8-screenshot-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(199, 5, 29, 0.4);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem 1rem 1rem;
    color: #fff;
    transform: translateY(100%);
}

.lk74n8-screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.screenshot-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Tournaments Section */
.pw52n9-tournaments {
    margin: 2rem 0;
}

.km39s7-tournament-card {
    background: linear-gradient(135deg, #1f1215 0%, #2a1518 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.km39s7-tournament-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(199, 5, 29, 0.4);
}

.tournament-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tournament-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tournament-desc {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tournament-prize {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(199, 5, 29, 0.1);
    border-radius: 8px;
}

.prize-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.prize-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.timer-icon {
    font-size: 1.3rem;
}

/* App Info Section */
.qm74k9-appinfo {
    margin: 2rem 0;
}

.nx85k2-table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hs29k7-app-table {
    background: #1f1215;
    color: var(--text-color);
    margin-bottom: 0;
}

.hs29k7-app-table td,
.hs29k7-app-table th {
    padding: 1rem;
    border-color: rgba(224, 224, 224, 0.1);
    vertical-align: middle;
}

.hs29k7-app-table td:first-child {
    background: rgba(69, 11, 23, 0.3);
}

.dw83k5-download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.km91s4-btn-appstore,
.pl72k8-btn-playmarket {
    background: transparent;
    border: none;
    padding: 0;
}

.km91s4-btn-appstore:hover,
.pl72k8-btn-playmarket:hover {
    transform: scale(1.05);
}

/* Wheel Section */
.rx38k4-wheel {
    margin: 2rem 0;
}

.vb72k9-wheel-container {
    text-align: center;
    position: relative;
}

#wheelCanvas {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid var(--secondary-color);
}

.nk47s2-wheel-result {
    background: linear-gradient(135deg, #1f1215 0%, #2a1518 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid var(--secondary-color);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.result-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

/* FAQ Section */
.tv52k8-faq {
    margin: 2rem 0;
}

.kw83n6-faq-accordion .accordion-item {
    background: #1f1215;
    border: 1px solid rgba(224, 224, 224, 0.1);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.kw83n6-faq-accordion .accordion-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0f1f 100%);
    color: var(--text-color);
    font-weight: 600;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.kw83n6-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4082a 100%);
    color: #fff;
}

.kw83n6-faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.kw83n6-faq-accordion .accordion-body {
    background: #1a0e10;
    color: var(--text-color);
    padding: 1.5rem;
    line-height: 1.8;
}

.kw83n6-faq-accordion .accordion-body ul,
.kw83n6-faq-accordion .accordion-body ol {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

/* Footer */
.mt94k7-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0f1f 100%);
    margin-top: auto;
    border-top: 3px solid var(--secondary-color);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-desc {
    color: var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.lp58k3-footer-links {
    list-style: none;
    padding: 0;
}

.lp58k3-footer-links li {
    margin-bottom: 0.5rem;
}

.lp58k3-footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    display: inline-block;
}

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

.dk72m8-payment-icons,
.rb39k5-provider-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.dk72m8-payment-icons img,
.rb39k5-provider-icons img {
    opacity: 0.7;
}

.dk72m8-payment-icons img:hover,
.rb39k5-provider-icons img:hover {
    opacity: 1;
}

.footer-legal {
    color: var(--accent-color);
    font-size: 0.9rem;
    line-height: 1.8;
}

.copyright {
    font-weight: 600;
    color: var(--text-color);
}

/* Widget */
.zx47k9-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4082a 100%);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(199, 5, 29, 0.5);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.widget-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.widget-btn {
    background: #fff;
    color: var(--secondary-color);
    border: none;
    padding: 0.7rem 2rem;
    font-weight: 700;
    text-decoration: none;
}

.widget-btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Content Styles */
.vd84k1-content {
    margin: 2rem 0;
}

.lb56n9-textblock {
    background: #1f1215;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.yr38m4-h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lb56n9-textblock h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lb56n9-textblock h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.lb56n9-textblock p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--accent-color);
}

.lb56n9-textblock ul,
.lb56n9-textblock ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--accent-color);
}

.lb56n9-textblock li {
    margin-bottom: 0.5rem;
}

.lb56n9-textblock table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    background: rgba(69, 11, 23, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.lb56n9-textblock table th,
.lb56n9-textblock table td {
    padding: 1rem;
    border: 1px solid rgba(224, 224, 224, 0.1);
    text-align: left;
}

.lb56n9-textblock table th {
    background: var(--primary-color);
    color: var(--text-color);
    font-weight: 600;
}

.lb56n9-textblock table td {
    color: var(--accent-color);
}

.lb56n9-textblock strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .rk53m9-hero-title {
        font-size: 2.2rem;
    }

    .wn67k4-hero-subtitle {
        font-size: 1.1rem;
    }

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

    .yr38m4-h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .rk53m9-hero-title {
        font-size: 1.8rem;
    }

    .widget-content {
        justify-content: center;
        text-align: center;
    }

    .gx47n8-mobile-btns {
        gap: 0.5rem;
    }

    .jm29s7-btn-login,
    .cv85k3-btn-signup {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

.gh29x4-unused {
    display: none;
}

.zt82k5-legacy {
    opacity: 0;
}

.vm47n1-deprecated {
    visibility: hidden;
}

.kl93s8-old-version {
    pointer-events: none;
}

.container.lam {
    max-width: 1020px;
    margin: 0 auto;
    padding: 28px 16px;
    color: #f5f5f5;
}

.container.lam {
    background: linear-gradient(135deg, rgba(69, 11, 23, .22) 0%, rgba(17, 13, 14, .86) 55%, rgba(17, 13, 14, .92) 100%);
    border: 1px solid rgba(224, 224, 224, .10);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
}

.container.lam p {
    margin: 0 0 14px;
    color: rgba(245, 245, 245, .86);
    font-size: 16px;
    line-height: 1.85;
}

.container.lam h1,
.container.lam h2,
.container.lam h3 {
    margin: 22px 0 12px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: .2px;
}

.container.lam h1 {
    font-size: 34px;
    line-height: 1.15;
}

.container.lam h2 {
    font-size: 24px;
    position: relative;
    padding-left: 14px;
}

.container.lam h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: .25em;
    width: 4px;
    height: 1.05em;
    border-radius: 4px;
    background: linear-gradient(180deg, #c7051d, rgba(199, 5, 29, .2));
    box-shadow: 0 0 18px rgba(199, 5, 29, .45);
}

.container.lam h3 {
    font-size: 19px;
    color: rgba(255, 255, 255, .94);
}

.container.lam a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px solid rgba(224, 224, 224, .35);
}

.container.lam a:hover {
    color: #c7051d;
    border-color: rgba(199, 5, 29, .7);
}

.container.lam ul,
.container.lam ol {
    margin: 10px 0 18px;
    padding-left: 20px;
    color: rgba(245, 245, 245, .86);
}

.container.lam li {
    margin: 8px 0;
    line-height: 1.75;
}

.container.lam ul li::marker {
    color: rgba(199, 5, 29, .9);
}

.container.lam ol li::marker {
    color: rgba(199, 5, 29, .9);
    font-weight: 800;
}

.container.lam strong {
    color: #ffffff;
    font-weight: 800;
}

.container.lam > p:first-of-type {
    padding: 14px 16px;
    margin: 0 0 18px;
    border-radius: 14px;
    background: radial-gradient(140% 120% at 0% 0%, rgba(199, 5, 29, .20), rgba(17, 13, 14, .55));
    border: 1px solid rgba(199, 5, 29, .22);
}

.container.lam > p:nth-of-type(2) {
    padding: 14px 16px;
    margin: 0 0 18px;
    border-radius: 14px;
    background: rgba(224, 224, 224, .04);
    border: 1px solid rgba(224, 224, 224, .10);
}

.container.lam table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0 22px;
    background: rgba(17, 13, 14, .55);
    border: 1px solid rgba(224, 224, 224, .12);
    border-radius: 14px;
    overflow: hidden;
}

.container.lam table th,
.container.lam table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(224, 224, 224, .10);
    vertical-align: top;
}

.container.lam table tr:last-child td,
.container.lam table tr:last-child th {
    border-bottom: 0;
}

.container.lam table th {
    background: linear-gradient(135deg, rgba(69, 11, 23, .60), rgba(90, 15, 31, .45));
    color: #f5f5f5;
    font-weight: 800;
    letter-spacing: .2px;
}

.container.lam table td {
    color: rgba(245, 245, 245, .86);
}

.container.lam img {
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.container.lam .lam-cta {
    margin: 22px 0 8px;
    padding: 18px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(199, 5, 29, .22), rgba(69, 11, 23, .10));
    border: 1px solid rgba(199, 5, 29, .26);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.container.lam .lam-cta .lam-cta-title {
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.container.lam .lam-cta .lam-cta-text {
    margin: 6px 0 0;
    color: rgba(245, 245, 245, .82);
    font-size: 14px;
}

.container.lam .lam-cta .lam-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c7051d, #a0040f);
    color: #fff;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 12px 30px rgba(199, 5, 29, .35);
    white-space: nowrap;
}

.container.lam .lam-cta .lam-cta-btn:hover {
    opacity: .95;
}

@media (max-width: 768px) {
    .container.lam {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .container.lam p {
        font-size: 15px;
    }

    .container.lam h1 {
        font-size: 26px;
    }

    .container.lam h2 {
        font-size: 20px;
    }

    .container.lam h3 {
        font-size: 17px;
    }

    .container.lam table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .container.lam table th,
    .container.lam table td {
        white-space: nowrap;
        padding: 12px 14px;
    }

    .container.lam .lam-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .container.lam .lam-cta .lam-cta-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .container.lam {
        padding: 18px 10px;
    }

    .container.lam h1 {
        font-size: 24px;
    }

    .container.lam h2 {
        font-size: 19px;
    }
}

.qm74k9-appinfo {
    background: radial-gradient(120% 120% at 50% 0%, rgba(199, 5, 29, .15), rgba(17, 13, 14, .95));
    color: #f5f5f5;
}

.qm74k9-appinfo .container {
    max-width: 1100px;
}

.sk72m3-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jx39k7-subtitle {
    color: rgba(224, 224, 224, .8);
    font-size: 1.1rem;
}

.nx85k2-table-wrapper {
    background: linear-gradient(135deg, rgba(69, 11, 23, .35), rgba(17, 13, 14, .9));
    border-radius: 18px;
    padding: 6px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .6);
}

.hs29k7-app-table {
    margin: 0;
    background: transparent;
    color: #f5f5f5;
    border-collapse: separate;
    border-spacing: 0;
}

.hs29k7-app-table td {
    padding: 14px 18px;
    border: none;
    border-bottom: 1px solid rgba(224, 224, 224, .08);
    vertical-align: middle;
}

.hs29k7-app-table tr:last-child td {
    border-bottom: none;
}

.hs29k7-app-table td:first-child {
    width: 40%;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(69, 11, 23, .55), rgba(69, 11, 23, .15));
}

.hs29k7-app-table td:last-child {
    color: rgba(245, 245, 245, .85);
}

.qm74k9-appinfo h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
}

.dw83k5-download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    align-items: center;
}

.km91s4-btn-appstore,
.pl72k8-btn-playmarket {
    background: linear-gradient(135deg, rgba(224, 224, 224, .12), rgba(224, 224, 224, .05));
    border-radius: 14px;
    padding: 12px;
    box-shadow: inset 0 0 0 1px rgba(224, 224, 224, .15);
}

.km91s4-btn-appstore:hover,
.pl72k8-btn-playmarket:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(199, 5, 29, .45);
}

.cv85k3-btn-signup {
    background: linear-gradient(135deg, #c7051d, #a0040f);
    color: #fff;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 12px 34px rgba(199, 5, 29, .45);
}

.cv85k3-btn-signup:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 46px rgba(199, 5, 29, .65);
    color: #fff;
}

@media (max-width: 768px) {
    .sk72m3-section-title {
        font-size: 1.9rem;
    }

    .jx39k7-subtitle {
        font-size: 1rem;
    }

    .hs29k7-app-table td {
        padding: 12px 14px;
        font-size: .95rem;
    }

    .hs29k7-app-table td:first-child {
        width: 45%;
    }

    .dw83k5-download-buttons {
        gap: 10px;
    }

    .cv85k3-btn-signup {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .sk72m3-section-title {
        font-size: 1.6rem;
    }

    .hs29k7-app-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hs29k7-app-table td {
        white-space: nowrap;
    }
}

.hs29k7-app-table,
.hs29k7-app-table.table,
.hs29k7-app-table.table-bordered {
    background: transparent !important;
    border: none !important;
}

.hs29k7-app-table td,
.hs29k7-app-table th {
    background: transparent !important;
    color: #e0e0e0 !important;
    border-color: rgba(224, 224, 224, .12) !important;
}

.hs29k7-app-table tbody tr {
    background: transparent !important;
}

.hs29k7-app-table td:first-child {
    background: linear-gradient(135deg, rgba(69, 11, 23, .7), rgba(17, 13, 14, .2)) !important;
    color: #fff !important;
}

.hs29k7-app-table td:last-child {
    color: rgba(245, 245, 245, .85) !important;
}

.mn74j2-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(69, 11, 23, .92) 0%, rgba(26, 10, 13, .92) 45%, rgba(17, 13, 14, .92) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.kx92p5-navbar {
    padding: 12px 0;
}

.fp38q1-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fp38q1-logo img {
    width: 80px;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .35));
}

.fp38q1-logo:hover img {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 10px 24px rgba(199, 5, 29, .25));
}

.dw29k5-nav-menu .nav-link {
    color: rgba(245, 245, 245, .9) !important;
    font-weight: 700;
    letter-spacing: .2px;
    padding: 10px 14px !important;
    border-radius: 12px;
    position: relative;
}

.dw29k5-nav-menu .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-1px);
}

.dw29k5-nav-menu .nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(199, 5, 29, .25);
}

.qz61k4-online-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(245, 245, 245, .9);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .55);
    animation: pulse7k 1.6s infinite;
}

@keyframes pulse7k {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .55);
        opacity: 1;
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
        opacity: .9;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
        opacity: 1;
    }
}

.jm29s7-btn-login,
.cv85k3-btn-signup {
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    padding: 10px 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jm29s7-btn-login {
    background: transparent;
    border: 1px solid rgba(224, 224, 224, .45);
    color: rgba(245, 245, 245, .92);
}

.jm29s7-btn-login:hover {
    background: rgba(224, 224, 224, .10);
    border-color: rgba(224, 224, 224, .75);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.cv85k3-btn-signup {
    background: linear-gradient(135deg, #c7051d 0%, #a0040f 100%);
    border: 0;
    color: #fff;
    box-shadow: 0 10px 24px rgba(199, 5, 29, .35);
}

.cv85k3-btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(199, 5, 29, .45);
    color: #fff;
}

.ls42n9-burger {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .15);
    padding: 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.ls42n9-burger:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .22);
    transform: translateY(-1px);
}

.ls42n9-burger span {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(245, 245, 245, .9);
    display: block;
}

.gt83m6-nav-collapse {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

@media (max-width: 991.98px) {
    .mn74j2-header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .kx92p5-navbar {
        padding: 10px 0;
    }

    .gx47n8-mobile-btns {
        gap: 8px;
    }

    .qz61k4-online-count {
        padding: 7px 10px;
        font-size: 13px;
    }

    .jm29s7-btn-login,
    .cv85k3-btn-signup {
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 11px;
    }

    .fp38q1-logo img {
        width: 70px;
    }

    .gt83m6-nav-collapse {
        margin-top: 10px;
        padding-top: 10px;
        background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, 0) 100%);
        border-radius: 14px;
    }

    .dw29k5-nav-menu {
        padding: 10px 0;
    }

    .dw29k5-nav-menu .nav-link {
        padding: 12px 12px !important;
        border-radius: 12px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .06);
        margin: 6px 0;
    }
}

@media (max-width: 575.98px) {
    .qz61k4-online-count {
        display: none;
    }

    .jm29s7-btn-login,
    .cv85k3-btn-signup {
        padding: 8px 10px;
        font-size: 12.5px;
    }

    .ls42n9-burger {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }
}

.vn82k6-screenshots {
    position: relative;
    background: radial-gradient(1200px 500px at 20% 0%, rgba(199, 5, 29, .18) 0%, rgba(17, 13, 14, 0) 60%),
    radial-gradient(900px 420px at 90% 30%, rgba(69, 11, 23, .22) 0%, rgba(17, 13, 14, 0) 55%);
}

.vn82k6-screenshots .container {
    position: relative;
}

.lk74n8-screenshot-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .02) 100%);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    transform: translateZ(0);
}

.lk74n8-screenshot-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 5, 29, .45);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
}

.lk74n8-screenshot-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.02);
}

.lk74n8-screenshot-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.12) contrast(1.06);
}

.lk74n8-screenshot-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 260px at 50% 0%, rgba(199, 5, 29, .18) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .25) 70%, rgba(0, 0, 0, .55) 100%);
    opacity: .9;
    pointer-events: none;
    z-index: 1;
}

.screenshot-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .45) 35%, rgba(0, 0, 0, .78) 100%);
    transform: translateY(0);
}

.screenshot-overlay h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: rgba(255, 255, 255, .95);
    letter-spacing: .2px;
}

.screenshot-overlay p {
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(224, 224, 224, .86);
    line-height: 1.35;
}

@media (min-width: 768px) {
    .screenshot-overlay {
        transform: translateY(18px);
        opacity: .0;
    }

    .lk74n8-screenshot-card:hover .screenshot-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}

#screenshotsCarousel {
    border-radius: 18px;
    overflow: hidden;
}

#screenshotsCarousel .carousel-inner {
    border-radius: 18px;
}

#screenshotsCarousel .carousel-item {
    padding: 0;
}

#screenshotsCarousel .carousel-control-prev,
#screenshotsCarousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: rgba(0, 0, 0, .20);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

#screenshotsCarousel .carousel-control-prev {
    left: 10px;
}

#screenshotsCarousel .carousel-control-next {
    right: 10px;
}

#screenshotsCarousel .carousel-control-prev-icon,
#screenshotsCarousel .carousel-control-next-icon {
    filter: brightness(0) invert(1);
    width: 18px;
    height: 18px;
}

#screenshotsCarousel .carousel-control-prev:active,
#screenshotsCarousel .carousel-control-next:active {
    transform: translateY(-50%) scale(.98);
}

@media (max-width: 767.98px) {
    .vn82k6-screenshots {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .lk74n8-screenshot-card {
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
    }

    .lk74n8-screenshot-card img {
        height: 360px;
        transform: none;
    }

    .lk74n8-screenshot-card:hover {
        transform: none;
    }

    .screenshot-overlay {
        padding: 16px 16px 14px;
    }

    .screenshot-overlay h4 {
        font-size: 16px;
    }

    .screenshot-overlay p {
        font-size: 13px;
    }

    #screenshotsCarousel .carousel-control-prev,
    #screenshotsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .lk74n8-screenshot-card img {
        height: 320px;
    }

    #screenshotsCarousel .carousel-control-prev {
        left: 8px;
    }

    #screenshotsCarousel .carousel-control-next {
        right: 8px;
    }
}
