/* === Poker skin overrides for winx theme === */

/* Global layout & background */
body {
    background: radial-gradient(circle at top, #173a2a 0, #02040a 45%, #020308 100%);
    color: rgba(245, 245, 245, 0.88);
}

/* Links & highlights */
a {
    color: #46e3a8;
}
a:hover,
a:focus {
    color: #ffdd57;
}

/* Header: dark with subtle glow */
.site-header {
    padding: 18px 0 14px;
    border-bottom: 1px solid rgba(255, 221, 87, 0.2);
    background: radial-gradient(circle at top, #1b3b2b 0, #05070c 55%, #05060a 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    position: relative;
    z-index: 20;
}

.site-header:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top center, rgba(70, 227, 168, 0.18), transparent 60%);
    opacity: 0.75;
}

/* Logo / title */
.site-branding .site-title a,
.site-branding .site-title {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.site-description {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

/* Navigation */
.main-navigation ul li {
    margin-left: 26px;
}

.main-navigation a {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    position: relative;
    padding-bottom: 4px;
}

.main-navigation a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #46e3a8, #ffdd57);
    transition: width 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation li.current_page_item > a,
.main-navigation li.current-menu-item > a {
    color: #ffffff;
}

.main-navigation a:hover:before,
.main-navigation a:focus:before,
.main-navigation li.current_page_item > a:before,
.main-navigation li.current-menu-item > a:before {
    width: 100%;
}

/* Header buttons: chips style */
.wbHeaderButtons {
    text-align: right;
}

.wbHeaderButtons .mainbtn,
.wbHeaderButtons .secbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.wbHeaderButtons .mainbtn {
    background: radial-gradient(circle at 30% 0, #ffe27a 0, #ffb300 32%, #ff8f00 100%);
    color: #1a1002;
}

.wbHeaderButtons .secbtn {
    margin-left: 10px;
    background: radial-gradient(circle at 30% 0, #5bffbf 0, #12b886 30%, #0b6145 100%);
    color: #020406;
}

.wbHeaderButtons .mainbtn:before,
.wbHeaderButtons .secbtn:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at -20% -20%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.wbHeaderButtons .mainbtn:hover,
.wbHeaderButtons .secbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.9);
}

.wbHeaderButtons .mainbtn:hover:before,
.wbHeaderButtons .secbtn:hover:before {
    opacity: 1;
}

/* Баннер с фоном-столом на весь блок */
.wbBannerSection {
    position: relative;
    padding: 80px 0 70px;
    margin-bottom: 40px;
    background: #020307 url('../img/winx-poker-table-new.png') center center no-repeat;
    background-size: cover;          /* картинка растягивается на весь блок */
    overflow: hidden;
    height: 600px;
}

/* Лёгкое затемнение/виньетка сверху, без картинки */
.wbBannerSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.05), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.05), transparent 55%),
        radial-gradient(circle at 50% 120%, rgba(0, 0, 0, 0.9), #020307 75%);
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Контент остаётся поверх */
.wbBannerSection .innerwrap {
    position: relative;
    z-index: 2;
    text-align: center;
}


.bannerTitle {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
}

.desc {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.wbBannerSection a.secbtn {
    margin: 26px auto 0;
    max-width: 260px;
    padding: 11px 26px;
}

/* Promo code chip */
.wbPromocode {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #2af598 0, #009e66 40%, #024029 100%);
    box-shadow: 0 10px 24px rgba(0,0,0,0.9);
    margin-top: 14px;
}

.wbPromocode span {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Content area */
.content {
    padding-top: 26px;
}

.site-main {
    background: radial-gradient(circle at top, rgba(9, 46, 31, 0.6), rgba(0, 0, 0, 0.85));
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
    padding: 24px 20px 32px;
    margin-bottom: 40px;
}

.text-content {
    padding: 24px 0 60px;
}

.text-content .innerwrap {
    background: rgba(0,0,0,0.7);
    border-radius: 24px;
    padding: 26px 22px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.9);
}

/* Post / slot grid cards */
.slotlist .slot-wrap,
.slot-wrap {
    background: radial-gradient(circle at 30% 0, #163726 0, #04100b 40%, #020305 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 221, 87, 0.18);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    position: relative;
    text-align: center;
    padding-bottom: 14px;
}

.slot-wrap img {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.slot-wrap span {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
}

.slot-wrap a.secbtn {
    max-width: 190px;
    padding: 8px 16px;
    margin-top: 10px;
}

/* Hover glow */
.slot-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.slot-wrap:hover:before {
    opacity: 1;
}

.slot-wrap:hover {
    transform: translateY(-3px);
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(255, 221, 87, 0.2);
}

/* Slot play iframe area */
.slotPlay {
    text-align: center;
    padding: 26px 0 36px;
}

.entry-content iframe {
    border-radius: 24px;
    box-shadow: 0 20px 46px rgba(0,0,0,0.95);
}

/* Sidebar */
#secondary {
    background: rgba(2, 5, 10, 0.96);
    border-radius: 22px;
    padding: 20px 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.92);
}

/* Widgets & footer */
.site-footer {
    background: #020308;
    border-top: 1px solid rgba(255, 221, 87, 0.15);
}

.wbFooterWidgets {
    padding: 34px 0 16px;
}

.wbFooterWidgets ul li a {
    color: rgba(255,255,255,0.6);
}

.wbFooterWidgets ul li a:hover {
    color: #ffffff;
}

.site-info {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
}

/* Tables & lists */
.entry-content table {
    border-collapse: collapse;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 14px;
    overflow: hidden;
}

.entry-content table th,
.entry-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.entry-content table th {
    background: rgba(10, 55, 37, 0.8);
    color: #ffffff;
    font-weight: 700;
}

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

/* Forms / inputs */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
textarea,
select {
    background: rgba(1, 5, 10, 0.96);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 9px 16px;
}

textarea {
    border-radius: 16px;
    min-height: 140px;
}

/* Mobile tweaks */
@media (max-width: 767px) {
    .wbBannerSection {
        padding: 60px 0 50px;
    }
    .wbBannerSection::before {
        width: 110%;
        aspect-ratio: 16 / 10;
    }
    .site-main {
        padding: 18px 15px 26px;
        border-radius: 18px;
    }
    .text-content .innerwrap {
        padding: 18px 16px;
        border-radius: 18px;
    }
    .wbHeaderButtons {
        text-align: left;
        margin-top: 10px;
    }
}

.text-content a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    text-decoration: none;
    transition: transform 0.15s 
ease, box-shadow 0.15s 
ease, background 0.2s 
ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
    position: relative;
    margin: 0 auto;
    background: radial-gradient(circle at 30% 0, #5bffbf 0, #12b886 30%, #0b6145 100%);
    color: #020406;
    max-width: 280px;
    text-align: center;
}

.col-6 {
    width: 100%;
    max-height: 278px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
}

.block-img {
    float: left;
    width: 15%;
    margin-right: 20px;
}

.wbPromocode span {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-left: 10px;
}
