/* Desktop/Laptop: show crown and social icons, hide hamburger/mobile social */
@media (min-width: 700px) {
    .jb-nav-left {
        display: flex !important;
    }
    .jb-nav-right {
        display: flex !important;
    }
    .jb-hamburger {
        display: none !important;
    }
    .jb-social-mobile {
        display: none !important;
    }
}
/* Mobile/Tablet: hide crown and desktop social, show hamburger/mobile social */
@media (max-width: 699px) {
    .jb-nav-left {
        display: none !important;
    }
    .jb-nav-right {
        display: none !important;
    }
    .jb-hamburger {
        display: flex !important;
    }
    .jb-nav {
        position: relative;
    }
    .jb-logo-wrapper {
        margin-bottom: -163px;
    }
    .jb-logo {
        max-width: 70vw;
        min-width: 120px;
        margin: 0 auto;
        display: block;
    }
}
@media (max-width: 700px) {
    .jb-nav-left {
        display: none;
    }
    .jb-nav-right {
        display: none;
    }
    .jb-hamburger {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        cursor: pointer;
        width: 100%;
        padding: 0.5rem 1rem;
    }
    .jb-social-mobile {
        display: none;
        flex-direction: row;
        gap: 1.2rem;
        justify-content: flex-end;
        padding: 0.8rem 1rem;
        background: #222;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.4);
        position: absolute;
        top: calc(100% + 5px);
        right: 0.5rem;
        z-index: 999;
        border: 2px solid #FFD700;
        width: auto;
        min-width: auto;
    }
}
.jb-hamburger {
    display: none;
    font-size: 2rem;
    color: #FFD700;
    background: none;
    border: none;
    outline: none;
    margin-left: auto;
    margin-right: 0.5rem;
    transition: color 0.2s;
}
.jb-hamburger:hover {
    color: #fff;
}
.jb-social-mobile {
    display: none;
}
/* Extra small devices (phones, <480px) */
@media (max-width: 480px) {
    .jb-header {
        padding: 0;
    }
    .jb-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.7rem 0.2rem 0.2rem 0.2rem;
    }
    .jb-logo {
        max-width: 90vw;
        min-width: 120px;
    }
    .jb-content {
        padding: 0.7rem 0.2rem;
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    .jb-contact-form {
        padding: 1rem 0.2rem;
        max-width: 98vw;
    }
    .jb-content h1 {
        font-size: 2rem;
    }
    .jb-content h2 {
        font-size: 1.1rem;
    }
    .jb-content ul {
        padding: 0.7rem 0.5rem;
    }
    .jb-footer {
        font-size: 0.9rem;
        padding: 1rem 0.2rem 0.7rem 0.2rem;
    }
}

/* Small tablets (portrait, <700px) */
@media (max-width: 700px) {
    .jb-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    .jb-logo {
        max-width: 140px;
    }
    .jb-content {
        padding: 1.2rem 0.5rem;
        margin-top: 29px;
    }
    .jb-contact-form {
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
    }
    .jb-content h1 {
        font-size: 2.2rem;
    }
    .jb-content h2 {
        font-size: 1.2rem;
    }
    .jb-content ul {
        padding: 0.8rem 0.7rem;
    }
    .jb-footer {
        font-size: 0.95rem;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
}

/* Tablets landscape and small laptops (<1024px) */
@media (max-width: 1024px) {
    .jb-content {
        max-width: 98vw;
        padding: 2rem 1rem;
    }
    .jb-contact-form {
        max-width: 98vw;
        padding: 2rem 1rem;
    }
    .jb-logo {
        max-width: 180px;
    }
    .jb-content h1 {
        font-size: 2.5rem;
    }
    .jb-content h2 {
        font-size: 1.4rem;
    }
    .jb-content ul {
        padding: 1rem 1rem;
    }
}
.jb-contact-form .form-group {
    position: relative;
    width: 100%;
    margin-bottom: 1.2rem;
}
.jb-contact-form input,
.jb-contact-form textarea {
    background: #181818;
    color: #FFD700;
    border: 1.5px solid #FFD700;
    border-radius: 8px;
    font-size: 1.1rem;
    padding: 1.3rem 1rem 0.7rem 1rem;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.jb-contact-form label {
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    color: #FFD700;
    background: #222;
    padding: 0 0.3rem;
    font-size: 1.1rem;
    pointer-events: none;
    transition: 0.2s ease all;
    border-radius: 4px;
}
.jb-contact-form input:focus + label,
.jb-contact-form input:not(:placeholder-shown) + label,
.jb-contact-form textarea:focus + label,
.jb-contact-form textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.95rem;
    background: #222;
    color: #fff;
    box-shadow: 0 1px 4px #FFD70033;
}
.jb-contact-form .form-group {
    position: relative;
    width: 100%;
    margin-bottom: 1.2rem;
}
.jb-contact-form input,
.jb-contact-form textarea {
    padding: 1.3rem 1rem 0.7rem 1rem;
}
.jb-contact-form label {
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    color: #FFD700;
    background: #222;
    padding: 0 0.3rem;
    font-size: 1.1rem;
    pointer-events: none;
    transition: 0.2s ease all;
    border-radius: 4px;
}
.jb-contact-form input:focus + label,
.jb-contact-form input:not(:placeholder-shown) + label,
.jb-contact-form textarea:focus + label,
.jb-contact-form textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.95rem;
    background: #222;
    color: #fff;
    box-shadow: 0 1px 4px #FFD70033;
}
/* JB Pro League Theme */
/* JB Pro League Theme - Updated for Professional Look */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181818;
    color: #fff;
    margin: 0;
    padding: 0;
}
.jb-header {
    background: #222;
    padding: 0;
    position: relative;
    border-bottom: none;
}
.jb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2rem 0.5rem 2rem;
    position: relative;
}
.jb-nav-side {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jb-nav-left {
    margin-right: 10px;
}
.jb-nav-right {
    gap: 0.7rem;
    margin-left: 10px;
}
.jb-crown {
    width: 32px;
    height: 32px;
}
.jb-nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}
.jb-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.social-icon {
    color: #FFD700 !important;
    font-size: 1.7rem;
    transition: color 0.2s, transform 0.2s;
    opacity: 0.85;
    filter: drop-shadow(0 0 2px #FFD700);
}
.social-icon:hover {
    color: #fff !important;
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 6px #FFD700);
}
.jb-nav-right .social-icon[disabled] {
    display: none;
}
.jb-nav-line {
    width: 100%;
    position: relative;
    margin-top: 0;
    margin-bottom: 0.5rem;
    z-index: 1;
}
.jb-nav-line hr {
    border: none;
    border-top: 5px solid #FFD700;
    margin: 0 0 0 0;
    height: 0;
}
.jb-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    margin-bottom: -157px;
}
.jb-logo {
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto;
    background: none;
}
.jb-content {
    max-width: 900px;
    margin: 2rem auto;
    margin-top: 67px;
    background: rgba(34,34,34,0.95);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
    padding: 2.5rem 2rem;
    border: 4px solid #FFD700;
    position: relative;
}
.jb-publish-date {
    color: #FFD700;
    font-size: 0.9rem;
    text-align: right;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-style: italic;
}
.jb-contact-form {
    background: #222;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
    padding: 2rem 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0 auto;
    border: 2px solid #FFD700;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}
.jb-contact-form h2 {
    color: #FFD700;
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    text-align: center;
    font-weight: bold;
}
.jb-contact-form input,
.jb-contact-form textarea {
    background: #181818;
    color: #FFD700;
    border: 1.5px solid #FFD700;
    border-radius: 8px;
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.jb-contact-form input:focus,
.jb-contact-form textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 8px #FFD700;
}
.jb-contact-form textarea {
    min-height: 100px;
    resize: vertical;
}
.jb-contact-form button {
    background: #FFD700;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 100%;
    box-sizing: border-box;
}
.jb-contact-form button:hover {
    background: #fff;
    color: #FFD700;
    box-shadow: 0 0 12px #FFD700;
}
.jb-content h1 {
    color: #FFD700;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px #FFD70055, 0 0px 2px #000;
    font-weight: 900;
    text-transform: uppercase;
}
.jb-content h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px #FFD70033;
    font-weight: 700;
    letter-spacing: 1px;
}
.jb-content ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
    padding: 0;
    font-size: 1.15rem;
    color: #FFD700;
    background: #181818;
    border-radius: 12px;
    box-shadow: 0 4px 24px #000a, 0 1px 0 #FFD70033 inset;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}
.jb-content li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #fff;
    text-shadow: 0 1px 4px #FFD70022;
}
.jb-content p {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 1px 8px #FFD70022;
}
.jb-footer {
    background: #222;
    color: #FFD700;
    text-align: center;
    padding: 1.5rem 1rem 1rem 1rem;
    border-top: 3px solid #FFD700;
    font-size: 1.05rem;
    margin-top: 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.18);
}
@media (max-width: 700px) {
    .jb-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    .jb-logo {
        max-width: 140px;
    }
    .jb-content {
        padding: 1.2rem 0.5rem;
    }
}
