.page-id-1234 #gorgo-menu-top {
    display: none;
}

.page-id-1234 #page {
    top: 0px;
}

#emilia {
    position: relative;
    top: 50px;
    font-size: 100%;
    color: #c2c2c2;
    font-family: "Stylish", serif;
	margin-bottom: 100px;
}

#emilia figure {
    width: 100%;
    text-align: center;
}

#emilia h1 {
    font-size: 400%;
    font-family: "Nanum Brush Script", cursive;
    font-weight: 400;
    font-style: normal;
}

#emilia h2 {
    font-size: 200%;
    letter-spacing: 2px;
    margin: 10px;
    font-family: "Kirang Haerang", system-ui;
    font-weight: 400;
    font-style: normal;
}

#emilia h3 {
    font-family: "Nanum Brush Script", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    margin: 0px 0px -20px 0px;
    font-size: 200%;
    color: lightgray;
}

#emilia p {
    padding: 0px;
}

#emilia strong {
color: lightgray;
}

.emilia-flex {
}

.grid-wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    grid-template-columns: auto 1fr;
}

#basic-instinct {
    margin: 0 auto;
    margin-left: 20px;
    padding-left: 10px;
    float: right;
    border-left: 2px #333333 solid;
    width: 300px;
}

#basic-instinct h5 {
    padding: 0px;
    margin: 0px auto;
    text-align: center;
    width: 100%;
    font-size: 200%;
    font-family: "Kirang Haerang", system-ui;
    letter-spacing: 2px;
    font-weight: 400;
    color: #e53f3f;
}

#basic-instinct p {
    font-size: 70%;
    padding: 0px 0px 0px 0px !important;
    text-transform: uppercase;
    font-weight: 400;
}

.grid-left {
    text-transform: uppercase;
    font-weight: bold !important;
}

#inside-the-ring h2 {
    text-align: left;
    padding: 0px;
    margin: 0px 0 -5px 0px !important;
    position: relative;
    top: -5px;
}

.hex-left::before {
    content: "𖤐";
    color: #e53f3f;
    margin-right: 5px;
}

.grid-wrapper.gimper {
    background: url(/img/grid-bg.webp);
    background-repeat: repeat-y;
    background-position: center;
    width: 100%;
    grid-template-columns: 1fr 1fr;
}

#emilia ul {
    list-style-type: none;
    margin-left: 0px;
    padding-left: 0px;
}

#emilia li {
    color: #c2c2c2;
    margin-bottom: 10px;
}

#emilia li::before {
    content: "𖤐";
    margin-right: 0.5em;
    color: inherit;
    font-size: 1em;
    display: inline-block;
    width: 1em;
    color: #e53f3f;
}

.emilia-quote {
    font-style: italic;
    font-size: 180%;
    margin: 0px 0 70px 0 !important;
    padding: 0 !important;
    font-family: "Slackside One", cursive;
    line-height: 110%;
}

.hideyimage {
display:none;
}


#emilia h4 {
    font-family: "Kirang Haerang", system-ui;
    font-style: normal;
    padding: 0px;
    margin: 15px auto 0px auto;
    font-weight: normal;
}

#gear p {
    margin-top: 0px;
}

#wrestling p {
    padding-top: 0;
    margin-top: 0;
}

#match-preferences h6 {
    padding: 0px;
    margin: 15px auto -20px auto;
    font-size: 100%;
    font-style: italic;
    font-weight: normal;
    color: #cf2e2e;
}

#match-preferences h5 {
    font-family: 'Slackside One';
    font-style: normal;
    font-size: 150%;
    font-weight: normal;
    color: #c2c2c2;
    margin-bottom: -13px;
}

#emilia-menu {
    width: 800px;
    flex-wrap: wrap;
    padding: 0px 0 25px 0;
    position: fixed;
    top: 0px;
    z-index: 100000;
}

#emilia-menu-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px 10px;
    width: 800px;
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 25px;
    font-family: 'Marcellus SC';
    font-size: 80%;
    letter-spacing: 0.5px;
    background-color: black;
}

#emilia-menu a {
  color: #e53f3f !important;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

#emilia-menu a:hover {
  color: black !important;
  text-decoration: none;
}

a.hover-symbol {
  color: #e53f3f; /* Default link color */
  text-decoration: underline;
  position: relative; /* Often useful for positioning pseudo-elements */
  display: inline-block; /* Helps maintain layout consistency */
  line-height: 1.2; /* Adjust based on font */
  
  /* Transition for the original text fading out (to transparent) */
  transition: color 0.3s ease-in-out; 
}

/* Prepare the ::after pseudo-element in the default state */
a.hover-symbol::after {
  content: '𖤐'; /* <-- REPLACE THIS with your desired ASCII symbol */
  
  /* Set the final desired color and style for the symbol */
  color: red; /* <-- Set the hover color */
  font-size: 1em; /* Match original text size or set specific size */
  font-weight: bold; /* Optional styling */
  
  /* --- Positioning --- */
  /* Position it directly over the original text space */
  position: absolute; 
  left: 0; 
  top: 0;
  width: 100%; /* Cover the link area */
  height: 100%; /* Cover the link area */
  display: flex; /* Helps with centering if needed */
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  text-align: center; /* Ensure alignment */
  
  /* --- Initially Hidden & Set Up Transition --- */
  opacity: 0; /* Start fully transparent */
  visibility: hidden; /* Hide it from accessibility tree etc. when transparent */
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s; 
  /* Transition opacity over 0.3s */
  /* Delay visibility change until opacity transition ends */
}

/* On hover: Hide original text */
a.hover-symbol:hover {
  color: transparent; /* Make original text invisible */
  text-decoration: none; /* Optional */
}

/* On hover: Fade in the ::after pseudo-element */
a.hover-symbol:hover::after {
  opacity: 1; /* Fade to fully visible */
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0s; /* Ensure visibility changes immediately */
}




.em-grad {
    width: 800px;
    height: 25px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), black);
}


.renders-inner {
    display: flex
;
}




/* ---------------- MEDIA SCREEN ---------------- */




@media only screen and (max-width:700px) {

#emilia {
font-size: 85%;
}

#emilia h1 {
    font-size: 300%;
}

#basic-instinct {
    border: none;
    float: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
}

#basic-instinct p {
    font-size: 90%;
}

.grid-left {
    text-align: right;
}

.grid-wrapper {
    grid-template-columns: 1fr 1fr;
}

.hideyimage {
display:block;
}

.grid-wrapper p {
    border-bottom: 1px solid #333333;
}

.grid-wrapper.gimper {
    display: block;
    background: none;
}

.grid-wrapper.gimper p {
    border-bottom: none;
}

#emilia-menu {
    width: 97%;
}

#emilia-menu-inner {
    width: auto;
}

.em-grad {
    width: auto;
}

.renders-inner {
    display: flex;
    flex-wrap: wrap;
}

}