@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #0e112b;
    color: #e8eaf6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: #848cc9;
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: #1abd8c
}

ul, ol {
    list-style: none
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: #fff
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none
}

.pc-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden
}

.pc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
    letter-spacing: .3px
}

.btn-primary {
    background: #1abd8c;
    color: #fff;
    border-color: #1abd8c
}

.btn-primary:hover {
    background: #15a87c;
    border-color: #15a87c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 189, 140, .35)
}

.btn-secondary {
    background: #848cc9;
    color: #fff;
    border-color: #848cc9
}

.btn-secondary:hover {
    background: #717ab8;
    border-color: #717ab8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 140, 201, .3)
}

.btn-outline {
    background: transparent;
    color: #848cc9;
    border-color: #848cc9
}

.btn-outline:hover {
    background: #848cc9;
    color: #fff;
    transform: translateY(-2px)
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px
}

.btn-sm {
    padding: 7px 14px;
    font-size: .8rem
}

.btn-block {
    width: 100%;
    display: flex
}

/* ===== HEADER ===== */
.pc-header {
    background: #343a6c;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4)
}

.pc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    min-height: 68px
}

.pc-logo {
    flex-shrink: 0
}

.pc-logo img {
    height: 44px;
    width: auto;
    border-radius: 6px
}

.pc-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center
}

.pc-nav-list {
    display: flex;
    align-items: center;
    gap: 2px
}

.pc-nav-list a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: #c5c9e8;
    transition: all .2s
}

.pc-nav-list a:hover, .pc-nav-list a.active {
    background: rgba(132, 140, 201, .2);
    color: #fff
}

.pc-nav-list a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: currentColor
}

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

.pc-online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: #a8afd4;
    white-space: nowrap
}

.pc-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1abd8c;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(.8)
    }
}

.pc-lang-select {
    position: relative
}

.pc-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #c5c9e8;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 600;
    transition: all .2s
}

.pc-lang-btn:hover {
    background: rgba(255, 255, 255, .14)
}

.pc-lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #2a3060;
    border: 1px solid rgba(132, 140, 201, .3);
    border-radius: 8px;
    min-width: 140px;
    padding: 4px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all .2s
}

.pc-lang-select.open .pc-lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0)
}

.pc-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 5px;
    color: #c5c9e8;
    font-size: .82rem;
    font-weight: 500;
    transition: background .2s
}

.pc-lang-dropdown a:hover {
    background: rgba(132, 140, 201, .2);
    color: #fff
}

.pc-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    color: #fff
}

.pc-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all .3s
}

.pc-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.pc-burger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px)
}

.pc-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.pc-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1e2351;
    z-index: 999;
    overflow-y: auto;
    padding: 20px 16px;
    flex-direction: column;
    gap: 16px
}

.pc-mobile-menu.open {
    display: flex
}

.pc-mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.pc-mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    color: #c5c9e8;
    background: rgba(255, 255, 255, .05);
    transition: all .2s
}

.pc-mobile-nav-list a:hover {
    background: rgba(132, 140, 201, .2);
    color: #fff
}

.pc-mobile-nav-list a svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.pc-mobile-buttons {
    display: flex;
    gap: 8px
}

.pc-mobile-buttons .btn {
    flex: 1;
    justify-content: center
}

.pc-mobile-extras {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

/* ===== HERO ===== */
.pc-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0e112b
}

.pc-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-pc.png');
    background-size: cover;
    background-position: center;
    z-index: 0
}

.pc-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 17, 43, .92) 0%, rgba(14, 17, 43, .7) 60%, rgba(14, 17, 43, .5) 100%)
}

.pc-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
    width: 100%
}

.pc-hero-text {
    flex: 1;
    max-width: 580px
}

.pc-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 189, 140, .15);
    border: 1px solid rgba(26, 189, 140, .35);
    color: #1abd8c;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.pc-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2
}

.pc-hero h1 span {
    color: #1abd8c
}

.pc-hero-desc {
    font-size: 1.05rem;
    color: #b0b8d8;
    margin-bottom: 28px;
    line-height: 1.7
}

.pc-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.pc-bonus-tile {
    background: linear-gradient(135deg, rgba(52, 58, 108, .9), rgba(26, 30, 64, .9));
    border: 1px solid rgba(26, 189, 140, .35);
    border-radius: 14px;
    padding: 20px 24px;
    max-width: 320px;
    backdrop-filter: blur(8px)
}

.pc-bonus-tile-label {
    font-size: .75rem;
    font-weight: 600;
    color: #848cc9;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.pc-bonus-tile-amount {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1abd8c;
    margin-bottom: 4px
}

.pc-bonus-tile-sub {
    font-size: .85rem;
    color: #c5c9e8;
    margin-bottom: 14px
}

.pc-bonus-tile .btn {
    width: 100%
}

.pc-hero-side {
    flex-shrink: 0
}

/* ===== SECTION SHARED ===== */
.pc-section {
    padding: 60px 0
}

.pc-section-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-balance: balance
}

.pc-section-sub {
    font-size: .95rem;
    color: #848cc9;
    margin-bottom: 32px
}

.pc-section-head {
    margin-bottom: 36px
}

.pc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(132, 140, 201, .3), transparent);
    margin: 0 0 48px
}

/* ===== PROS/CONS ===== */
.pc-proscons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.pc-proscons-col {
    flex: 1;
    min-width: 260px;
    background: #1a1e47;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(132, 140, 201, .18)
}

.pc-proscons-col h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    margin-bottom: 16px
}

.pc-proscons-col h3 svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.pc-pros h3 {
    color: #1abd8c
}

.pc-cons h3 {
    color: #f97171
}

.pc-proscons-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.pc-proscons-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .875rem;
    color: #c5c9e8;
    line-height: 1.5
}

.pc-proscons-col ul li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-top: 2px;
    background-size: cover
}

.pc-pros ul li::before {
    background: #1abd8c;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 2.5L6 10 2.5 6.5 1 8l5 5 9-9z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 12px
}

.pc-cons ul li::before {
    background: #f97171;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M12 4L4 12M4 4l8 8' stroke='%23f97171' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 12px
}

/* ===== JACKPOTS ===== */
.pc-jackpots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.pc-jackpot-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #1f2452, #161941);
    border: 1px solid rgba(26, 189, 140, .25);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden
}

.pc-jackpot-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(26, 189, 140, .12), transparent 70%)
}

.pc-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 189, 140, .15)
}

.pc-jackpot-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 189, 140, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 1.5px solid rgba(26, 189, 140, .3)
}

.pc-jackpot-icon svg {
    width: 24px;
    height: 24px;
    fill: #1abd8c
}

.pc-jackpot-name {
    font-size: .85rem;
    font-weight: 600;
    color: #848cc9;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px
}

.pc-jackpot-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1abd8c;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums
}

.pc-jackpot-sub {
    font-size: .78rem;
    color: #6a7099
}

/* ===== TOURNAMENTS ===== */
.pc-tournaments-track {
    overflow: hidden
}

.pc-tournaments-grid {
    display: flex;
    gap: 16px
}

.pc-tournament-card {
    flex: 0 0 calc(25% - 12px);
    background: #1a1e47;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(132, 140, 201, .18);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden
}

.pc-tournament-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #343a6c, #1abd8c)
}

.pc-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .3)
}

.pc-tournament-badge {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: rgba(132, 140, 201, .18);
    color: #848cc9
}

.pc-tournament-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.pc-tournament-desc {
    font-size: .82rem;
    color: #8892b0;
    line-height: 1.5;
    margin-bottom: 14px
}

.pc-tournament-footer {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pc-tournament-prize {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1abd8c
}

.pc-tournament-prize span {
    font-size: .78rem;
    font-weight: 500;
    color: #6a7099
}

.pc-timer {
    display: flex;
    gap: 8px;
    align-items: center
}

.pc-timer-block {
    text-align: center;
    background: rgba(14, 17, 43, .5);
    border-radius: 6px;
    padding: 4px 8px;
    min-width: 36px
}

.pc-timer-block .t-num {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1
}

.pc-timer-block .t-lbl {
    display: block;
    font-size: .62rem;
    color: #6a7099;
    text-transform: uppercase;
    margin-top: 2px
}

.pc-timer-sep {
    font-size: 1rem;
    font-weight: 700;
    color: #848cc9;
    margin-top: -4px
}

.pc-slider-controls {
    display: none;
    gap: 10px;
    justify-content: center;
    margin-top: 16px
}

.pc-slider-controls button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #343a6c;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background .2s
}

.pc-slider-controls button:hover {
    background: #1abd8c
}

.pc-slider-controls button svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

/* ===== WHEEL OF FORTUNE ===== */
.pc-wheel-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    background: #1a1e47;
    border-radius: 18px;
    padding: 36px;
    border: 1px solid rgba(132, 140, 201, .18)
}

.pc-wheel-canvas-wrap {
    position: relative;
    flex-shrink: 0
}

.pc-wheel-canvas-wrap canvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(52, 58, 108, .6), 0 0 0 12px rgba(26, 189, 140, .1), 0 0 40px rgba(26, 189, 140, .12)
}

.pc-wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 22px solid #1abd8c;
    filter: drop-shadow(0 2px 6px rgba(26, 189, 140, .5))
}

.pc-wheel-info {
    flex: 1;
    min-width: 260px
}

.pc-wheel-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px
}

.pc-wheel-info p {
    color: #8892b0;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: .9rem
}

.pc-wheel-result {
    display: none;
    background: rgba(26, 189, 140, .1);
    border: 1px solid rgba(26, 189, 140, .3);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 16px
}

.pc-wheel-result.show {
    display: block
}

.pc-wheel-result.win {
    border-color: #1abd8c;
    background: rgba(26, 189, 140, .1)
}

.pc-wheel-result.lose {
    border-color: #f97171;
    background: rgba(249, 113, 113, .08)
}

.pc-wheel-result-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px
}

.pc-wheel-result-text {
    font-size: .875rem;
    color: #8892b0
}

.pc-spin-btn {
    margin-top: 0
}

/* ===== REVIEW CONTENT ===== */
.pc-review-content {
    background: #151839;
    border-radius: 18px;
    padding: 36px;
    border: 1px solid rgba(132, 140, 201, .14)
}

.pc-review-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.pc-review-content h2:first-child {
    margin-top: 0
}

.pc-review-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c5c9e8;
    margin: 22px 0 10px
}

.pc-review-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #848cc9;
    margin: 18px 0 8px
}

.pc-review-content p {
    color: #b0b8d8;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: .9375rem
}

.pc-review-content ul, .pc-review-content ol {
    padding-left: 0;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pc-review-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #b0b8d8;
    font-size: .9375rem;
    line-height: 1.6
}

.pc-review-content ul li::before {
    content: '▸';
    color: #1abd8c;
    flex-shrink: 0;
    margin-top: 1px
}

.pc-review-content ol {
    counter-reset: ol-counter;
    list-style: none
}

.pc-review-content ol li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    counter-increment: ol-counter;
    color: #b0b8d8;
    font-size: .9375rem;
    line-height: 1.6
}

.pc-review-content ol li::before {
    content: counter(ol-counter);
    flex-shrink: 0;
    background: #343a6c;
    color: #848cc9;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    margin-top: 1px
}

.pc-review-content a {
    color: #1abd8c
}

.pc-review-content a:hover {
    text-decoration: underline
}

.pc-review-content strong {
    color: #e8eaf6;
    font-weight: 700
}

.pc-review-content em {
    color: #848cc9
}

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

.pc-review-content table th {
    background: #343a6c;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap
}

.pc-review-content table td {
    border: 1px solid rgba(132, 140, 201, .2);
    padding: 9px 14px;
    color: #b0b8d8;
    background: #1a1e47;
    text-align: left;
    white-space: nowrap
}

.pc-review-content table tr:nth-child(even) td {
    background: #1e2451
}

.pc-review-content blockquote {
    border-left: 3px solid #1abd8c;
    padding: 12px 18px;
    background: rgba(26, 189, 140, .07);
    border-radius: 0 8px 8px 0;
    color: #b0b8d8;
    margin: 16px 0;
    font-style: italic
}

.pc-review-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0
}

.pc-review-content hr {
    border: none;
    border-top: 1px solid rgba(132, 140, 201, .2);
    margin: 24px 0
}

/* ===== REGISTRATION STEPS ===== */
.pc-steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.pc-step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 28px
}

.pc-step:last-child {
    padding-bottom: 0
}

.pc-step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0
}

.pc-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #343a6c, #1abd8c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.pc-step-connector {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, #1abd8c 0%, rgba(132, 140, 201, .2) 100%);
    margin-top: 4px
}

.pc-step:last-child .pc-step-connector {
    display: none
}

.pc-step-body {
    padding-top: 8px;
    flex: 1;
    padding-bottom: 4px
}

.pc-step-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.pc-step-body p {
    font-size: .875rem;
    color: #8892b0;
    line-height: 1.6
}

/* ===== SECURITY ===== */
.pc-security-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.pc-security-item {
    flex: 1;
    min-width: 220px;
    background: #1a1e47;
    border-radius: 12px;
    padding: 22px 18px;
    border: 1px solid rgba(132, 140, 201, .15);
    transition: transform .2s, border-color .2s
}

.pc-security-item:hover {
    transform: translateY(-3px);
    border-color: rgba(26, 189, 140, .3)
}

.pc-security-icon {
    width: 42px;
    height: 42px;
    background: rgba(26, 189, 140, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(26, 189, 140, .2)
}

.pc-security-icon svg {
    width: 22px;
    height: 22px;
    fill: #1abd8c
}

.pc-security-item h3 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.pc-security-item p {
    font-size: .82rem;
    color: #8892b0;
    line-height: 1.55
}

.pc-license-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 189, 140, .1);
    border: 1px solid rgba(26, 189, 140, .25);
    color: #1abd8c;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 700;
    margin-top: 8px
}

/* ===== AUTHOR ===== */
.pc-author-card {
    background: #1a1e47;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(132, 140, 201, .18);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap
}

.pc-author-avatar {
    flex-shrink: 0
}

.pc-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #343a6c
}

.pc-author-info {
    flex: 1;
    min-width: 220px
}

.pc-author-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px
}

.pc-author-role {
    font-size: .82rem;
    color: #1abd8c;
    font-weight: 600;
    margin-bottom: 10px
}

.pc-author-bio {
    font-size: .875rem;
    color: #8892b0;
    line-height: 1.65;
    margin-bottom: 14px
}

.pc-author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.pc-author-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: #848cc9;
    background: rgba(132, 140, 201, .1);
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(132, 140, 201, .2);
    transition: all .2s
}

.pc-author-links a:hover {
    background: rgba(132, 140, 201, .2);
    color: #fff
}

.pc-author-dates {
    font-size: .78rem;
    color: #5a637a;
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.pc-author-dates span {
    display: flex;
    align-items: center;
    gap: 4px
}

.pc-author-dates svg {
    width: 12px;
    height: 12px;
    fill: currentColor
}

/* ===== FAQ ===== */
.pc-faq {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pc-faq-item {
    background: #1a1e47;
    border: 1px solid rgba(132, 140, 201, .15);
    border-radius: 10px;
    overflow: hidden
}

.pc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s
}

.pc-faq-q:hover {
    background: rgba(132, 140, 201, .1)
}

.pc-faq-icon {
    width: 22px;
    height: 22px;
    background: rgba(132, 140, 201, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s
}

.pc-faq-icon svg {
    width: 12px;
    height: 12px;
    fill: #848cc9;
    transition: transform .3s
}

.pc-faq-item.open .pc-faq-icon {
    background: rgba(26, 189, 140, .15)
}

.pc-faq-item.open .pc-faq-icon svg {
    fill: #1abd8c;
    transform: rotate(180deg)
}

.pc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.pc-faq-item.open .pc-faq-a {
    max-height: 300px
}

.pc-faq-a p {
    padding: 0 18px 16px;
    font-size: .875rem;
    color: #8892b0;
    line-height: 1.65
}

/* ===== FOOTER ===== */
.pc-footer {
    background: #343a6c;
    margin-top: auto;
    border-top: 1px solid rgba(132, 140, 201, .15)
}

.pc-footer-main {
    padding: 44px 0 28px
}

.pc-footer-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.pc-footer-col {
    flex: 1;
    min-width: 180px
}

.pc-footer-col h4 {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px
}

.pc-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.pc-footer-logo img {
    height: 38px;
    width: auto;
    border-radius: 5px
}

.pc-footer-desc {
    font-size: .82rem;
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 14px
}

.pc-footer-col ul li {
    margin-bottom: 7px
}

.pc-footer-col ul li a {
    font-size: .845rem;
    color: #8892b0;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px
}

.pc-footer-col ul li a:hover {
    color: #1abd8c
}

.pc-footer-col ul li a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: .6
}

.pc-footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.pc-footer-social-link {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    border: 1px solid rgba(255, 255, 255, .08)
}

.pc-footer-social-link:hover {
    background: rgba(26, 189, 140, .2);
    border-color: rgba(26, 189, 140, .3)
}

.pc-footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: #c5c9e8
}

.pc-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 24px
}

.pc-footer-logos-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.pc-footer-logos-row .pc-logo-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: #8892b0;
    white-space: nowrap;
    transition: background .2s
}

.pc-footer-logos-row .pc-logo-badge:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.pc-footer-logos-row .pc-logo-badge span {
    color: #1abd8c
}

.pc-footer-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px
}

.pc-trust-badge {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: .72rem;
    font-weight: 700;
    color: #8892b0;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap
}

.pc-trust-badge svg {
    width: 14px;
    height: 14px;
    fill: #1abd8c;
    flex-shrink: 0
}

.pc-footer-bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.pc-footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.pc-footer-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #6a7099
}

.pc-footer-flag svg {
    width: 22px;
    height: 15px
}

.pc-copyright {
    font-size: .78rem;
    color: #5a637a;
    line-height: 1.6
}

.pc-copyright a {
    color: #6a7099;
    transition: color .2s
}

.pc-copyright a:hover {
    color: #848cc9
}

.pc-footer-18 {
    display: flex;
    align-items: center;
    gap: 8px
}

.pc-18-badge {
    width: 34px;
    height: 34px;
    background: #f97171;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

/* ===== STICKY WIDGET ===== */
.pc-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, #1f2452, #1a3e34);
    border-top: 2px solid #1abd8c;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .35)
}

.pc-widget-text {
    font-size: .875rem;
    color: #fff;
    font-weight: 600;
    flex: 1
}

.pc-widget-text span {
    color: #1abd8c
}

.pc-widget-close {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    border: none;
    color: #8892b0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s
}

.pc-widget-close:hover {
    background: rgba(249, 113, 113, .2);
    color: #f97171
}

.pc-widget-close svg {
    width: 12px;
    height: 12px;
    fill: currentColor
}

.pc-widget a {
    text-decoration: none
}

/* ===== INFO PAGES ===== */
.pc-info-content {
    background: #151839;
    border-radius: 18px;
    padding: 36px;
    border: 1px solid rgba(132, 140, 201, .14);
    margin-top: 28px
}

.pc-info-content h1, .pc-info-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px
}

.pc-info-content h1:first-child {
    margin-top: 0
}

.pc-info-content p {
    color: #b0b8d8;
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: .9375rem
}

.pc-info-content ul {
    padding-left: 0;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.pc-info-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #b0b8d8;
    font-size: .9rem;
    line-height: 1.6
}

.pc-info-content ul li::before {
    content: '▸';
    color: #1abd8c;
    flex-shrink: 0
}

.pc-info-content a {
    color: #1abd8c
}

.pc-info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    display: block;
    overflow-x: auto;
    font-size: .875rem
}

.pc-info-content table th {
    background: #343a6c;
    color: #fff;
    padding: 9px 12px;
    text-align: left;
    font-weight: 600
}

.pc-info-content table td {
    border: 1px solid rgba(132, 140, 201, .2);
    padding: 8px 12px;
    color: #b0b8d8;
    background: #1a1e47;
    text-align: left
}

/* ===== PROVIDERS GRID ===== */
.pc-providers-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.pc-provider-chip {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .8rem;
    font-weight: 600;
    color: #8892b0;
    transition: all .2s;
    cursor: default
}

.pc-provider-chip:hover {
    background: rgba(132, 140, 201, .15);
    color: #c5c9e8;
    border-color: rgba(132, 140, 201, .3)
}

/* ===== BREADCRUMB ===== */
.pc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: #5a637a;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.pc-breadcrumb a {
    color: #848cc9;
    transition: color .2s
}

.pc-breadcrumb a:hover {
    color: #fff
}

.pc-breadcrumb-sep {
    color: #3a4168
}

/* ===== BODY PADDING FOR WIDGET ===== */
body {
    padding-bottom: 62px
}

body.widget-hidden {
    padding-bottom: 0
}

/* ===== WP DECOY ===== */
.wp-block-spacer {
    height: 20px;
    display: block
}

.elementor-hidden {
    display: none !important
}

.wc-block-grid {
    display: none
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    height: 1px;
    width: 1px
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes jackpotCount {
    from {
        transform: scale(1.04)
    }
    to {
        transform: scale(1)
    }
}

.fade-in-up {
    animation: fadeInUp .5s ease forwards
}

.pc-jackpot-amount.updating {
    animation: jackpotCount .25s ease
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pc-tournament-card {
        flex: 0 0 calc(50% - 8px)
    }
}

@media (max-width: 768px) {
    .pc-nav {
        display: none
    }

    .pc-online-count {
        display: none
    }

    .pc-lang-select {
        display: none
    }

    .pc-burger {
        display: flex
    }

    .pc-header-inner {
        padding: 10px 16px
    }

    .pc-hero h1 {
        font-size: 1.75rem
    }

    .pc-hero-side {
        display: none
    }

    .pc-hero-inner {
        padding: 40px 0
    }

    .pc-tournaments-grid {
        gap: 14px
    }

    .pc-tournament-card {
        flex: 0 0 calc(80vw)
    }

    .pc-slider-controls {
        display: flex
    }

    .pc-wheel-wrap {
        padding: 24px 20px
    }

    .pc-wheel-canvas-wrap canvas {
        width: 220px !important;
        height: 220px !important
    }

    .pc-wheel-info h2 {
        font-size: 1.25rem
    }

    .pc-section {
        padding: 40px 0
    }

    .pc-footer-grid {
        gap: 24px
    }

    .pc-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .pc-author-links {
        justify-content: center
    }

    .pc-author-dates {
        justify-content: center
    }

    .pc-widget {
        padding: 8px 12px;
        gap: 8px
    }

    .pc-widget-text {
        font-size: .8rem
    }
}

@media (max-width: 480px) {
    .pc-hero h1 {
        font-size: 1.45rem
    }

    .pc-hero-buttons {
        flex-direction: column
    }

    .pc-hero-buttons .btn {
        width: 100%;
        justify-content: center
    }

    .pc-jackpots-grid {
        flex-direction: column
    }

    .pc-proscons {
        flex-direction: column
    }

    .pc-security-grid {
        flex-direction: column
    }

    .pc-tournament-card {
        flex: 0 0 calc(90vw)
    }

    .pc-wheel-wrap {
        flex-direction: column;
        align-items: center
    }

    .pc-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start
    }
}
