
* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: white;
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}







p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333333;
    font-size: 1rem;
    line-height: 1.8rem;
    font-family: 'Inter', sans-serif;
}





h1 {
    font-size: clamp(1.375rem, 5vw, 1.9375rem); /* 22px - 31px */
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin: 20px 0;
}

h2 { font-size: 1.75rem; }
h3 { font-size: 1.65rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

h2, h3, h4, h5, h6 {
    color: #555;
    font-weight: 700;
    line-height: 1.3;
    margin: 55px 0 10px;
}

@media (max-width: 992px) {
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.45rem; }
    h4 { font-size: 1.35rem; }
    h5 { font-size: 1.15rem; }
    h6 { font-size: 1rem; }
    
    h2, h3, h4, h5, h6 {
        margin: 40px 0 8px;
    }
}

@media (max-width: 576px) {
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }

    h2, h3, h4, h5, h6 {
        margin: 25px 0 6px;
    }
}



 
.site-header{
   
  width: 100%;
  background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); border-bottom: 1px solid color-mix(in oklab, var(--muted) 20%, transparent);
}

.site-header img {

width: 280px;

}





.index-intro {

margin-bottom: 80px;

}




.site-header .wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.site-header h1{
  font-size: clamp(18px, 3vw, 22px);
  margin: 0;
  letter-spacing: .4px;
}
.nav a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 12px;
  transition: color .2s ease, background-color .2s ease;
}
.nav a:hover{
  color: var(--text);
  background: color-mix(in oklab, var(--brand) 15%, transparent);
}

 
.site-main{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 80px;
  flex: 1 1 auto;
}

.grid{
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 18px;
 align-items: stretch;


}





.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.main-content {
    flex: 1;
    background: white;
    padding: 15px;
    border-top: solid #039ee3 2px;
    margin-top: 50px;
}







 
@media (max-width: 1024px){
  .grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 768px){
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .to-top {display: none;}
}
@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
}


 
 
.card{
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  border-radius: 20px;
  padding: 36px 30px 32px 25px;
  text-align: center;

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 4px 12px rgba(0,0,0,.06),
    0 10px 30px rgba(0,0,0,.08);

  transition:
    transform .25s cubic-bezier(.2,.8,.2,1),
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;

  position: relative;
  overflow: hidden;
}

 
.card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--x, 50%) var(--y, 50%),
    rgba(255,255,255,.6),
    transparent 40%
  );
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.card:hover::before{
  
}

.card:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 10px 30px rgba(0,0,0,.12),
    0 25px 60px rgba(0,0,0,.15);
  border-color: rgba(0,0,0,0.12);
}

 
.card h3{
  margin: 0 0 10px;
  font-size: clamp(17px, 2.6vw, 19px);
 
  letter-spacing: -0.3px;
  color: #1f2937 !important;
}

 
.card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #6b7280;
}

 
a:hover .card h3{
  color: #2563eb;
}


 
#sentinel{
  height: 1px;
}

 
 
 
 
 
 
 
 
.site-footer {
  border-top: 1px solid color-mix(in oklab, var(--muted) 20%, transparent);
  background: linear-gradient(to bottom,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);    
  color: #bfbaba;
  font-size: 14px;
  padding: 20px 0;
  margin-top: 120px;
}



.site-footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: center;  
}

 
.footer-left {
  float: left;
  margin-left: 10px;
}
.footer-left p {
  margin: 0;
  color: var(--muted);
}

 
.footer-nav {
  display: inline-block;  
}



.footer-nav a {
    margin: 0 12px;
    color: #bfbaba;
    text-decoration: none;
    font-weight: 600;
}


.footer-nav a:hover { color: #bfbaba; }

 
.footer-right {
  float: right;
}
.to-top {
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--brand) 40%, var(--muted) 10%);
  color: var(--text);
  transition: background-color .2s ease, transform .12s ease;
}
.to-top:hover { background: color-mix(in oklab, var(--brand) 18%, transparent); }
.to-top:active { transform: translateY(1px); }

 
.site-footer .wrap::after {
  content: "";
  display: block;
  clear: both;
}

 
@media (max-width: 768px) {
  .footer-left, .footer-right {
    float: none;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-nav {
    display: block;
    margin: 10px 0;
  }
  .footer-right {
    display: none;  
  }
}







/* STAR RATING */
.allstars {
     float: left;
	 
}



.star-rating {
    font-size: 2em;
    color: #ccc;
    user-select: none;
    display: inline-flex;
    flex-direction: row-reverse;
}

.star-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font-size: 1.4em;
    line-height: 1;
    position: relative;
    z-index: 1;
	margin-right: -6px;
}

.star-button:hover,
.star-button:hover ~ .star-button {
    color: gold;
}

.filled {
    color: gold;
    pointer-events: none;
}

.star {
    display: inline-block;
}

.avrating, .numofvotes {
    font-size: 12px;
}

.ratingarea {
    margin-bottom: 20px;
}









table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);  
	border-radius: 10px;
    overflow: hidden;
	
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ccc;
}

thead {
    background-color: #1fbcf9;
    font-weight: bold;
    color: white;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;  
}



th {
    font-size: 17px;
}

td {
    font-weight: bold;
}

 
tbody td:first-child {
    background-color: #3fc3f4;
    color: white;
}


 

 
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        display: none;
    }

 
    tbody {
        counter-reset: rowNum;
    }

    tr {
        margin-bottom: 25px;
        border: 2px solid #02b6d6;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

     
    tr > td:first-child {
        background-color: #3fc3f4;
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        position: relative;
        padding: 15px 10px;
    }

    tr > td:first-child::before {
        content: counter(rowNum) ". ";
        counter-increment: rowNum;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: bold;
        color: white;
        font-size: 24px;
        display: inline-block;
    }

    
    tr td:not(:first-child):nth-child(even) {
        background-color: #f8f9fa;
    }

    tr td:not(:first-child):nth-child(odd) {
        background-color: #ffffff;
    }

    td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        font-size: 14px;
        white-space: normal;
        color: black;
        font-weight: bold;
        padding: 10px;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
        color: #555;
        display: inline-block;
    }
}


.table-container {
    width: 100%;           
    overflow-x: auto;      
    -webkit-overflow-scrolling: touch;  
}





 
td[contenteditable="true"], th[contenteditable="true"] { 
    background-color: #fffbcc; 
}

 
button { 
    margin: 5px; 
    padding: 8px 12px; 
    cursor: pointer;
}





.card img {
     
    width: 100%; 
}
 