:root {
    --color-header: #020A06;
    --color-footer: #020A06;
    --color-bg: #16181B;
    --color-bg-alt: #1c1f23;
    --color-card: #1e2126;
    --color-card-hover: #232830;
    --color-btn-primary: #F5BF00;
    --color-btn-primary-hover: #e0ae00;
    --color-btn-primary-text: #0a0a0a;
    --color-btn-secondary: #24262B;
    --color-btn-secondary-hover: #2e3137;
    --color-text: #E8E9EA;
    --color-text-muted: #8D939C;
    --color-text-dim: #5a6070;
    --color-accent: #F5BF00;
    --color-accent-dim: rgba(245, 191, 0, 0.12);
    --color-success: #22C55E;
    --color-success-dim: rgba(34, 197, 94, 0.12);
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;
    --color-border: rgba(255, 255, 255, 0.07);
    --color-border-hover: rgba(245, 191, 0, 0.3);
    --color-overlay: rgba(2, 10, 6, 0.72);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --spacing: 8px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(245, 191, 0, 0.25);
    --header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.gc-nav-open {
    overflow: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
}

ul {
    list-style: none;
}

.gc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing) * 2);
}

.gc-section {
    padding: 72px 0;
}

.gc-section--alt {
    background: var(--color-bg-alt);
}

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

.gc-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 12px;
}

.gc-section-title span {
    color: var(--color-accent);
}

.gc-section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.gc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-header);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-h);
    transition: box-shadow var(--transition);
}

.gc-header.gc-header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.gc-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: var(--header-h);
    gap: 24px;
}

.gc-header-logo {
    flex-shrink: 0;
}

.gc-logo-link {
    display: inline-flex;
    align-items: center;
}

.gc-logo-img {
    height: 40px;
    width: auto;
}

.gc-header-nav-wrap {
    display: flex;
    justify-content: center;
}

.gc-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gc-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.gc-nav-link:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
}

.gc-nav-icon {
    opacity: 0.7;
    flex-shrink: 0;
}

.gc-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gc-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.gc-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-success);
    flex-shrink: 0;
    animation: gc-pulse-dot 2s infinite;
}

@keyframes gc-pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.gc-online-count {
    font-weight: 700;
    color: var(--color-success);
}

.gc-online-label {
    display: none;
}

.gc-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.gc-burger:hover {
    background: rgba(255, 255, 255, 0.06);
}

.gc-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.gc-burger.active .gc-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.gc-burger.active .gc-burger-line:nth-child(2) {
    opacity: 0;
}

.gc-burger.active .gc-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.gc-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

.gc-nav-overlay.active {
    opacity: 1;
}

.gc-mobile-nav-top {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 8px;
}

.gc-close-nav {
    color: var(--color-text-muted);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.gc-close-nav:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
}

.gc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: var(--font);
    letter-spacing: 0.01em;
    line-height: 1;
}

.gc-btn--primary {
    background: var(--color-btn-primary);
    color: var(--color-btn-primary-text);
    box-shadow: var(--shadow-gold);
}

.gc-btn--primary:hover {
    background: var(--color-btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(245, 191, 0, 0.35);
}

.gc-btn--primary:active {
    transform: translateY(0);
}

.gc-btn--secondary {
    background: var(--color-btn-secondary);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.gc-btn--secondary:hover {
    background: var(--color-btn-secondary-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.gc-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gc-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.gc-btn--claim {
    background: var(--color-success);
    color: #fff;
    animation: gc-claim-pulse 1.5s ease-in-out infinite;
}

.gc-btn--claim:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

@keyframes gc-claim-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.gc-btn--sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

.gc-btn--md {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.gc-btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.gc-btn--full {
    width: 100%;
}

.gc-btn--widget {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.gc-btn--pulse {
    animation: gc-btn-pulse 2.5s ease-in-out infinite;
}

@keyframes gc-btn-pulse {
    0%, 100% {
        box-shadow: var(--shadow-gold);
    }
    50% {
        box-shadow: 0 6px 30px rgba(245, 191, 0, 0.5);
    }
}

.gc-hero-section {
    padding: 0;
    margin-top: var(--header-h);
    position: relative;
    overflow: hidden;
}

.gc-hero-slider {
    position: relative;
    overflow: hidden;
}

.gc-hero-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gc-hero-slide {
    min-width: 100%;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.gc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
    will-change: transform;
}

.gc-hero-slide.active .gc-hero-bg {
    transform: scale(1);
}

.gc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 10, 6, 0.9) 0%, rgba(2, 10, 6, 0.6) 60%, rgba(2, 10, 6, 0.2) 100%);
}

.gc-hero-overlay--blue {
    background: linear-gradient(90deg, rgba(0, 10, 30, 0.92) 0%, rgba(0, 10, 30, 0.6) 60%, rgba(0, 10, 30, 0.2) 100%);
}

.gc-hero-overlay--green {
    background: linear-gradient(90deg, rgba(0, 20, 8, 0.92) 0%, rgba(0, 20, 8, 0.6) 60%, rgba(0, 20, 8, 0.2) 100%);
}

.gc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 64px 0;
    animation: gc-hero-fade-in 0.7s ease;
}

@keyframes gc-hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gc-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: var(--color-accent);
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.gc-hero-badge--gold {
    background: var(--color-accent);
    color: #0a0a0a;
}

.gc-hero-badge--crypto {
    background: #26A17B;
    color: #fff;
}

.gc-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.gc-hero-brand {
    color: var(--color-accent);
}

.gc-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}

.gc-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.gc-hero-legal {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.gc-hero-prev, .gc-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(2, 10, 6, 0.7);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}

.gc-hero-prev {
    left: 16px;
}

.gc-hero-next {
    right: 16px;
}

.gc-hero-prev:hover, .gc-hero-next:hover {
    background: var(--color-btn-primary);
    color: #0a0a0a;
    border-color: var(--color-btn-primary);
}

.gc-hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.gc-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.gc-hero-dot--active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-accent);
}

.gc-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.gc-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.gc-table thead th {
    background: var(--color-header);
    color: var(--color-text-muted);
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border);
}

.gc-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

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

.gc-table tbody tr:hover {
    background: rgba(245, 191, 0, 0.04);
}

.gc-table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    color: var(--color-text);
}

.gc-method-cell {
    min-width: 160px;
}

.gc-method-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.gc-method-icon {
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.gc-fee-free {
    color: var(--color-success);
    font-weight: 600;
}

.gc-tournaments-wrap, .gc-bonuses-wrap {
    position: relative;
}

.gc-tournaments-slider, .gc-bonuses-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gc-slider-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.gc-sl-prev, .gc-sl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.gc-sl-prev:hover, .gc-sl-next:hover {
    background: var(--color-accent);
    color: #0a0a0a;
    border-color: var(--color-accent);
}

.gc-sl-dots {
    display: flex;
    gap: 6px;
}

.gc-sl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.gc-sl-dot.active {
    background: var(--color-accent);
    width: 20px;
    border-radius: 4px;
}

.gc-tournament-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.gc-tournament-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gc-tc-header {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 90px;
}

.gc-tc-badge {
    display: inline-flex;
    padding: 4px 12px;
    background: rgba(245, 191, 0, 0.15);
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(245, 191, 0, 0.25);
}

.gc-tc-badge--red {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.25);
}

.gc-tc-badge--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border-color: rgba(59, 130, 246, 0.25);
}

.gc-tc-badge--crypto {
    background: rgba(38, 161, 123, 0.15);
    color: #26A17B;
    border-color: rgba(38, 161, 123, 0.25);
}

.gc-tc-badge--vip {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.25);
}

.gc-tc-prize {
    text-align: right;
}

.gc-tc-prize-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.gc-tc-prize-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.gc-tc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.gc-tc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.gc-tc-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
}

.gc-tc-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 10px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.gc-tc-timer-wrap, .gc-tc-players {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.gc-tc-timer {
    color: var(--color-warning);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.gc-video-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.gc-video-frame {
    width: 100%;
    max-width: 860px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.gc-video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.gc-video-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.gc-video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.gc-tag {
    padding: 5px 12px;
    background: var(--color-accent-dim);
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 191, 0, 0.2);
}

.gc-bonuses-slider {
    grid-template-columns: repeat(3, 1fr);
}

.gc-bonus-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: all var(--transition);
}

.gc-bonus-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.gc-bc-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-accent);
    color: #0a0a0a;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gc-bc-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
}

.gc-bc-type {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.gc-bc-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    line-height: 1.3;
}

.gc-bc-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.6;
    flex: 1;
}

.gc-bc-features {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-bc-features li {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    padding-left: 16px;
    position: relative;
}

.gc-bc-features li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
}

.gc-bc-legal {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-align: center;
}

.gc-slot-machine {
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.gc-slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.gc-slot-crown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.gc-slot-display {
    background: #0d0f12;
    border: 2px solid rgba(245, 191, 0, 0.25);
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 20px;
}

.gc-slot-reels {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.gc-slot-reel {
    flex: 1;
    max-width: 100px;
}

.gc-slot-window {
    height: 90px;
    background: #161a1f;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.gc-slot-symbol {
    font-size: 2.5rem;
    display: block;
    transition: transform 0.1s;
    user-select: none;
}

.gc-slot-reel.spinning .gc-slot-symbol {
    animation: gc-reel-spin 0.12s linear infinite;
}

@keyframes gc-reel-spin {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    49% {
        transform: translateY(20px);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.gc-slot-result {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.gc-slot-result--win {
    color: var(--color-success);
    animation: gc-win-pop 0.4s ease;
}

.gc-slot-result--lose {
    color: var(--color-error);
}

@keyframes gc-win-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.gc-slot-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.gc-spin-icon {
    transition: transform 0.3s;
}

.gc-spin-icon.spinning {
    animation: gc-spin-icon-anim 0.5s linear infinite;
}

@keyframes gc-spin-icon-anim {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gc-slot-credits {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.gc-review-section {
    background: var(--color-bg);
}

.gc-review-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gc-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
}

.gc-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-border-hover);
}

.gc-author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gc-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gc-author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}

.gc-author-title {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.gc-author-link {
    font-size: 0.78rem;
    color: var(--color-info);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.gc-author-link:hover {
    text-decoration: underline;
}

.gc-review-content {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.gc-review-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.gc-review-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 24px 0 12px;
    line-height: 1.3;
}

.gc-review-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 20px 0 10px;
}

.gc-review-content p {
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.gc-review-content p:last-child {
    margin-bottom: 0;
}

.gc-review-content ul, .gc-review-content ol {
    color: var(--color-text-muted);
    padding-left: 24px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-review-content ul li {
    list-style: disc;
    font-size: 0.95rem;
    line-height: 1.65;
}

.gc-review-content ol li {
    list-style: decimal;
    font-size: 0.95rem;
    line-height: 1.65;
}

.gc-review-content a {
    color: var(--color-info);
    text-decoration: underline;
}

.gc-review-content strong {
    color: var(--color-text);
    font-weight: 700;
}

.gc-review-content em {
    font-style: italic;
}

.gc-review-content blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 16px;
    margin: 20px 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.gc-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.875rem;
    overflow-x: auto;
    display: block;
}

.gc-review-content table th {
    background: var(--color-bg);
    color: var(--color-text-muted);
    font-weight: 600;
    padding: 10px 12px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.gc-review-content table td {
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    vertical-align: top;
}

.gc-review-content table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.gc-review-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

.gc-review-content img {
    border-radius: var(--radius);
    max-width: 100%;
    height: auto;
}

.gc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gc-breadcrumb a {
    color: var(--color-info);
}

.gc-breadcrumb a:hover {
    text-decoration: underline;
}

.gc-bc-sep {
    color: var(--color-text-dim);
}

.gc-info-content {
    max-width: 760px;
}

.gc-info-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.gc-info-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 28px 0 12px;
}

.gc-info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 20px 0 10px;
}

.gc-info-content p {
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.gc-info-content ul, .gc-info-content ol {
    color: var(--color-text-muted);
    padding-left: 24px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-info-content ul li {
    list-style: disc;
    font-size: 0.95rem;
    line-height: 1.65;
}

.gc-info-content ol li {
    list-style: decimal;
    font-size: 0.95rem;
    line-height: 1.65;
}

.gc-info-content a {
    color: var(--color-info);
    text-decoration: underline;
}

.gc-info-content strong {
    color: var(--color-text);
    font-weight: 700;
}

.gc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto;
}

.gc-faq-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.gc-faq-item:hover {
    border-color: rgba(245, 191, 0, 0.2);
}

.gc-faq-item.open {
    border-color: rgba(245, 191, 0, 0.3);
}

.gc-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: color var(--transition);
    background: none;
}

.gc-faq-q:hover {
    color: var(--color-accent);
}

.gc-faq-item.open .gc-faq-q {
    color: var(--color-accent);
}

.gc-faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--color-text-muted);
}

.gc-faq-item.open .gc-faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.gc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.gc-faq-item.open .gc-faq-a {
    max-height: 300px;
    padding-bottom: 18px;
}

.gc-faq-a p {
    padding: 0 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.gc-comments-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.gc-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gc-review-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color var(--transition);
}

.gc-review-card:hover {
    border-color: rgba(245, 191, 0, 0.2);
}

.gc-rv-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gc-rv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}

.gc-rv-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gc-rv-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text);
}

.gc-rv-loc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.gc-stars {
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.gc-rv-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 10px;
}

.gc-rv-date {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.gc-comment-form-wrap {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.gc-cf-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.gc-comment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gc-form-row {
    display: flex;
    gap: 14px;
}

.gc-form-row--2 > * {
    flex: 1;
    min-width: 0;
}

.gc-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.gc-form-input, .gc-form-textarea {
    width: 100%;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--color-text);
    font-size: 0.875rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.gc-form-input:focus, .gc-form-textarea:focus {
    border-color: rgba(245, 191, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(245, 191, 0, 0.08);
}

.gc-form-input::placeholder, .gc-form-textarea::placeholder {
    color: var(--color-text-dim);
}

.gc-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.gc-star-picker {
    display: flex;
    gap: 4px;
}

.gc-sp-star {
    font-size: 1.5rem;
    color: var(--color-border);
    transition: color var(--transition), transform var(--transition);
    padding: 2px;
    line-height: 1;
}

.gc-sp-star:hover, .gc-sp-star.active {
    color: var(--color-accent);
    transform: scale(1.15);
}

.gc-form-group--check .gc-form-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.gc-form-check {
    margin-top: 2px;
    accent-color: var(--color-accent);
}

.gc-link {
    color: var(--color-info);
}

.gc-link:hover {
    text-decoration: underline;
}

.gc-form-success {
    background: var(--color-success-dim);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--color-success);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.gc-footer {
    background: var(--color-footer);
    border-top: 1px solid var(--color-border);
}

.gc-footer-top {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--color-border);
}

.gc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.gc-footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.gc-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gc-footer-link {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.gc-footer-link:hover {
    color: var(--color-text);
}

.gc-footer-logo-link {
    display: inline-flex;
    margin-bottom: 12px;
}

.gc-footer-logo {
    height: 40px;
    width: auto;
}

.gc-footer-geo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.gc-geo-flag {
    border-radius: 2px;
}

.gc-geo-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.gc-footer-about {
    font-size: 0.82rem;
    color: var(--color-text-dim);
    line-height: 1.65;
    margin-bottom: 16px;
}

.gc-footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.gc-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.gc-social-link:hover {
    background: var(--color-accent);
    color: #0a0a0a;
    border-color: var(--color-accent);
}

.gc-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.gc-footer-email:hover {
    color: var(--color-text);
}

.gc-footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gc-provider-tag {
    font-size: 0.72rem;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-muted);
}

.gc-footer-mid {
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.gc-footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.gc-footer-logos-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gc-fl-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gc-footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.gc-fl-item {
    opacity: 0.7;
    transition: opacity var(--transition);
}

.gc-fl-item:hover {
    opacity: 1;
}

.gc-fl-badge {
    opacity: 0.8;
    transition: opacity var(--transition);
}

.gc-fl-badge:hover {
    opacity: 1;
}

.gc-fl-trust {
    opacity: 0.75;
    transition: opacity var(--transition);
    text-decoration: none;
}

.gc-fl-trust:hover {
    opacity: 1;
}

.gc-footer-bottom {
    padding: 24px 0;
}

.gc-footer-legal {
    max-width: 900px;
}

.gc-footer-legal p {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    line-height: 1.65;
    margin-bottom: 8px;
}

.gc-footer-legal p:last-child {
    margin-bottom: 0;
}

.gc-footer-legal a {
    color: var(--color-info);
}

.gc-footer-legal a:hover {
    text-decoration: underline;
}

.gc-copyright {
    color: var(--color-text-dim);
}

.gc-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--color-header);
    border-top: 1px solid rgba(245, 191, 0, 0.2);
    padding: 10px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.gc-sticky-widget.visible {
    transform: translateY(0);
}

.gc-sw-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gc-sw-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.gc-sw-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.gc-sw-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.gc-sw-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gc-sw-offer {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-text);
}

.gc-sw-code {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 191, 0, 0.08);
    border: 1px solid rgba(245, 191, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
}

.gc-sw-code-label {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.gc-sw-code-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.gc-sw-copy {
    color: var(--color-text-muted);
    padding: 4px;
    border-radius: 4px;
    transition: all var(--transition);
}

.gc-sw-copy:hover {
    color: var(--color-accent);
}

.gc-sw-close {
    color: var(--color-text-muted);
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    flex-shrink: 0;
    margin-left: auto;
}

.gc-sw-close:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
}

.m3r9p-hidden {
    display: none !important;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.xk7f2-body {
    font-family: var(--font);
}

.wpr-wrap, .site-container {
    width: 100%;
}

.n8v4c {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.q2w5b-el {
    background: transparent;
    border: 0;
}

.t6y1s-wrap {
    max-width: 100%;
}

.r4d8m-unit {
    font-size: 0;
    line-height: 0;
}

.p9k3v-node {
    display: contents;
}

.h7n2x-leaf {
    visibility: visible;
}

@media (max-width: 1100px) {
    .gc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .gc-bonuses-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gc-header-nav-wrap {
        display: none;
    }

    .gc-burger {
        display: flex;
    }

    .gc-online-label {
        display: none;
    }

    .gc-nav-overlay {
        display: block;
        position: fixed;
    }

    .gc-mobile-nav-inner {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--color-header);
        border-left: 1px solid var(--color-border);
        z-index: 999;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        padding-bottom: 24px;
    }

    .gc-mobile-nav-inner.open {
        transform: translateX(0);
    }

    .gc-mobile-nav-top {
        display: flex;
    }

    .gc-nav-list {
        flex-direction: column;
        padding: 0 12px;
        gap: 2px;
    }

    .gc-nav-link {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .gc-comments-wrap {
        grid-template-columns: 1fr;
    }

    .gc-bonuses-slider {
        grid-template-columns: 1fr;
        display: flex;
        overflow: hidden;
        position: relative;
    }

    .gc-tournaments-slider {
        display: flex;
        overflow: hidden;
        position: relative;
    }

    .gc-slider-controls {
        display: flex;
    }

    .gc-bonus-card, .gc-tournament-card {
        min-width: 100%;
        flex-shrink: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-h: 60px;
    }

    .gc-section {
        padding: 48px 0;
    }

    .gc-section-header {
        margin-bottom: 32px;
    }

    .gc-hero-slide {
        min-height: 420px;
    }

    .gc-hero-prev, .gc-hero-next {
        display: none;
    }

    .gc-header-inner {
        grid-template-columns: auto auto;
    }

    .gc-header-nav-wrap {
        display: none;
    }

    .gc-form-row--2 {
        flex-direction: column;
    }

    .gc-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gc-footer-logos-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gc-sw-inner {
        gap: 10px;
    }

    .gc-sw-code {
        display: none;
    }

    .gc-sw-promo {
        min-width: 0;
    }

    .gc-table-wrap {
        border-radius: var(--radius);
    }

    .gc-slot-machine {
        padding: 24px 16px;
    }

    .gc-slot-symbol {
        font-size: 2rem;
    }

    .gc-slot-window {
        height: 72px;
    }

    .gc-review-content {
        padding: 20px 16px;
    }

    .gc-comment-form-wrap {
        padding: 20px 16px;
    }

    .gc-online-badge {
        display: none;
    }

    .gc-hero-content {
        padding: 48px 0;
    }
}

@media (max-width: 400px) {
    .gc-hero-title {
        font-size: 1.9rem;
    }

    .gc-hero-btns {
        flex-direction: column;
    }

    .gc-btn--lg {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    #bonuses .gc-container {
        padding: 0 14px;
    }

    #bonuses .gc-section-header {
        margin-bottom: 28px;
    }

    #bonuses .gc-section-title {
        font-size: 26px;
        line-height: 1.2;
    }

    #bonuses .gc-section-subtitle {
        font-size: 14px;
        line-height: 1.55;
    }

    .gc-bonuses-wrap {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .gc-bonuses-slider {
        display: flex !important;
        grid-template-columns:none !important;
        gap: 14px;
        overflow-x: auto !important;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 14px;
        transform: none !important;
    }

    .gc-bonuses-slider::-webkit-scrollbar {
        display: none;
    }

    .gc-bonus-card {
        flex: 0 0 88%;
        min-width: 88%;
        max-width: 88%;
        scroll-snap-align: center;
        padding: 24px 16px;
        border-radius: 16px;
        transform: none !important;
    }

    .gc-bc-ribbon {
        top: 12px;
        right: 12px;
        font-size: 10px;
    }

    .gc-bc-title {
        font-size: 21px;
        line-height: 1.25;
    }

    .gc-bc-desc {
        font-size: 14px;
    }

    .gc-bc-features {
        padding: 12px 14px;
    }

    .gc-bc-features li {
        font-size: 13px;
    }

    .gc-bc-legal {
        font-size: 11px;
    }

    .gc-bonus-card .gc-btn {
        width: 100%;
        min-height: 44px;
    }

    .gc-slider-controls--bonuses {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .gc-bonus-card {
        flex-basis: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .gc-bc-title {
        font-size: 19px;
    }

    .gc-bc-desc {
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    #tournaments .gc-container {
        padding: 0 14px;
    }

    #tournaments .gc-section-header {
        margin-bottom: 26px;
    }

    #tournaments .gc-section-title {
        font-size: 26px;
        line-height: 1.2;
    }

    #tournaments .gc-section-subtitle {
        font-size: 14px;
        line-height: 1.55;
    }

    .gc-tournaments-wrap {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .gc-tournaments-slider {
        display: flex !important;
        grid-template-columns:none !important;
        gap: 14px;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 18px;
        transform: none !important;
    }

    .gc-tournaments-slider::-webkit-scrollbar {
        display: none;
    }

    .gc-tournament-card {
        flex: 0 0 88%;
        min-width: 88%;
        max-width: 88%;
        scroll-snap-align: center;
        transform: none !important;
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .gc-tc-header {
        min-height: 96px;
        padding: 18px 14px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .gc-tc-prize {
        text-align: left;
    }

    .gc-tc-body {
        padding: 18px 14px;
        gap: 12px;
    }

    .gc-tc-title {
        font-size: 17px;
        line-height: 1.3;
    }

    .gc-tc-desc {
        font-size: 13px;
        line-height: 1.55;
        display: block;
        overflow: visible;
    }

    .gc-tc-meta {
        flex-direction: column;
        gap: 8px;
    }

    .gc-tc-timer-wrap,
    .gc-tc-players {
        font-size: 12px;
    }

    .gc-tournament-card .gc-btn {
        width: 100%;
        min-height: 44px;
    }

    .gc-slider-controls--tournaments {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .gc-tournament-card {
        flex-basis: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .gc-tc-header {
        min-height: 90px;
    }

    .gc-tc-prize-amount {
        font-size: 18px;
    }
}

.gc-bonuses-slider {
    display: flex;
    overflow: hidden;
}

.gc-bonus-card {
    flex: 0 0 100%;
    min-width: 100%;
}

@media (max-width: 900px) {
    .gc-header {
        height: auto !important;
        overflow: visible !important;
    }

    .gc-header-inner {
        height: auto !important;
        min-height: 64px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .gc-header-logo {
        flex: 0 0 auto !important;
    }

    .gc-header-actions {
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .gc-header-nav-wrap {
        order: 3 !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        display: block !important;
        overflow: hidden !important;
    }

    .gc-mobile-nav-inner {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        max-height: 0 !important;
        transform: none !important;
        overflow: hidden !important;
        background: #020A06 !important;
        border: 0 !important;
        padding: 0 !important;
        transition: max-height .3s ease, padding .3s ease !important;
    }

    .gc-mobile-nav-inner.open,
    .gc-mobile-nav-inner.active,
    .gc-mobile-nav-inner.is-open {
        max-height: 520px !important;
        padding: 10px 0 14px !important;
        overflow: visible !important;
    }

    .gc-mobile-nav-top {
        display: none !important;
    }

    .gc-nav {
        display: block !important;
        width: 100% !important;
    }

    .gc-nav-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .gc-nav-link {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        min-height: 44px !important;
        padding: 11px 14px !important;
        border-radius: 10px !important;
        background: #16181B !important;
        border: 1px solid rgba(245, 191, 0, .14) !important;
        color: #E8E9EA !important;
    }

    .gc-nav-overlay {
        display: none !important;
    }

    .gc-burger {
        display: flex !important;
    }

    .gc-online-badge {
        display: none !important;
    }
}