:root {
    --neon-bg: #020617;
    --neon-bg-alt: #030712;
    --neon-panel: #02081f;
    --neon-panel-soft: #020b2a;
    --neon-accent: #22d3ee;
    --neon-accent-strong: #38bdf8;
    --neon-magenta: #e879f9;
    --neon-lime: #22c55e;
    --neon-danger: #fb7185;
    --neon-border: rgba(148, 163, 184, 0.5);
    --neon-border-soft: rgba(148, 163, 184, 0.3);
    --neon-text: #e5e7eb;
    --neon-muted: #9ca3af;
    --neon-soft: #6b7280;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-hard: 0 20px 50px rgba(15, 23, 42, 0.95);
    --shadow-soft: 0 16px 36px rgba(15, 23, 42, 0.8);
    --shadow-glow-blue: 0 0 25px rgba(56, 189, 248, 0.45);
    --shadow-glow-magenta: 0 0 28px rgba(232, 121, 249, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

section {
    padding: 40px 0
}

body.neon-body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 0 0, #0f172a 0, transparent 55%),
        radial-gradient(circle at 100% 0, #1e293b 0, transparent 60%),
        radial-gradient(circle at 50% 120%, #020617 0, #000 65%);
    color: var(--neon-text);
}

.neon-shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.6rem;
}

.neon-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.9);
}

.neon-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.neon-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: inherit;
}

.neon-brand img {
    width: 32px;
}

.neon-logo {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background:
        conic-gradient(from 180deg, #22d3ee, #e879f9, #22c55e, #22d3ee);
    position: relative;
    box-shadow:
        0 0 0 2px rgba(15, 23, 42, 1),
        var(--shadow-glow-blue),
        var(--shadow-glow-magenta);
}

.neon-logo::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: inherit;
    background: radial-gradient(circle at top, #0b1120 0, #000 70%);
}

.neon-brand-text {
    display: flex;
    flex-direction: column;
}

.neon-brand-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.neon-brand-sub {
    font-size: 0.78rem;
    color: var(--neon-soft);
}

.neon-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    font-size: 0.9rem;
}

.neon-nav a {
    position: relative;
    text-decoration: none;
    color: var(--neon-muted);
    padding-bottom: 0.15rem;
    transition: color 0.16s ease;
}

.neon-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.12rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--neon-accent), var(--neon-magenta));
    transition: width 0.16s ease;
}

.neon-nav a:hover {
    color: var(--neon-text);
}

.neon-nav a:hover::after {
    width: 100%;
}

.neon-pill {
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.25);
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.3), transparent 60%),
        rgba(15, 23, 42, 0.95);
    color: #f9fafb !important;
}

.neon-section {
    padding: 4.2rem 0;
}

.neon-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.7rem;
}

.neon-section-head h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    letter-spacing: 0.04em;
}

.neon-section-head p {
    margin: 0;
    font-size: 0.96rem;
    color: var(--neon-muted);
    line-height: 1.7;
}

.neon-hero {
    position: relative;
    padding: 4.3rem 0 4.6rem;
    overflow: hidden;
}

.neon-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.35), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(232, 121, 249, 0.35), transparent 55%),
        radial-gradient(circle at 50% 130%, rgba(34, 197, 94, 0.35), transparent 55%),
        linear-gradient(to bottom, #020617, #000);
    opacity: 0.95;
    pointer-events: none;
}

.neon-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 2.6rem;
    align-items: flex-start;
}

.neon-hero-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 4vw, 3rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.neon-hero-copy h1 span {
    color: var(--neon-accent);
}

.neon-hero-copy p {
    margin: 0 0 1.1rem;
    font-size: 0.96rem;
    color: #e5e7eb;
    max-width: 36rem;
    line-height: 1.7;
}

.neon-hero-bullets {
    margin: 0 0 1rem;
    padding-left: 1rem;
    color: var(--neon-muted);
    font-size: 0.9rem;
}

.neon-hero-bullets li + li {
    margin-top: 0.25rem;
}

.neon-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.neon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.16s ease,
        border-color 0.16s ease,
        color 0.16s ease,
        transform 0.12s ease,
        box-shadow 0.12s ease;
}

.neon-btn-main {
    background: radial-gradient(circle at top left, var(--neon-accent-strong), var(--neon-magenta));
    color: #020617;
    box-shadow: var(--shadow-glow-blue), var(--shadow-hard);
}

.neon-btn-main:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow-magenta), 0 24px 55px rgba(15, 23, 42, 1);
}

.neon-btn-ghost {
    background: rgba(15, 23, 42, 0.7);
    border-color: var(--neon-border);
    color: var(--neon-text);
}

.neon-btn-ghost:hover {
    border-color: var(--neon-accent);
    background: rgba(15, 23, 42, 0.9);
}

.neon-btn-block {
    width: 100%;
}

.neon-hero-disclaimer {
    margin: 0;
    font-size: 0.78rem;
    color: #c4d3ff;
    max-width: 34rem;
}

.neon-hero-panel {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
    border-radius: var(--radius-xl);
    border: 1px solid var(--neon-border);
    box-shadow: var(--shadow-soft), var(--shadow-glow-blue);
    padding: 1.2rem 1.3rem 1.15rem;
}

.neon-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.neon-panel-pill {
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.65);
    color: #ccfbf1;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.neon-panel-status {
    font-size: 0.78rem;
    color: #bbf7d0;
}

.neon-panel-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}

.neon-panel-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 0.55rem 0.7rem;
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.18), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(232, 121, 249, 0.18), transparent 60%),
                rgba(15, 23, 42, 0.98);
}

.neon-panel-rank {
    font-size: 0.85rem;
    color: var(--neon-accent);
}

.neon-panel-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.neon-panel-meta {
    display: flex;
    flex-direction: column;
}

.neon-panel-name {
    font-weight: 600;
    font-size: 0.96rem;
}

.neon-panel-tag {
    font-size: 0.78rem;
    color: var(--neon-muted);
}

.neon-panel-score {
    text-align: right;
}

.neon-panel-score-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-accent);
}

.neon-panel-score-label {
    font-size: 0.78rem;
    color: var(--neon-soft);
}

.neon-panel-points {
    margin: 0.45rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    color: var(--neon-muted);
}

.neon-panel-points li + li {
    margin-top: 0.2rem;
}

.neon-panel-footnote {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    color: var(--neon-soft);
}

.neon-strip {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.neon-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    padding: 1.3rem 0;
}

.neon-strip-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 0.7rem 0.9rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
}

.neon-strip-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--neon-accent);
    margin-bottom: 0.25rem;
}

.neon-strip-text {
    font-size: 0.85rem;
    color: var(--neon-muted);
}

.neon-ranking {
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.16), transparent 60%),
                radial-gradient(circle at 100% 0, rgba(232, 121, 249, 0.18), transparent 60%),
                #020617;
}

.neon-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.neon-card {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neon-border);
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 60%),
        radial-gradient(circle at bottom right, rgba(232, 121, 249, 0.2), transparent 60%),
        rgba(15, 23, 42, 0.98);
    padding: 1.1rem 1.1rem 1.15rem;
    box-shadow: var(--shadow-soft);
}

.neon-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 100% 0, rgba(34, 197, 94, 0.3), transparent 65%);
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.neon-card:hover::after {
    opacity: 1;
}

.neon-card-ribbon {
    position: absolute;
    top: -13px;
    left: 1.1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.78rem;
    color: var(--neon-accent);
    z-index: 1;
}

.neon-card-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1.4fr) auto;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.7rem;
}

.neon-card-logo {
    border: 1px solid #fff4;
    width: 128px;
    height: 56px;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f9fafb;
    background:#0b112088;
    box-shadow: var(--shadow-glow-blue);
}

.neon-card-head h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.neon-card-head p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neon-muted);
}

.neon-card-score {
    text-align: right;
}

.neon-card-score-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-accent);
}

.neon-card-score-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--neon-soft);
}

.neon-card-body {
    margin-top: 0.4rem;
}

.neon-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
}

.neon-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
}

.neon-chip-green {
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.9);
    color: #bbf7d0;
}

.neon-chip-outline {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--neon-muted);
}

.neon-card-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    font-size: 0.86rem;
    color: var(--neon-muted);
}

.neon-card-cols h4 {
    margin: 0 0 0.3rem;
    font-size: 0.9rem;
    color: var(--neon-text);
}

.neon-card-cols p {
    margin: 0;
    line-height: 1.6;
}

.neon-card-foot {
    margin-top: 0.8rem;
}

.neon-card-note {
    margin: 0.4rem 0 0;
    font-size: 0.78rem;
    color: var(--neon-soft);
}

.neon-compare {
    background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.96), #000);
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.95);
}

.neon-compare-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(1, minmax(0, 1fr));
    gap: 1.3rem;
}

.neon-compare-col {
    border-radius: var(--radius-lg);
    border: 1px solid var(--neon-border);
    padding: 1rem 1rem 0.9rem;
    background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 60%),
                rgba(15, 23, 42, 0.98);
    font-size: 0.86rem;
}

.neon-compare-col h3 {
    margin: 0 0 0.4rem;
    font-size: 0.96rem;
}

.neon-compare-col ul {
    margin: 0.2rem 0 0;
    padding-left: 1rem;
    color: var(--neon-muted);
}

.neon-compare-col ul li + li {
    margin-top: 0.25rem;
}

.neon-compare-criteria h3 {
    color: var(--neon-accent);
}

.neon-compare-note {
    margin: 0.7rem 0 0;
    font-size: 0.8rem;
    color: var(--neon-soft);
}

.neon-method {
    background: linear-gradient(to bottom, #020617, #02081f);
}

.neon-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 1px dashed rgba(148, 163, 184, 0.7);
    margin-left: 0.8rem;
}

.neon-timeline-step {
    position: relative;
    padding-left: 1.6rem;
    padding-bottom: 1.5rem;
}

.neon-timeline-step:last-child {
    padding-bottom: 0;
}

.neon-timeline-dot {
    position: absolute;
    left: -0.3rem;
    top: 0.15rem;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f9fafb 0, #22d3ee 40%, #0f172a 100%);
    box-shadow: var(--shadow-glow-blue);
}

.neon-timeline-content h3 {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
}

.neon-timeline-content p {
    margin: 0;
    font-size: 0.87rem;
    color: var(--neon-muted);
    line-height: 1.7;
}

.neon-guides {
    background: radial-gradient(circle at 0 50%, rgba(56, 189, 248, 0.2), transparent 60%),
                radial-gradient(circle at 100% 50%, rgba(232, 121, 249, 0.2), transparent 60%),
                #020617;
}

.neon-guides-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
}

.neon-guide-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--neon-border-soft);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
    padding: 1rem 1rem 0.9rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.neon-guide-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0, rgba(34, 211, 238, 0.22), transparent 60%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.neon-guide-card:hover::before {
    opacity: 1;
}

.neon-guide-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.96rem;
}

.neon-guide-card p {
    margin: 0 0 0.7rem;
    font-size: 0.86rem;
    color: var(--neon-muted);
    line-height: 1.7;
}

.neon-guide-link {
    font-size: 0.82rem;
    color: var(--neon-accent);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.1rem;
}

.neon-guide-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.04rem;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--neon-accent), transparent);
    transform-origin: left;
    transform: scaleX(0.3);
    transition: transform 0.18s ease;
}

.neon-guide-card:hover .neon-guide-link::after {
    transform: scaleX(1);
}

.neon-faq {
    background: linear-gradient(to bottom, #020617, #000);
}

.neon-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.neon-faq-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--neon-border);
    background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 60%),
                rgba(15, 23, 42, 0.98);
    padding: 0.7rem 0.9rem;
}

.neon-faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 500;
    position: relative;
    padding-right: 1rem;
}

.neon-faq-item summary::-webkit-details-marker {
    display: none;
}

.neon-faq-item summary::after {
    content: "+";

    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.9rem;
    color: var(--neon-accent);
}

.neon-faq-item[open] summary::after {
    content: "–";
}

.neon-faq-item p {
    margin: 0.5rem 0 0;
    font-size: 0.86rem;
    color: var(--neon-muted);
    line-height: 1.7;
}

.neon-responsible {
    background: radial-gradient(circle at 0 100%, rgba(34, 211, 238, 0.2), transparent 60%),
                radial-gradient(circle at 100% 0, rgba(248, 113, 113, 0.32), transparent 60%),
                #02081f;
}

.neon-resp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 1.6rem;
    align-items: flex-start;
}

.neon-resp-copy h2 {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
}

.neon-resp-copy p {
    margin: 0 0 0.8rem;
    font-size: 0.9rem;
    color: var(--neon-muted);
    line-height: 1.7;
}

.neon-resp-copy ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    color: var(--neon-text);
}

.neon-resp-copy ul li + li {
    margin-top: 0.35rem;
}

.neon-resp-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
}

.neon-resp-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--neon-border);
    background: rgba(15, 23, 42, 0.98);
    padding: 0.9rem 0.95rem;
    font-size: 0.86rem;
    color: var(--neon-muted);
}

.neon-resp-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    color: var(--neon-text);
}

.neon-resp-18 {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: radial-gradient(circle at left, rgba(248, 113, 113, 0.4), transparent 60%),
                #111827;
}

.neon-resp-18-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 2px solid #fecaca;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fee2e2;
    font-weight: 700;
    font-size: 0.95rem;
}

.neon-resp-18-text {
    font-size: 0.85rem;
    color: #fee2e2;
}

.neon-footer {
    background: #020617;
    border-top: 1px solid rgba(15, 23, 42, 0.95);
    padding: 2.7rem 0 2rem;
    box-shadow: 0 -12px 35px rgba(15, 23, 42, 1);
}

.neon-footer-main {
    display: flex;
    justify-content: space-between;
    gap: 1.8rem;
    align-items: flex-start;
}

.neon-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.neon-footer-brand img {
    width: 32px;
}
.neon-footer-brand {
    color: #fff;
    text-decoration: none;
}

.neon-footer-sub {
    font-size: 0.82rem;
    color: var(--neon-soft);
}

.neon-footer-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    font-size: 0.85rem;
}

.neon-footer-cols h4 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
}

.neon-footer-cols ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.neon-footer-cols a {
    text-decoration: none;
    color: var(--neon-soft);
    transition: color 0.15s ease;
}

.neon-footer-cols a:hover {
    color: var(--neon-accent);
}

.neon-footer-bottom {
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 41, 55, 0.95);
    text-align: center;
    font-size: 0.8rem;
    color: var(--neon-soft);
}

.neon-footer-note {
    margin-top: 0.35rem;
}

 .tnc-wrapper-casinolatinoluck {
     position: relative;
     font-family: "Inter", Arial, sans-serif;
     background: #0d0f17;
     color: #f1f1f1;
     padding: 40px 20px;
     border-radius: 16px;
     max-width: 900px;
     margin: 40px auto;
     box-shadow: 0 0 40px rgba(0,0,0,0.35);
 }

.tnc-wrapper-casinolatinoluck h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffb347, #ffdd7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tnc-wrapper-casinolatinoluck h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ffdd7f;
}

.tnc-wrapper-casinolatinoluck p {
    line-height: 1.65;
    margin-bottom: 16px;
    color: #d7d7d7;
}

.tnc-wrapper-casinolatinoluck ul {
    margin: 16px 0;
    padding-left: 20px;
}

.tnc-wrapper-casinolatinoluck li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.tnc-wrapper-casinolatinoluck .update-date {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}
.logo-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1120px;
    margin: 25px auto;
    justify-content: center;
}
.logo-footer a {
    height: 48px;

}
.logo-footer a img {
    height: 100%;
    object-fit: contain;
}
.feedback-wrapper-casinolatinoluck {
    position: relative;
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #0d0f17;
    color: #f1f1f1;
    border-radius: 16px;
    font-family: "Inter", Arial, sans-serif;
    box-shadow: 0 0 40px rgba(0,0,0,0.35);
}

.feedback-wrapper-casinolatinoluck h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffb347, #ffdd7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feedback-form-casinolatinoluck label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #ffdd7f;
    font-size: 14px;
}

.feedback-form-casinolatinoluck input,
.feedback-form-casinolatinoluck textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #272b36;
    background: #141820;
    color: #fff;
    font-size: 15px;
    transition: all .25s ease;
    outline: none;
    margin-bottom: 18px;
}

.feedback-form-casinolatinoluck input:focus,
.feedback-form-casinolatinoluck textarea:focus {
    border-color: #ffb347;
    box-shadow: 0 0 10px rgba(255, 179, 71, 0.4);
}

.feedback-form-casinolatinoluck textarea {
    resize: none;
    min-height: 140px;
}

.feedback-btn-casinolatinoluck {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #ffb347, #ffdd7f);
    color: #000;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .25s ease, transform .2s ease;
}

.feedback-btn-casinolatinoluck:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.feedback-btn-casinolatinoluck:active {
    transform: translateY(1px);
}
.agegate-overlay-cl {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 15, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.agegate-overlay-cl.hidden {
    display: none !important;
}

.agegate-modal-cl {
    max-width: 420px;
    width: 100%;
    background: #0d0f17;
    border-radius: 18px;
    padding: 28px 24px 24px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    font-family: "Inter", Arial, sans-serif;
    color: #f5f5f5;
    text-align: center;
    border: 1px solid rgba(255, 221, 127, 0.25);
}

.agegate-badge-cl {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 2px solid #ff4b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 800;
    font-size: 22px;
    color: #ff4b4b;
}

.agegate-title-cl {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffb347, #ffdd7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.agegate-text-cl {
    font-size: 14px;
    line-height: 1.6;
    color: #d2d2d2;
    margin-bottom: 18px;
}

.agegate-warning-cl {
    font-size: 12px;
    color: #ffb347;
    margin-bottom: 20px;
}

.agegate-buttons-cl {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agegate-btn-primary-cl,
.agegate-btn-secondary-cl {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
}

.agegate-btn-primary-cl {
    background: linear-gradient(90deg, #ffb347, #ffdd7f);
    color: #151515;
}

.agegate-btn-primary-cl:hover {
    transform: translateY(-1px);
    opacity: .9;
}

.agegate-btn-secondary-cl {
    background: transparent;
    color: #aaaaaa;
    border: 1px solid #333949;
}

.agegate-btn-secondary-cl:hover {
    border-color: #ff4b4b;
    color: #ff4b4b;
}

@media (max-width: 480px) {
    .agegate-modal-cl {
        margin: 0 16px;
        padding: 24px 18px 20px;
    }

    .agegate-title-cl {
        font-size: 20px;
    }
}
@media(max-width: 600px) {
    .feedback-wrapper-casinolatinoluck {
        padding: 30px 20px;
    }
    .feedback-wrapper-casinolatinoluck h2 {
        font-size: 26px;
    }
}
@media(max-width: 600px) {
    .tnc-wrapper-casinolatinoluck {
        padding: 30px 18px;
    }

    .tnc-wrapper-casinolatinoluck h1 {
        font-size: 28px;
    }

    .tnc-wrapper-casinolatinoluck h2 {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .neon-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .neon-hero-panel {
        max-width: 420px;
        margin-top: 1.2rem;
    }
    .neon-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .neon-compare-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .neon-guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .neon-resp-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .neon-footer-main {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .neon-header-inner {
        gap: 0.8rem;
    }
    .neon-nav {
        display: none;
    }
    .neon-strip-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .neon-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .neon-card-cols {
        grid-template-columns: minmax(0, 1fr);
    }
    .neon-compare-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .neon-guides-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
