*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
:root {
    --clg-accent: #FFC701;
    --clg-accent-dark: #e6b200;
    --clg-navy: #050a30;
    --clg-light-blue: #54CBFF;
    --clg-bg: #0a0a0a;
    --clg-bg-alt: #111111;
    --clg-bg-card: #181818;
    --clg-text: #f0f0f0;
    --clg-text-muted: #9ca3af;
    --clg-border: #2a2a2a;
    --clg-radius: 14px;
    --clg-radius-sm: 8px;
    --clg-shadow: rgba(255, 199, 1, 0.15);
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--clg-bg);
    color: var(--clg-text);
    line-height: 1.65;
    overflow-x: hidden;
}
p {
    font-size: 16px;
    color: var(--clg-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}
p:last-child {
    margin-bottom: 0;
}
strong {
    color: var(--clg-text);
    font-weight: 600;
}
a {
    color: var(--clg-accent);
    text-decoration: none;
    transition: opacity 0.2s;
}
a:hover {
    opacity: 0.8;
}
ul {
    list-style: none;
}
table {
    width: 100%;
    border-collapse: collapse;
}

.clg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.clg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.clg-btn-primary {
    background: var(--clg-accent);
    color: #000000;
}
.clg-btn-primary:hover {
    background: var(--clg-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--clg-shadow);
    opacity: 1;
}
.clg-btn-header {
    background: var(--clg-accent);
    color: #000000;
    padding: 9px 20px;
    font-size: 13px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.25s;
}
.clg-btn-header:hover {
    background: var(--clg-accent-dark);
    opacity: 1;
}
.clg-btn-lg {
    padding: 15px 42px;
    font-size: 15px;
}
.clg-btn-xl {
    padding: 18px 56px;
    font-size: 17px;
}

.clg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clg-border);
    transition: box-shadow 0.3s;
}
.clg-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.clg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}
.clg-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--clg-text);
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.2;
    flex-shrink: 0;
}
.clg-brand i {
    font-size: 24px;
    color: var(--clg-accent);
}
.clg-brand:hover {
    opacity: 1;
    color: var(--clg-text);
}
.clg-nav {
    display: none;
    align-items: center;
    gap: 6px;
}
.clg-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--clg-text-muted);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.clg-nav-link:hover {
    color: var(--clg-text);
    background: rgba(255, 255, 255, 0.07);
    opacity: 1;
}
.clg-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.clg-burger {
    background: none;
    border: 1px solid var(--clg-border);
    color: var(--clg-text);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.clg-burger:hover {
    background: rgba(255, 255, 255, 0.07);
}

.clg-mobile-menu {
    display: none;
    background: #101010;
    border-bottom: 1px solid var(--clg-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.clg-mobile-menu.open {
    max-height: 800px;
}
.clg-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
}
.clg-mobile-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--clg-text-muted);
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.clg-mobile-link:hover {
    color: var(--clg-text);
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
}
.clg-mobile-cta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clg-accent);
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    padding: 13px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.25s;
}
.clg-mobile-cta:hover {
    background: var(--clg-accent-dark);
    opacity: 1;
}

.clg-hero {
    padding: 120px 0 80px;
    background: linear-gradient(160deg, #0a0a0a 60%, #111108 100%);
    position: relative;
    overflow: hidden;
}
.clg-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 199, 1, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.clg-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.clg-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--clg-text);
    margin-bottom: 20px;
}
.clg-hero-title span {
    color: var(--clg-accent);
}
.clg-hero-desc {
    font-size: 17px;
    color: var(--clg-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}
.clg-promo-widget {
    background: var(--clg-bg-card);
    border: 1px solid rgba(255, 199, 1, 0.25);
    border-radius: var(--clg-radius);
    padding: 24px;
    margin-bottom: 28px;
}
.clg-promo-label-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.clg-promo-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 199, 1, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clg-accent);
    font-size: 16px;
}
.clg-promo-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--clg-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.clg-promo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.clg-promo-display {
    flex: 1;
    background: rgba(255, 199, 1, 0.08);
    border: 1.5px dashed rgba(255, 199, 1, 0.5);
    border-radius: var(--clg-radius-sm);
    padding: 14px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--clg-accent);
    text-align: center;
}
.clg-promo-copy {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--clg-accent);
    color: #000000;
    border: none;
    border-radius: var(--clg-radius-sm);
    padding: 14px 20px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.clg-promo-copy:hover {
    background: var(--clg-accent-dark);
    transform: translateY(-1px);
}
.clg-promo-copy svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.clg-promo-copy .icon-copied {
    display: none;
}
.clg-promo-copy.copied .icon-copy {
    display: none;
}
.clg-promo-copy.copied .icon-copied {
    display: block;
}
.clg-hero-perks {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.clg-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clg-border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clg-text);
}
.clg-perk i {
    color: var(--clg-accent);
    font-size: 14px;
}
.clg-hero-visual {
    display: flex;
    justify-content: center;
}
.clg-hero-visual a {
    opacity: 1;
}
.clg-hero-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--clg-radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 199, 1, 0.08);
    transition: transform 0.3s ease;
}
.clg-hero-visual img:hover {
    transform: scale(1.02);
}

.clg-section {
    padding: 80px 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}
.clg-section-alt {
    background: var(--clg-bg-alt);
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}
.clg-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--clg-text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.clg-title-center {
    text-align: center;
}
.clg-section-lead {
    font-size: 17px;
    color: var(--clg-text-muted);
    max-width: 760px;
    margin-bottom: 40px;
    line-height: 1.75;
}
.clg-sub-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--clg-text);
    margin-bottom: 12px;
    margin-top: 28px;
    letter-spacing: 0.01em;
}
.clg-sub-title:first-child {
    margin-top: 0;
}

.clg-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
.clg-step {
    background: var(--clg-bg-card);
    border: 1px solid var(--clg-border);
    border-radius: var(--clg-radius);
    padding: 28px;
    position: relative;
    contain: layout style paint;
    transition: border-color 0.25s;
}
.clg-step:hover {
    border-color: rgba(255, 199, 1, 0.3);
}
.clg-step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: rgba(255, 199, 1, 0.1);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}
.clg-step-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 199, 1, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--clg-accent);
    margin-bottom: 16px;
}
.clg-step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--clg-text);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.clg-step p {
    font-size: 15px;
    margin-bottom: 0;
}

.clg-perks-banner {
    background: linear-gradient(135deg, rgba(255, 199, 1, 0.08) 0%, rgba(255, 199, 1, 0.03) 100%);
    border: 1px solid rgba(255, 199, 1, 0.2);
    border-radius: var(--clg-radius);
    padding: 32px;
}
.clg-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.clg-perk-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.clg-perk-item i {
    font-size: 22px;
    color: var(--clg-accent);
    margin-bottom: 6px;
}
.clg-perk-item strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--clg-text);
}
.clg-perk-item span {
    font-size: 13px;
    color: var(--clg-text-muted);
}

.clg-platform-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.clg-platform-image img {
    width: 100%;
    height: auto;
    border-radius: var(--clg-radius);
    border: 1px solid var(--clg-border);
}

.clg-games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.clg-game-card {
    background: var(--clg-bg-card);
    border: 1px solid var(--clg-border);
    border-radius: var(--clg-radius);
    padding: 24px;
    contain: layout style paint;
    transition: border-color 0.25s, transform 0.25s;
}
.clg-game-card:hover {
    border-color: rgba(255, 199, 1, 0.3);
    transform: translateY(-3px);
}
.clg-game-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 199, 1, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--clg-accent);
    margin-bottom: 14px;
}
.clg-game-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--clg-text);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.clg-game-desc {
    font-size: 14px;
    color: var(--clg-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}
.clg-games-visual {
    text-align: center;
}
.clg-games-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--clg-radius);
    border: 1px solid var(--clg-border);
}

.clg-pros-cons-table-wrap {
    margin-bottom: 48px;
    border-radius: var(--clg-radius);
    overflow: hidden;
    border: 1px solid var(--clg-border);
}
.clg-pros-table {
    width: 100%;
    border-collapse: collapse;
}
.clg-pros-table thead tr {
    background: var(--clg-bg-card);
}
.clg-pros-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--clg-text);
    border-bottom: 1px solid var(--clg-border);
}
.clg-pros-table thead th:first-child i {
    color: #22c55e;
}
.clg-pros-table thead th:last-child i {
    color: #f59e0b;
}
.clg-pros-table tbody td {
    padding: 14px 20px;
    font-size: 15px;
    color: var(--clg-text-muted);
    border-bottom: 1px solid rgba(42, 42, 42, 0.7);
    vertical-align: middle;
}
.clg-pros-table tbody tr:last-child td {
    border-bottom: none;
}
.clg-pros-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.clg-cta-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    background: linear-gradient(135deg, rgba(255, 199, 1, 0.08) 0%, rgba(255, 199, 1, 0.03) 100%);
    border: 1px solid rgba(255, 199, 1, 0.25);
    border-radius: var(--clg-radius);
    padding: 36px;
    align-items: center;
}
.clg-cta-banner-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--clg-text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.clg-cta-banner-content p {
    margin-bottom: 24px;
}
.clg-cta-banner-image img {
    width: 100%;
    height: auto;
    border-radius: var(--clg-radius-sm);
}

.clg-faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.clg-faq-item {
    background: var(--clg-bg-card);
    border: 1px solid var(--clg-border);
    border-radius: var(--clg-radius);
    overflow: hidden;
    contain: layout style paint;
    content-visibility: auto;
    contain-intrinsic-size: 0 70px;
}
.clg-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--clg-text);
    user-select: none;
    transition: background 0.2s;
}
.clg-faq-q:hover {
    background: rgba(255, 255, 255, 0.03);
}
.clg-faq-chevron {
    color: var(--clg-accent);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.clg-faq-item.open .clg-faq-chevron {
    transform: rotate(180deg);
}
.clg-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.clg-faq-item.open .clg-faq-a {
    max-height: 600px;
}
.clg-faq-a > div {
    padding: 0 24px 20px;
    border-top: 1px solid var(--clg-border);
}
.clg-faq-a p {
    font-size: 15px;
    padding-top: 16px;
}

.clg-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.clg-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--clg-text-muted);
}
.clg-list li i {
    color: var(--clg-accent);
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}

.clg-mini-table {
    margin-top: 16px;
    border-radius: var(--clg-radius-sm);
    overflow: hidden;
    border: 1px solid var(--clg-border);
}
.clg-mini-table thead th {
    background: rgba(255, 199, 1, 0.08);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clg-accent);
    text-align: left;
}
.clg-mini-table tbody td {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--clg-text-muted);
    border-top: 1px solid var(--clg-border);
}

.clg-finale {
    padding: 100px 0;
    background: linear-gradient(160deg, #0d0d00 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}
.clg-finale::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 199, 1, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.clg-finale-inner {
    position: relative;
}
.clg-finale-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--clg-text);
    margin-bottom: 20px;
    line-height: 1.05;
    letter-spacing: -0.01em;
}
.clg-finale p {
    font-size: 17px;
    color: var(--clg-text-muted);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.75;
}
.clg-finale-code {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--clg-accent);
    letter-spacing: 0.15em;
    background: rgba(255, 199, 1, 0.08);
    border: 2px dashed rgba(255, 199, 1, 0.4);
    border-radius: var(--clg-radius);
    padding: 12px 40px;
    margin-bottom: 32px;
}

.clg-footer {
    background: #060606;
    border-top: 1px solid var(--clg-border);
    padding: 60px 0 0;
}
.clg-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.clg-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.clg-footer-desc {
    font-size: 14px;
    color: var(--clg-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}
.clg-footer-social {
    display: flex;
    gap: 10px;
}
.clg-footer-social a {
    width: 38px;
    height: 38px;
    background: var(--clg-bg-card);
    border: 1px solid var(--clg-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clg-text-muted);
    font-size: 16px;
    transition: color 0.2s, border-color 0.2s;
    opacity: 1;
}
.clg-footer-social a:hover {
    color: var(--clg-accent);
    border-color: rgba(255, 199, 1, 0.4);
}
.clg-footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--clg-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.clg-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.clg-footer-col ul li a {
    font-size: 14px;
    color: var(--clg-text-muted);
    text-decoration: none;
    transition: color 0.2s;
    opacity: 1;
}
.clg-footer-col ul li a:hover {
    color: var(--clg-text);
}
.clg-footer-bottom {
    border-top: 1px solid var(--clg-border);
    padding: 20px 0;
}
.clg-footer-bottom p {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin: 0;
}

.clg-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 700;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--clg-border);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.clg-sticky-cta.visible {
    transform: translateY(0);
}
.clg-sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.clg-sticky-label {
    font-size: 14px;
    color: var(--clg-text-muted);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.clg-sticky-label strong {
    color: var(--clg-accent);
}
.clg-sticky-label i {
    color: var(--clg-accent);
}

.clg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    will-change: opacity;
}
.clg-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.clg-modal {
    background: var(--clg-bg-card);
    border: 1px solid var(--clg-border);
    border-radius: var(--clg-radius);
    max-width: 440px;
    width: 100%;
    padding: 40px 32px;
    position: relative;
    text-align: center;
    contain: layout style paint;
}
.clg-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--clg-text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}
.clg-modal-close:hover {
    color: var(--clg-text);
}
.clg-modal-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 199, 1, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--clg-accent);
    margin: 0 auto 20px;
}
.clg-modal-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--clg-text);
    margin-bottom: 12px;
}
.clg-modal p {
    margin-bottom: 24px;
}
.clg-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #222;
    color: var(--clg-text);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--clg-border);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 9999;
    white-space: nowrap;
}
.clg-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 767px) {
    .clg-mobile-menu {
        display: block;
    }
    .clg-btn-header {
        display: none;
    }
    .lang-selector {
        display: none;
    }
    .lang-dropdown {
        position: fixed;
        left: 8px;
        right: 8px;
        top: 68px;
        min-width: unset;
        z-index: 1000;
    }
}

@media (min-width: 600px) {
    .clg-perks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .clg-hero-perks {
        gap: 16px;
    }
}

@media (min-width: 768px) {
    .clg-mobile-menu {
        display: none !important;
    }
    .clg-nav {
        display: flex;
    }
    .clg-burger {
        display: none;
    }
    .clg-btn-header {
        display: flex;
    }
    .clg-hero {
        padding: 140px 0 100px;
    }
    .clg-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .clg-hero-visual img {
        max-width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        object-position: center top;
    }
    .clg-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .clg-platform-split {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .clg-platform-image img {
        aspect-ratio: 4/3;
        object-fit: cover;
    }
    .clg-cta-banner {
        grid-template-columns: 1fr auto;
    }
    .clg-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .clg-sticky-inner {
        padding: 12px 40px;
    }
}

/* =============================================
   LANG SELECTOR
   ============================================= */
.lang-selector {
    position: relative;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    color: inherit;
    transition: background 0.2s;
}
.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}
.lang-toggle .fa-globe {
    font-size: 20px;
    color: currentColor;
}
.lang-toggle .chevron {
    transition: transform 0.2s;
    opacity: 0.7;
}
.lang-selector.open .lang-toggle .chevron {
    transform: rotate(180deg);
}
.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1a1a2e;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    list-style: none;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1000;
}
.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.2s;
}
.lang-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}
.lang-dropdown .fa-globe {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Mobile lang selector */
.mobile-lang-selector {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-lang-selector__label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.mobile-lang-selector__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.mobile-lang-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    transition: background 0.2s, color 0.2s;
}
.mobile-lang-option:hover,
.mobile-lang-option.active {
    background: rgba(255, 199, 1, 0.15);
    color: var(--clg-accent);
    opacity: 1;
}
.mobile-lang-option .flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.mobile-lang-option .fa-globe {
    font-size: 28px;
    color: currentColor;
}

@media (min-width: 1024px) {
    .clg-hero-title {
        font-size: 58px;
    }
    .clg-section-title {
        font-size: 46px;
    }
    .clg-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .clg-finale-title {
        font-size: 64px;
    }
}
