.hoverup-1 {
    transition: transform 0.5s ease;
}
.hoverup-1:hover {
    transform: translateY(-1vmin);
}
.hoverup-0-5:hover{
    transform: translateY(-0.5vmin);
}

.readonly {
  pointer-events: none;
  cursor: not-allowed;
}
.child1-round1 > * {
   border-radius: 2vmin;
}
.child1-shadow1 > * {
  box-shadow: 1vmin 1vmin 10px;
}
.child1-pad1 > * {
    padding: 1vmin;
}
.child1-w100px > * {
  width: 100px;
}
.child1-w200px > * {
  width: 200px;
}
.child1-w250px > * {
  width: 250px;
}
.child1-w350px > * {
  width: 350px;
}
        @keyframes bounce-10 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
.flex-mblock {
  display: flex;
}
.w100-200-500  {
    width: clamp(200px, 100%, 500px);
}   
.wl-hm {
  width: 100%;
  height: auto;
}
@media (max-width: 512px){
  .wl-hm {
  height: 100%;
  width: auto;
}
}  
@media (max-width: 480px) {
    .mw-100 {
    width: 100%;
}
.mvw-100 {
    width: 100vw;
}
.m1vw-75 {
  width: 75%;
}
.mobile-block {
display: block;
}

.flex-m-column {
  flex-direction: column;
}
.flex-mblock {
  display: block;
}
}
@media (max-width: 300px){
  .m1vw-75 {
    width: 100%;
  }
}
@media (max-width: 680px) {
    .tablet-block {
        display: block;
    }
    .tw-100 {
        width: 100%;
    }
    
}

.grid-card-c1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Card styling */
.grid-card-c1 > .card {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin: 0 auto; /* center inside column */
}

/* 🔥 Center the last card if it's odd */
.grid-card-c1 > .card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
}

.grid-card-c1 > .card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px); /* better than scale */
}

.grid-card-c1 > .card .icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.grid-card-c1 > .card:hover .icon {
  animation: bounce-10 0.6s infinite;
}

.grid-card-c2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-card-c2 > .card {
  background: var(--white-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease-in-out;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid-card-c2 > .card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px);
}

.grid-card-c2 > .card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.grid-card-c2 > .card:hover .icon {
  animation: bounce-10 0.6s infinite;
}

/* Mobile */
@media (max-width: 580px) {
  .grid-card-c2 {
    grid-template-columns: 1fr;
  }
}


.grid2-m1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 620px){
  .grid2-m1 {
    grid-template-columns: 1fr;
  }
}


.fit-cover {
  object-fit: cover;
}

.fit-contain {
  object-fit: contain;
}
.obj-center {
  object-position: center;
}

.obj-top {
  object-position: top;
}

.obj-bottom {
  object-position: bottom;
}

/* @import url(/b1eaut2yofp1hys4er9/cardcat.css);
 */




/* twc.css

* {
    padding: 0;
    margin: 0;
    
}

a {
    text-decoration: none;
}

#wbody, #twcFeed {
    background-color: antiquewhite;
}
#twcFeed {
    z-index: -1;
}
#twcLogo {
    display: block;
    position: absolute;
    top: 0.5vmin;
    left: 0;
    margin: 0;
    width: 11vmin;
    aspect-ratio: 1;
}

#twch1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 8vmin;
    text-shadow: 1vmin 1vmin 10px green;
}
#twcmenubtn {
    display: block;
    position: absolute;
    right: 2vmin;
    height: 7vmin;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: antiquewhite;
    box-shadow: 0.5vmin 0.5vmin gray; 
}
#twcmenubtn:active {
box-shadow: none;
right: 1.5vmin;
}
#tmbtn {
    width: 100%;
    height: 100%;
}
#twcmenu {
    display: none;
    position: absolute;
    z-index: 1;
    width: 50vmin;
    top: 10vmin;
    right: 2vmin;
    height: 75vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    direction: rtl;
    border-left: 1vmin solid gray;
    border-right: 1vmin solid antiquewhite;
    outline: 1vmin solid #6C2E00;
}
#twcmenu::-webkit-scrollbar {
    width: auto;
    background-color: transparent;
}
#twcmenu::-webkit-scrollbar-thumb {
    display: block;
    width: 1vmin;
    border: 0.5vmin solid antiquewhite;
    border-radius: 10px;
    background-color: #6C2E00;
}
#twcmenu a {
    display: block;
    color: antiquewhite;
    text-align: left;
    font-size: 5vmin;
    width: 100%;
    margin-top: 1vmin;
    padding-left: 1vmin;
    border-bottom: 1vmin solid #6C2E00;
    background-color: gray;
    font-weight: 900;
    overflow-wrap: normal;
}
#ttmContainer{
    display: none;
    position: fixed;
    top: 6vmin;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding-right: 5vmin;
    width: 40vmin;
    z-index: 1;
}
.ttbody {
    display: block;
    width: 100%;
}

.ttframe {
    display: block;
    position: relative;
    width: 100%;
    overflow-wrap: normal;
}

.flex-we {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.fix {
    position: fixed;
    width: 90%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.back {
    z-index: 0;
}
#ttmBtn {
    height: 100%;
}
#twctBack {
    float: right;
}
.tthcenter {
    display: block;
    color: black;
    margin: auto;
    width: max-content;
}
#ttHead {
   display: block;
   float: left;
   min-width: 45vmin;
    font-size: 4vmin;
    line-height: 5vmin;
    min-height: 5vmin;
    background-color: white;
    box-shadow: 1vmin 1vmin 5px black;
    border-bottom: 1vmin solid #6C2E00;
    text-align: center;

}
#ttmContainer a  {
    display: block;
    width: 100%;
    color: #6C2E00;
    background-color: rgba(250, 235, 215, 0.801);
    font-size: 3vmin;
    padding-left: 2vmin;
    line-height: 5vmin;
    margin-top: 0.5vmin;
    border-bottom: 0.75vmin solid white;
    box-shadow: 0 -0.3vmin 2px gray;
    font-weight: 900;
    transition: ease-in 1s;
}
.twctopic {
    display: block;
    position: relative;
    margin: 1.1vmin;
    margin-bottom: 4vmin;
    width: 30vmin;
    font-size: 3vmin;
    aspect-ratio: 1;
    border: 0.1vmin solid #6C2E00;
    background-color: antiquewhite;
    overflow: hidden;
}
.twctopicpre {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.twctopicpre img {
    width: 100%;
}
.twctopicsub {
    display: flex;
    position: absolute;
    min-height: 9vmin;
    bottom: 0;
    background-color: rgba(250, 235, 215, 0.562);
    color: #6C2E00;
    width: 100%;
    height: max-content;
    overflow: hidden;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}
*/
.ttgsidbox, .ttgdidbox {
    position: relative;
        display: block;
        width: 100vw;
        max-width: calc(100vh*4/3);
        max-height: 90%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin: auto;
    padding: 0;
}
.abs {
    position: absolute;
}
.gslidestrip {
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 35px;
    background-color: var(--secondary-color);
}
.ttgsidframe, .ttgdidFrame {
    height: 100%;
    width: 100%;
}

.ttgdidbox {
    display: none;
}
#twcloaderGif {
    background-color: var(--primary-color);
    display: block;
    width: 100%;
    height: 100%;
    background: url(../../loader.gif) center center no-repeat;
}
#twctBack {
    display: block;
    position: absolute;
    top: 14vmin;
    right: 0;
}


@media (max-width: 284px) {
            .gslidestrip {
                height: 70px;
            }

  } 



  

/* =====================================================
   HEADER & NAVIGATION — Modern glassmorphism design
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #6c2e00;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: #4a2200;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: antiquewhite;
  flex-shrink: 0;
}

.brand-logo {
  height: 40px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: antiquewhite;
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: antiquewhite;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-list a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: antiquewhite;
}

.has-submenu > a::after {
  content: " ▾";
  font-size: 0.7em;
  opacity: 0.7;
}

.has-submenu > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: antiquewhite;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1001;
}

.has-submenu.open > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.has-submenu ul li a {
  color: #1a1a1a;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.85rem;
}

.has-submenu ul li a:hover {
  background: #6c2e00;
  color: antiquewhite;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: antiquewhite;
  color: #6c2e00;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.page-banner {
  background: #6c2e00;
  color: antiquewhite;
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.page-banner__title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Mobile navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    right: 0;
    width: clamp(260px, 80%, 360px);
    height: calc(100vh - 64px);
    background: rgba(245,230,211,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
  }

  .nav-list a {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    color: #6c2e00;
  }

  .nav-list a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #6c2e00;
  }

  .has-submenu > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
  }

  .has-submenu.open > ul {
    display: block;
  }

  .has-submenu ul li a {
    color: #6c2e00;
    font-size: 0.9rem;
  }

  .has-submenu ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #6c2e00;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.1rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .brand-logo {
    height: 32px;
  }
}




  /* Footer rules */

  .twc-footer {
    background: #0a0a0a;
    color: antiquewhite;
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .twc-footer a {
    color: antiquewhite;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .twc-footer a:hover {
    color: #fff;
    text-decoration: underline;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }

  .footer-about,
  .footer-contact {
    max-width: 300px;
  }

  .footer-about h3 {
    color: antiquewhite;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
  }

  .footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
  }

  .footer-contact h4 {
    color: antiquewhite;
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.4rem 0;
    line-height: 1.6;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
  }

  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .footer-about,
    .footer-contact {
      max-width: 100%;
    }
  }  