/* General Styles MAIN INDEX:::::::::::::::::::::::: */
    /* General Styles */
    body {
      font-family: Arial, sans-serif;
      text-align: center;
      font-size: 16px;
      color: #e1e3e8;
      background-color: #283040;
      margin: 0;
      padding: 0;
    }
    
        /* Link Styles */
    a {
      color: #63a4ff;
    }

    a:active {
      color: #63a4ff;
    }

    a:hover {
      text-decoration: underline;
      color: #337ab7;
    }

    a:visited {
      text-decoration: none;
    }
    /* Hover Zoom Effect */
    .hover-zoom {
      display: flex;
      transition: transform 0.3s ease;
    }
    .hover-zoom:hover {
      transform: scale(1.1);
    }    
    
/* HEADER::::::::::::::::::::::::::::::::::::::::::::::::: */    
    /* General Styles */
    .header {
      font-family: Arial, sans-serif;
      text-align: center;
      font-size: 16px;
      color: #e1e3e8;
      background-color: #283040;
      margin: 0;
      padding: 0;
    }

    /* Horizontal Layout */
    .wb_content.wb-layout-horizontal {
      display: flex;
      justify-content: center;
      background-color: #6392f8; /* Background color */
      height: 45px;
      border-bottom: 3px solid #3b5383;
    }

    .menu-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 800px; /* Limits the width of the container */
    }

    #my_logo img {
      opacity: 1;
      box-sizing: border-box;
      width: auto;
      height: 33px;
      max-width: 50px;
      flex: 0 0 auto;
      box-shadow: 5.6px 5.6px 4px 0 rgba(0, 0, 0, 0.3);
      margin-right: 5px;
      margin-top: 5px;
    }

    .wb_menu ul.hmenu {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }

    .wb_menu ul.hmenu li {
      display: flex;
      align-items: center;
      gap: 5px; /* Space between icon and text */
    }

    .wb_menu ul.hmenu li a {
      text-decoration: none;
      color: #ffffff;
      font-family: Arial, sans-serif;
      font-size: 16px;
      transition: color 0.3s;
      padding: 15px 18px;
    }

    .wb_menu ul.hmenu li:hover {
      background: #194cbc;
      border-bottom: 3px solid #3b5383;
    }

    .act {
      background: #1E2630;
      border-left: 3px solid #3b5383;
      border-right: 3px solid #3b5383;
      border-bottom: 3px solid #1E2630;
    }
    .act a {
        color: #6392f8 !important;
    }
    .act a:hover {
        background: #1E2630;
        border-bottom: 5px solid #1E2630;
    }
    .wb_menu ul.hmenu li svg {
      width: 30px;
      height: 20px;
      fill: currentColor; /* Matches text color */
    } 

/* HEADLINE::::::::::::::::::::::::::::::::::::::::::::::::: */     
/* Logo Header */
    .logo-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid #21435f;
      background: #1e2630;
      position: relative;
      width: 100%;
      height: 55px;
    }   
    @media (max-width: 600px) {
      .logo-header {
        height: 50px;
      }
    }



/* Editor Note */
 .editornote {
    padding: 5px;
    font-weight: 700;
    font-size: 65%;
    line-height: 90%;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 500px;
    justify-content: flex-start;
    align-items: center;
    }

    @media (min-width: 600px) and (max-width: 992px) { 
        .editornote {
            font-size: 55%;
            width: 85%;
            max-width: 450px;
        }
    }

    @media (max-width: 600px) {
      .editornote {
        font-size: 50%;
        width: 80%;
        max-width: 400px;
      }
    }


/* MENU:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */    
#menu {
    text-align: left;
    margin: 50px auto;
    margin-top: 20px;
    max-width: 92%;
    width: 800px;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #6392f8;
}
#menu p{
    font-size: 18px;
    color: #e1e3e8;
}
@media (max-width: 600px) {
    #menu p {
    font-size: 16px;
    }
}

#menulist{
    display: flex;
    flex-direction: column;
}

#menuli {
    background-color: rgba(99, 146, 248, 0.2);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #6392f8;
    margin: 5px auto;
    text-decoration: none;
    color: #e1e3e8;
}
#menu a:hover {
    color: #e1e3e8 !important;
}

/* description */
    .descr {
    width: 800px;
    max-width: 92%;
    margin: 5px auto;
    font-size: 16px;
    color: #e1e3e8;
    background-color: #283040;
    padding: 15px;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 50px;

}
@media (max-width: 600px) {
    .descr {
    font-size: 80%;
    }
}
.level {
    font-size: 15px;
    font-weight: 400;
    color: #98acd7;
    text-align: center;
    line-height: 23px;
    margin: 40px auto;
}
@media (max-width: 600px) {
    .level{
    font-size: 80%;
    }
}
#play {
    margin: 0px auto;
    width: 94%;
    max-width: 800px;
}

@media (max-width: 600px) {
    #level {
    font-size: 110%;
    }
}


/* Initial load zoom animation for the wrapper */
.load-zoom {
  display: inline-block; /* Ensure proper transform behavior */
  animation: zoomIn 0.6s ease forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#emojihero {
  font-size: 230% !important; flex-shrink: 0; width: 55px; margin: 0px;
}
@media (min-width: 600px) {
    #emojihero{
    margin-left: 10px;
    margin-right: 10px;
    }
}
@media (min-width: 920px) {
    #emojihero{
    margin-left: 35px;
    margin-right: 20px;
    }
}

#menuhero {
  border: 1px solid #6392f8; padding: 12px 6px; border-radius: 8px; background-color: rgb(30 35 41 / 20%); margin: 0px; margin-right: 25px; font-weight: 800; width: 90px; min-width: 90px; text-align: center;
}
@media (max-width: 600px) {
    #menuhero{
    width: 82px; 
    min-width: 82px;
    margin-right: 8px;
    }
}

#smalltexthero {
  margin: 0; line-height: 1.3
}

html {
  scroll-behavior: smooth;
}

/* BLOG:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */ 
    /* Global styles */
    .blogbody {
        width: 800px;
        max-width: 96%;
        color: #e1e3e8;
        margin: 0px auto;
        padding: 5px;
        border-radius: 8px;
        border: 1px solid #6392f8;
    }
    header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }


#catalogSelect {
  padding: 8px 38px 8px 8px; /* extra right padding for the arrow */
  font-size: 16px;
  border: 1px solid #6392f8;
  border-radius: 4px;
  background-color: #1E2630;
  color: #c0d3fc;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  cursor: pointer;
  width: 50%;
  -webkit-appearance: none; /* Remove default styling in Chrome/Safari */
  -moz-appearance: none;    /* Remove default styling in Firefox */
  appearance: none;         /* Standard property */
}
#catalogSelect:focus {
  border-color: #66afe9;
  outline: none;
  box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
}

#searchInput {
    padding: 8px 38px 8px 8px;
    width: 50%;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #6392f8;
    background-color: #1E2630; 
    color: #c0d3fc;
}

#searchInput:focus {
  border-color: #66afe9;
  outline: none;
  box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
}

#searchInput::placeholder {
    color: rgb(192 211 252 / .5);
}

/* Post styling */
#posts article {
    border: 1px solid #6392f8;
    padding: 15px 0;
    border-radius: 8px;
    background-color: rgba(99, 146, 248, 0.2);
    margin-bottom: 30px;
}

@media (min-width: 600px) {
    #posts article{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    margin-bottom: 20px;
    }
}

.postcontent {
    padding-left: 10px;
    padding-right: 10px;
}
@media (min-width: 600px) {
    .postcontent {
    display: flex;
    flex-direction: column;
    width: 100%;
    }
}


#posts article h2 {
    margin: 10px 0;
    font-size: 16px;
}
@media (min-width: 600px) {
    #posts article h2 {
    margin: 5px 0;
    }
}
#posts article p {
    margin: 0;
    line-height: 1.5;
    text-align: left;
    font-size: 15px;
}
@media (min-width: 600px) {
    #posts article p {
    font-size: 16px;
    }
}


/* Image styling */
.post-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-top: 1px solid #63a4ff;
    border-bottom: 1px solid #63a4ff;
}
@media (min-width: 600px) {
    .post-image {
    max-width: 90%;
    margin-bottom: 0px;
    border: 1px solid #63a4ff;
    border-radius: 4px;
    }
}


/* Data section styling */
.post-data {
    font-size: 12px;
    margin-top: 10px;
    color: #6392f8;
}

    /* Pagination styling */
    #pagination {
      margin-top: 20px;
      text-align: center;
    }
#pagination button {
    padding: 8px 12px;
    margin: 0 5px;
    font-size: 14px;
    border: 1px solid #6392f8;
    border-radius: 3px;
    background: rgba(99, 146, 248, 0.1);
    color: rgb(192 211 252 / .5);
    cursor: pointer;
}
#pagination button.active {
    border: 1px solid #6392f8;
    border-radius: 3px;
    background: rgba(99, 146, 248, 0.6);
    color: #dedfdf;
}
#pagination button:hover {
    opacity: 0.8;
    background-color: #5591e6;
    color: white;
}


@media (max-width: 600px) {
    .level{
    font-size: 80%;
    }
}

@media (max-width: 600px) {
    #level {
    font-size: 110%;
    }
}

ul {margin:0 0 12px 1.2em; padding:0; text-align:left; font-size: 15px;}

.countdown { font-weight:700; font-size:1.1em; color:#ffcc00; margin:10px 0; text-align:center; }


    