:root {
    --bg: #000;
    --bg2: #0a0a0a;
    --yellow: #f3e64d;
    --yellow2: #fff58a;
    --ink: #000;
    --ink2: #121212;
    --panel: #f3e64d;
    --panelBorder: #000;
    --bar: #2a2a2a;
    --bar2: #3a3a3a;
    --shadow: 0 18px 55px rgba(0, 0, 0, .55);
    --radius: 12px;
    --maxW: 1240px;
    --sidebarW: 320px;
    --widgetPad: 12px;
    --rotatorH: 140px;
    --rotatorInnerPad: 10px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #000 url("../img/background.jpg") center/cover fixed no-repeat;
}

.rnHeader {
    width: var(--maxW);
    margin: 0 auto;
    padding-top: 16px;
}

.rnBanner {
    border-radius: 0;
    padding: 14px 0 10px;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.rnTitle {
    display: block;
    text-decoration: none;
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 56px;
    line-height: 1;
    color: #fff7c8;
    text-shadow: 0 0 10px rgba(255, 240, 120, .65), 0 0 26px rgba(255, 240, 120, .35), 2px 2px 0 rgba(0, 0, 0, .55);
}

.rnLogo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.rnNavBar {
    margin-top: 10px;
    background: rgba(40, 40, 40, .92);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    position: relative;
    z-index: 50;
}

.rnNavInner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
}

.rnNav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.rnNav a {
    display: inline-block;
    padding: 7px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 8px;
}

.rnNav a:hover {
    background: rgba(255, 255, 255, .10);
}

.rnNav a.isActive {
    background: rgba(0, 0, 0, .45);
    outline: 1px solid rgba(255, 255, 255, .18);
}

.navToggle {
    display: none;
    border: 0;
    background: rgba(0, 0, 0, .35);
    width: 40px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
}

.navToggle__bars {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
    margin: 0 auto;
}

.navToggle__bars:before,
.navToggle__bars:after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #fff;
}

.navToggle__bars:before {
    top: -6px;
}

.navToggle__bars:after {
    top: 6px;
}

.navOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 40;
}

body.nav-open .navOverlay {
    display: block;
}

.playerbar {
    width: var(--maxW);
    margin: 10px auto 0 auto;
    background: rgba(30, 30, 30, .92);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.playerbar__inner {
    padding: 10px 10px;
}

.playerbar__embed iframe {
    width: 100% !important;
    border: 0 !important;
    display: block;
}

.layout {
    max-width: var(--maxW);
    width: calc(100% - 24px);
    margin: 12px auto 30px auto;
}

.layout--rn {
    display: grid;
    grid-template-columns: 1fr var(--sidebarW);
    gap: 14px;
    align-items: start;
}

.mid,
.right {
    min-width: 0;
}

@media (min-width:781px) {
    .right {
        position: sticky;
        top: 12px;
    }
}

.rnContent {
    background: rgba(243, 230, 77, .92);
    border: 2px solid var(--panelBorder);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px 14px 18px 14px;
}

.rnHeading {
    margin: 2px 0 10px 0;
    font-size: 22px;
    font-weight: 900;
    color: #000;
}

.card {
    background: rgba(243, 230, 77, .92);
    border: 2px solid #000;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px;
}

.muted {
    color: rgba(0, 0, 0, .70);
}

.widget,
.sidebarBox {
    margin-bottom: 12px;
    border: 2px solid #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
    background: rgba(243, 230, 77, .92);
}

.widget-title,
.sidebarTitle {
    background: #000;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 12px;
    letter-spacing: .4px;
}

.widget-body,
.sidebarBody {
    padding: var(--widgetPad);
}

.widget-body img,
.sidebarBody img {
    max-width: 100%;
    height: auto;
}

.listenBtn,
.widget-body a.buttonLike,
.widget-body a,
.widget-body button {
    font-family: inherit;
}

.widget-body a.listenBtn,
.widget-body .listenBtn,
.listenBtn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 11px 12px;
    margin: 8px 0;
    border-radius: 10px;
    border: 2px solid #000;
    background: rgba(255, 255, 255, .18);
    color: #000;
    text-decoration: none;
    font-weight: 900;
}

.listenBtn:hover {
    background: rgba(255, 255, 255, .28);
}

#chat {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

#If1,
#IF1 {
    width: 100%;
    height: 340px;
    border: 0;
    overflow: hidden;
    display: block;
}

#If2,
#IF2 {
    width: 100%;
    height: 760px;
    border: 0;
    overflow: hidden;
    display: block;
}

.rnChatSingle iframe {
    width: 100%;
    height: 820px;
    border: 0;
    display: block;
}

.statusWrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.rnStatusFrame {
    width: 100%;
    max-width: 320px;
    height: 220px;
    border: 0;
    display: block;
    overflow: hidden;
    background: transparent;
}

.widget-body .rnRotator,
.sidebarBody .rnRotator {
    width: calc(100% + (var(--widgetPad) * 2));
    margin: calc(var(--widgetPad) * -1);
    margin-top: 0;
}

.rnRotator {
    position: relative;
    height: var(--rotatorH);
    overflow: hidden;
    border-radius: 14px;
    background: rgba(0, 0, 0, .18);
    outline: 1px solid rgba(0, 0, 0, .20);
}

.rnRotator__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--rotatorInnerPad);
}

.rnRotator__item.isActive {
    opacity: 1;
}

.rnRotator__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.rnRotator__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.rnRotator__item>.rnRotator__img {
    max-width: 100%;
    max-height: 100%;
}

.teamGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px);
    gap: 16px;
    justify-content: center;
}

.teamCard {
    width: 200px;
    border: 2px solid #000;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
}

.teamPhoto {
    width: 200px;
    height: 200px;
    background: center/cover no-repeat;
    border-bottom: 2px solid #000;
}

.teamInfo {
    padding: 10px;
    text-align: center;
}

.teamInfo .name {
    font-weight: 900;
}

.teamInfo .role {
    font-size: 12px;
    opacity: .85;
}

.progDay {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(0, 0, 0, .35);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 0 0 14px 0;
}

.progDayTitle {
    font-weight: 900;
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #000;
}

.progList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progItem {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(0, 0, 0, .20);
    border-radius: 12px;
    padding: 10px 12px;
}

.progRow {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    align-items: baseline;
}

.progTime {
    font-weight: 900;
    color: #000;
}

.progTitle {
    font-weight: 800;
    color: #000;
}

.progNotes {
    margin-top: 6px;
    color: rgba(0, 0, 0, .82);
    font-size: 14px;
    line-height: 1.35;
}

.waWidget img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.partnerList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 360px;
    overflow: auto;
    padding-right: 6px;
}

.partnerItem {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .25);
    background: rgba(255, 255, 255, .10);
}

.partnerItem img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    padding: 6px;
    display: block;
}

.rnContact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.rnContact .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.rnContact label {
    display: block;
    font-weight: 900;
    margin: 0 0 6px;
}

.rnContact input,
.rnContact textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .28);
    background: rgba(255, 255, 255, .35);
    outline: none;
}

.rnContact textarea {
    min-height: 140px;
    resize: vertical;
}

.rnContact input:focus,
.rnContact textarea:focus {
    border-color: rgba(0, 0, 0, .45);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .12);
}

.rnContact .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rnForm {
    display: grid;
    gap: 12px;
}

.rnFormRow {
    display: grid;
    gap: 8px;
}

.rnLabel {
    font-weight: 900;
}

.rnInput {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .28);
    background: rgba(255, 255, 255, .35);
    outline: none;
}

.rnInput:focus {
    border-color: rgba(0, 0, 0, .45);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .12);
}

.rnFormActions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (min-width:720px) {
    .rnContact .row.two {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:1300px) {
    :root {
        --maxW: calc(100vw - 32px);
    }
}

@media (max-width:780px) {
    .layout--rn {
        grid-template-columns: 1fr;
    }

    .rnTitle {
        font-size: 44px;
    }

    .navToggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .rnNav {
        display: none;
        width: 100%;
    }

    body.nav-open .rnNav {
        display: flex;
    }

    .rnNavInner {
        flex-wrap: wrap;
    }

    .right {
        position: static;
        top: auto;
    }

    body {
        background-attachment: scroll;
    }

    #If1,
    #IF1 {
        height: 760px;
    }

    #If2,
    #IF2 {
        height: 78vh;
        min-height: 680px;
    }
}

@media (max-width:520px) {
    .rnHeader {
        padding-top: 10px;
    }

    .rnBanner {
        padding: 16px 12px;
    }

    .rnTitle {
        font-size: 36px;
    }

    .rnNav a {
        font-size: 11px;
        padding: 6px 8px;
    }

    .playerbar__inner {
        padding: 8px;
    }

    .rnContent {
        padding: 12px;
    }

    :root {
        --sidebarW: 100%;
    }

    .rnLogo {
        height: 64px;
    }

    #If1,
    #IF1 {
        height: 900px;
    }

    #If2,
    #IF2 {
        height: 82vh;
        min-height: 720px;
    }

    .progRow {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .progTime {
        opacity: .92;
    }
}

@media (max-width:360px) {
    .rnTitle {
        font-size: 32px;
    }
}

@supports (-webkit-touch-callout:none) {

    input,
    textarea,
    select,
    button {
        font-size: 16px;
    }
}