/*

Theme Name: WMD Theme

*/



/*html :where(img){height:inherit;max-width:none;}*/


button.toggle-menu-button {
    font-size: 24px;
    background: none;
    border: none;
}

/* author section design */
.playlivenation-author-container {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 9px 9px 2px;
    background: #eefdeb;
    border-radius: 20px;
    border: 1px solid rgb(78 185 50);
    position: relative;
    box-shadow: 0 0 20px rgba(0,255,255,0.2);
    overflow: hidden;
}

/* Hologram grid background */
.playlivenation-author-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #4bb43117 1px, transparent 1px), linear-gradient(#4bb43117 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.author-img-con img {
    width: 82px;
    height: 81px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid rgb(16 81 0 / 68%);
    box-shadow: 0 0 15px rgb(72 173 48 / 68%);
    transition: 0.4s ease;
    position: relative;
    z-index: 999999;
}
.author-img-con img:hover {
    transform: scale(1.1) rotate(2deg);
}
.date-container {
    color: #000000;
    margin-top: 7px;
}
.date-author-cl a {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}
.author-paragraph {
    margin-top: 5px;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
}
.date-author-cl span {
    font-size: 18px;
    font-weight: 600;
}

/* WRAP WHOLE AUTHOR BOX IN CYBERPUNK STYLE */
.profile-tab-content {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgb(76 175 80 / 45%);
    position: relative;
    overflow: hidden;
    color: #000000;
}

/* Hologram animated frame */
.profile-tab-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, #45a92f3d, rgb(76 182 49 / 0%), #8bc34a29);
    background-size: 250% 250%;
    animation: holoBorder 6s linear infinite;
    pointer-events: none;
}

@keyframes holoBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* HEADER AREA */
.profile-header-container {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    position: relative;
}

/* Avatar hologram glow */
.header-avatar-container img {
    width: 84px;
    height: 84px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgb(88 165 72);
    transition: 0.4s ease;
}

.header-avatar-container img:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 40px rgb(165 229 150);
}

/* NAME STYLE */
.header-profile-details h2 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* SECTION TITLE */
.group-title {
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #4CAF50;
}

/* FIELD TABLE */
.profile-fields-table {
    background: rgb(117 218 94 / 60%);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgb(61 150 43);
    font-size: 18px;
}

/* EACH FIELD ROW */
.author-f-name,
.author-field {
    display: flex;
    padding: 4px 0;
    border-bottom: 1px dashed rgb(67 164 46);
}

.author-f-name:last-child {
    border-bottom: none;
}

/* Labels */
.label strong {
    color: #000000;
}

/* Data value */
.data {
    font-weight: 600;
    color: #000000;
    padding-left: 4px;
}

/* CYBERPUNK SCANNER LINE ANIMATION */
.profile-tab-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -100%;
    height: 51px;
    background: linear-gradient(to bottom, rgb(139 195 74 / 8%) 0%, rgb(76 175 80 / 6%) 50%, rgb(76 175 80 / 6%) 100%);
    animation: scanner 5s infinite;
}

@keyframes scanner {
    0% { top: -100%; }
    50% { top: 120%; }
    100% { top: -100%; }
}

 button.toggle-menu-button {
        display: none;
    }
    .toggleMenu{
        display: none;
    }
/* RESPONSIVE */
@media (max-width: 600px) {
    .profile-header-container {
        flex-direction: column;
        text-align: center;
    }
}



@media(min-width:992px){
    button.toggle-menu-button {
        display: none;
    }
     .toggleMenu{
        display: none;
    }
    ul#menu-primary li {
    position: relative;
}
   ul#menu-primary li.menu-item-has-children ul.sub-menu {
    position: absolute;
    border: 1px solid #49af30;
    border-radius: 8px;
    list-style: none;
    padding: 2px;
    min-width: 180px;
    top: 45px;
	z-index:9999;
}

ul#menu-primary li.menu-item-has-children ul.sub-menu li a {
    width: 100%;
    background: #fafafa;
    border-radius: 8px;
}
ul#menu-primary li.menu-item-has-children ul.sub-menu li:hover a {
    color: #174a0c;
        background: #e6ffe0;
        border: none;
}
span.dropdown-toggle-icon:after {
    content: "\f107";
    position: absolute;
    top: 10px;
    right: 5px;
    font-size: 15px;
    font-family: 'fontAwesome';
}
li.menu-item-has-children ul.sub-menu {
    opacity: 0;
    visibility: 0;
    transform: translateY(10px);
     transition: 0.6s;
}
li.menu-item-has-children:hover ul.sub-menu {
    opacity: 01;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.6s;
}
}

@media(max-width:991px){
    header.site-header .container {
    display: flex;
    justify-content: space-between;
}
 button.toggle-menu-button,.toggleMenu {
        display: block ;
    }
     
ul#menu-primary li.menu-item-has-children {
    position: relative;
}
nav.main-navigation {
    position: absolute;
    top: 126px;
    background: #aaf199;
    width: 100%;
    left: 0;
    z-index: 9999;
}

ul#menu-primary {
    /* display: block; */
    display: none;
    padding: 5px;
}
ul#menu-primary li.menu-item-has-children .dropdown-toggle-icon:after {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    top: 9px;
    right: 16px;
    transition: 0.4s;
}
ul#menu-primary li.menu-item-has-children.active .dropdown-toggle-icon:after {
    transform: rotate(90deg);
    transition: 0.4s;
}
ul#menu-primary li a{
    width: 100%;
}
ul#menu-primary li.menu-item-has-children ul.sub-menu {
    display: none;
    margin: 0;
        list-style: none;
        padding: 0px 15px;
}
.author-paragraph{
    margin: 0;
}
}