:root {
    --clr-bg: #323234;
    --clr-bg-dark: #28282a;
    --clr-bg-darker: #1e1e20;
    --clr-header: #000000;
    --clr-login: #00fbc8;
    --clr-signup: #ff2e09;
    --clr-text: #ffffff;
    --clr-text-muted: #b0b2b8;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-card: rgba(255, 255, 255, 0.04);
    --clr-card-hover: rgba(255, 255, 255, 0.08);
    --font-main: 'PT Sans', sans-serif;
    --radius: 10px;
    --radius-sm: 6px;
    --transition: 0.28s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

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

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

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

a {
    color: var(--clr-login);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #00d4a8;
}

ul {
    list-style: none;
}

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

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

.pnc-header-wrap {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.pnc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px;
}

.pnc-logo img {
    height: 44px;
    width: auto;
    display: block;
}

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

.pnc-nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.pnc-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

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

.pnc-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.pnc-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00fbc8;
    box-shadow: 0 0 6px #00fbc8;
    animation: pnc-pulse 2s infinite;
}

.pnc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.pnc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

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

.pnc-btn--login {
    background: transparent;
    border: 2px solid var(--clr-login);
    color: var(--clr-login);
}

.pnc-btn--login:hover {
    background: var(--clr-login);
    color: #000;
}

.pnc-btn--signup {
    background: var(--clr-signup);
    color: #fff;
}

.pnc-btn--signup:hover {
    background: #e0280a;
    color: #fff;
}

.pnc-btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.pnc-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.pnc-btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius);
}

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

.pnc-btn--sm {
    padding: 6px 14px;
    font-size: 13px;
}

.pnc-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.pnc-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

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

.pnc-burger.is-active span:nth-child(2) {
    opacity: 0;
}

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

.pnc-mobile-nav {
    display: none;
    background: #0a0a0a;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.pnc-mobile-nav.is-open {
    max-height: 400px;
}

.pnc-mobile-nav .pnc-nav-list {
    display: flex;
    flex-direction: column;
    padding: 12px 20px 20px;
}

.pnc-mobile-nav .pnc-nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
}

.pnc-hero {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
}

.pnc-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.pnc-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.pnc-slide.is-active {
    opacity: 1;
}

.pnc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.pnc-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    z-index: 2;
}

.pnc-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 251, 200, 0.15);
    border: 1px solid rgba(0, 251, 200, 0.35);
    color: var(--clr-login);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    width: fit-content;
}

.pnc-slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.pnc-slide-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    max-width: 560px;
}

.pnc-slide-subtitle strong {
    color: var(--clr-login);
}

.pnc-slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.pnc-slider-prev, .pnc-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.pnc-slider-prev:hover, .pnc-slider-next:hover {
    background: rgba(0, 251, 200, 0.25);
}

.pnc-slider-prev {
    left: 20px;
}

.pnc-slider-next {
    right: 20px;
}

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

.pnc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.pnc-dot.is-active {
    background: var(--clr-login);
    transform: scale(1.3);
}

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

.pnc-section--dark {
    background: var(--clr-bg-dark);
}

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

.pnc-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.pnc-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--clr-login);
    margin: 12px auto 0;
    border-radius: 2px;
}

.pnc-section-subtitle {
    font-size: 16px;
    color: var(--clr-text-muted);
    margin-top: 8px;
}

.pnc-advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pnc-advantage-card {
    flex: 1 1 calc(33.333% - 14px);
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.pnc-advantage-card:hover {
    transform: translateY(-4px);
    background: var(--clr-card-hover);
    border-color: rgba(0, 251, 200, 0.2);
}

.pnc-advantage-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.pnc-advantage-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.pnc-advantage-text {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.pnc-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
}

.pnc-winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.pnc-winners-table th, .pnc-winners-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.pnc-winners-table th {
    background: rgba(0, 251, 200, 0.08);
    color: var(--clr-login);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pnc-winners-table tr:last-child td {
    border-bottom: none;
}

.pnc-winners-table tbody tr {
    transition: background var(--transition);
}

.pnc-winners-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.pnc-winners-table td {
    font-size: 14px;
    color: var(--clr-text-muted);
}

.pnc-winners-table td:first-child {
    color: var(--clr-login);
    font-weight: 700;
    width: 40px;
}

.pnc-winners-table td:nth-child(2) {
    color: #fff;
    font-weight: 600;
}

.pnc-win-amount {
    color: #00fbc8 !important;
    font-weight: 700 !important;
}

.pnc-video-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--clr-border);
}

.pnc-video-wrap iframe {
    display: block;
    width: 100%;
    height: 480px;
}

.pnc-bonuses-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.pnc-bonus-card {
    flex: 1 1 calc(33.333% - 14px);
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color var(--transition), transform var(--transition);
}

.pnc-bonus-card:hover {
    border-color: rgba(255, 46, 9, 0.35);
    transform: translateY(-3px);
}

.pnc-bonus-badge {
    display: inline-block;
    background: rgba(255, 46, 9, 0.15);
    border: 1px solid rgba(255, 46, 9, 0.3);
    color: var(--clr-signup);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.pnc-bonus-icon {
    font-size: 40px;
}

.pnc-bonus-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.pnc-bonus-amount {
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-text-muted);
}

.pnc-bonus-amount span {
    color: var(--clr-login);
}

.pnc-bonus-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
}

.pnc-bonuses-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.pnc-bonus-prev, .pnc-bonus-next {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.pnc-bonus-prev:hover, .pnc-bonus-next:hover {
    background: rgba(0, 251, 200, 0.15);
}

.pnc-bonus-dots {
    display: flex;
    gap: 6px;
}

.pnc-bdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background var(--transition);
}

.pnc-bdot.is-active {
    background: var(--clr-login);
}

.pnc-slot-machine {
    max-width: 520px;
    margin: 0 auto;
    background: var(--clr-bg-darker);
    border: 2px solid rgba(0, 251, 200, 0.2);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.pnc-slot-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000;
    border: 1px solid rgba(0, 251, 200, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.pnc-reel {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.1s;
}

.pnc-reel.spinning {
    animation: pnc-spin-reel 0.08s linear infinite;
}

.pnc-reel-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    font-weight: 300;
}

.pnc-slot-status {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    min-height: 24px;
}

.pnc-spin-btn {
    background: linear-gradient(135deg, var(--clr-login), #00c9a0);
    color: #000;
    border: none;
    padding: 16px 52px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-main);
    transition: transform var(--transition), box-shadow var(--transition);
}

.pnc-spin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 251, 200, 0.35);
}

.pnc-spin-btn:active {
    transform: translateY(0);
}

.pnc-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pnc-win-message {
    margin-top: 24px;
    background: rgba(0, 251, 200, 0.08);
    border: 1px solid rgba(0, 251, 200, 0.25);
    border-radius: var(--radius);
    padding: 24px;
    animation: pnc-fadein 0.4s ease;
}

.pnc-win-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-login);
    margin-bottom: 8px;
}

.pnc-win-bonus {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
}

.pnc-lose-message {
    margin-top: 24px;
    background: rgba(255, 46, 9, 0.07);
    border: 1px solid rgba(255, 46, 9, 0.2);
    border-radius: var(--radius);
    padding: 18px;
    animation: pnc-fadein 0.4s ease;
}

.pnc-lose-title {
    font-size: 16px;
    color: var(--clr-text-muted);
}

.pnc-content-area {
    max-width: 860px;
    margin: 0 auto;
}

.pnc-h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
    color: #fff;
}

.pnc-review-text h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 32px 0 14px;
    color: #fff;
    border-left: 3px solid var(--clr-login);
    padding-left: 14px;
}

.pnc-review-text h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 26px 0 12px;
    color: #e8e8e8;
}

.pnc-review-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #d0d0d0;
}

.pnc-review-text p {
    margin-bottom: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.pnc-review-text ul, .pnc-review-text ol {
    margin: 14px 0 18px 22px;
}

.pnc-review-text ul {
    list-style: disc;
}

.pnc-review-text ol {
    list-style: decimal;
}

.pnc-review-text li {
    margin-bottom: 7px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.pnc-review-text a {
    color: var(--clr-login);
    text-decoration: underline;
}

.pnc-review-text strong {
    color: #fff;
    font-weight: 700;
}

.pnc-review-text em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.pnc-review-text blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    background: rgba(0, 251, 200, 0.06);
    border-left: 4px solid var(--clr-login);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.pnc-review-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.pnc-review-text table th, .pnc-review-text table td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    font-size: 14px;
}

.pnc-review-text table th {
    background: rgba(0, 251, 200, 0.08);
    color: var(--clr-login);
    font-weight: 700;
}

.pnc-review-text table td {
    color: rgba(255, 255, 255, 0.78);
}

.pnc-review-text img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 12px 0;
}

.pnc-review-text hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 28px 0;
}

.pnc-author-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px;
}

.pnc-author-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-login);
    flex-shrink: 0;
}

.pnc-author-info {
    flex: 1;
}

.pnc-author-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.pnc-author-role {
    font-size: 14px;
    color: var(--clr-login);
    font-weight: 600;
    margin-bottom: 14px;
}

.pnc-author-bio {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.pnc-author-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pnc-social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: background var(--transition), border-color var(--transition);
}

.pnc-social-link:hover {
    background: rgba(0, 251, 200, 0.12);
    border-color: rgba(0, 251, 200, 0.3);
    color: #fff;
}

.pnc-footer-wrap {
    background: var(--clr-header);
}

.pnc-footer {
    padding: 48px 0 24px;
}

.pnc-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 36px;
}

.pnc-footer-col {
    flex: 1 1 180px;
}

.pnc-footer-logo img {
    height: 38px;
    width: auto;
    margin-bottom: 14px;
}

.pnc-footer-tagline {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 220px;
}

.pnc-footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}

.pnc-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.pnc-footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.pnc-footer-link:hover {
    color: var(--clr-login);
}

.pnc-footer-payments, .pnc-footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pnc-payment-badge, .pnc-provider-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.pnc-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0 0 20px;
}

.pnc-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
}

.pnc-footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}

.pnc-footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    max-width: 640px;
    line-height: 1.6;
}

.pnc-footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.pnc-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: linear-gradient(90deg, #1a0a00, #2a0000);
    border-top: 2px solid var(--clr-signup);
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.pnc-widget.is-hidden {
    transform: translateY(100%);
}

.pnc-widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pnc-widget-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.pnc-widget-text strong {
    color: #fff;
}

.pnc-widget-btn {
    flex-shrink: 0;
    font-size: 15px;
    padding: 10px 28px;
}

.pnc-widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.pnc-widget-close:hover {
    color: #fff;
}

.x7k2q3 {
    position: relative;
}

.r4t6y8 {
    overflow: hidden;
}

.m9n0b2 {
    transition: all 0.3s ease;
}

.w3e5r7 {
    display: block;
}

.a1s2d4 {
    visibility: visible;
}

.zx91qw {
    opacity: 1;
}

.vbn456 {
    z-index: 1;
}

.qwe789 {
    pointer-events: auto;
}

.pnc-d7f2l {
    max-width: 100%;
}

.pnc-k3m8n {
    border-box: border-box;
}

.pnc-hidden-el {
    display: none;
    height: 0;
    overflow: hidden;
}

.pnc-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.is-anim-hidden {
    opacity: 0;
    transform: translateY(24px);
}

.is-anim-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

@keyframes pnc-pulse {
    0%, 100% {
        box-shadow: 0 0 4px #00fbc8;
    }
    50% {
        box-shadow: 0 0 12px #00fbc8, 0 0 20px rgba(0, 251, 200, 0.4);
    }
}

@keyframes pnc-spin-reel {
    0% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(-4px);
    }
}

@keyframes pnc-fadein {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pnc-widget-slide {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .pnc-slide-title {
        font-size: 36px;
    }

    .pnc-slide-content {
        padding: 0 40px;
    }

    .pnc-advantage-card {
        flex-basis: calc(50% - 10px);
    }
}

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

    .pnc-burger {
        display: flex;
    }

    .pnc-mobile-nav {
        display: block;
    }

    .pnc-header {
        gap: 10px;
    }

    .pnc-online {
        display: none;
    }

    .pnc-hero {
        height: 420px;
    }

    .pnc-slide-title {
        font-size: 26px;
    }

    .pnc-slide-subtitle {
        font-size: 15px;
    }

    .pnc-slide-content {
        padding: 0 24px;
    }

    .pnc-slide-actions {
        gap: 10px;
    }

    .pnc-btn--lg {
        padding: 11px 22px;
        font-size: 14px;
    }

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

    .pnc-section-title {
        font-size: 24px;
    }

    .pnc-advantage-card {
        flex-basis: calc(50% - 10px);
    }

    .pnc-bonuses-slider {
        flex-direction: column;
    }

    .pnc-bonus-card {
        display: none;
        flex-basis: 100%;
    }

    .pnc-bonus-card.is-mobile-active {
        display: flex;
    }

    .pnc-bonuses-nav {
        display: flex;
    }

    .pnc-video-wrap iframe {
        height: 240px;
    }

    .pnc-author-block {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .pnc-author-socials {
        justify-content: center;
    }

    .pnc-footer-top {
        gap: 28px;
    }

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

    .pnc-h1 {
        font-size: 24px;
    }

    .pnc-widget-text {
        font-size: 12px;
    }

    .pnc-slot-machine {
        padding: 28px 18px;
    }

    .pnc-reel {
        width: 74px;
        height: 74px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .pnc-advantage-card {
        flex-basis: 100%;
    }

    .pnc-slide-title {
        font-size: 22px;
    }

    .pnc-hero {
        height: 340px;
    }

    .pnc-widget-inner {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pnc-widget-btn {
        width: 100%;
    }
}

.ytesc {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    overflow: hidden;
}

.ytesc * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.ytesc h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ytesc h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin: 40px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ytesc h3 {
    font-size: 1.35rem;
    margin: 28px 0 14px;
}

.ytesc p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.ytesc ul,
.ytesc ol {
    margin: 18px 0 18px 22px;
}

.ytesc li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.ytesc a {
    color: #00fbc8;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.ytesc img,
.ytesc iframe,
.ytesc video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.ytesc table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 24px 0;
}

.ytesc table th,
.ytesc table td {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    white-space: normal;
}

.ytesc blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #00fbc8;
    background: rgba(0, 251, 200, .08);
    border-radius: 0 12px 12px 0;
}

@media (max-width: 768px) {

    .ytesc {
        margin: 20px 12px;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .ytesc h1 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .ytesc h2 {
        font-size: 1.35rem;
        margin: 28px 0 14px;
    }

    .ytesc h3 {
        font-size: 1.15rem;
        margin: 22px 0 12px;
    }

    .ytesc p,
    .ytesc li {
        font-size: .95rem;
        line-height: 1.7;
    }

    .ytesc table th,
    .ytesc table td {
        padding: 10px;
        font-size: .85rem;
    }

    .ytesc blockquote {
        padding: 14px;
    }
}

@media (max-width: 480px) {

    .ytesc {
        margin: 16px 8px;
        padding: 16px 14px;
    }

    .ytesc h1 {
        font-size: 1.45rem;
    }

    .ytesc h2 {
        font-size: 1.2rem;
    }

    .ytesc h3 {
        font-size: 1.05rem;
    }

    .ytesc p,
    .ytesc li {
        font-size: .9rem;
    }
}

.pnc-mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .pnc-mobile-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        z-index: 9999;
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 14px 16px 18px;
        background: #000;
        border-top: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 18px 36px rgba(0, 0, 0, .55);
    }

    .pnc-mobile-nav.is-open {
        display: flex;
    }

    .pnc-mobile-nav a {
        padding: 12px 14px;
        border-radius: 8px;
        color: #fff;
        background: rgba(255, 255, 255, .06);
    }
}