body {
    margin: 0;
    background: #e5edf0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    cursor: url('img/cursor.png') 15 0, auto;
    opacity: 1;                 /* default: visible */
    transition: opacity 1s ease;

  }
      
  .wii-menu {
    /*width: 960px;
    height: 400px;*/
    background: #e5edf0;
    /* border: 4px solid #cde8f5; */
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 17.3vw);
    grid-template-rows: repeat(3, 17.3vh);
    gap: 5px;
    /*padding: 20px;*/
    /* box-shadow: 0 0 20px rgba(0,0,0,0.2); */
  }

  .channel {
    height: 17vh;
    width: 17vw;
    
    background: linear-gradient(to bottom,#ffffff 0%,#f3f9fc 100%);
    border: 2px solid #a3a2a2;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.9),
                0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
  }
  .channel:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(0,180,240,0.7),
                inset 0 1px 2px rgba(255,255,255,0.9);
	  border: 2px solid #b2e3f9;
    transition: 0.2s;
    cursor: url('img/cursor.png') 15 0, auto;
  }
  .footer {
    margin-top: 20px;
    
    text-align: center;
  }
  .wii-button {
    font-size: 18px;
    color: #333;
    background: linear-gradient(to bottom, #f8fcff 0%, #e6f3f9 100%);
    border: 2px solid #b2e3f9;
    border-radius: 30px;
    padding: 10px 30px;
    text-align: center;
    display: inline-block;
    box-shadow:
      0 0 6px rgba(0, 200, 255, 0.6),
      inset 0 1px 2px rgba(255, 255, 255, 0.9),
      0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
  }
  .wii-button:hover {
    background: linear-gradient(to bottom, #ffffff 0%, #dff1f9 100%);
    cursor: url('img/cursor.png') 15 0, auto;
  }
  .wii-button:active {
    background: linear-gradient(to bottom, #d4eef9 0%, #ffffff 100%);
    box-shadow:
      inset 0 2px 4px rgba(0, 0, 0, 0.2),
      0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
  }
  
.emptychannel {
    height: 17vh;
    width: 17vw;

    background: linear-gradient(to bottom,#ffffff 0%,#f3f9fc 100%);
    border: 2px solid #a3a2a2;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.9),
                0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #333;
    cursor: url('img/cursor.png') 15 0, auto;
    transition: transform 0.1s ease, box-shadow 0.2s ease;



         /* fills parent height */
  min-height: 100px;   /* optional: ensures it’s visible if parent has no height */
  
  /* Striped background */
  background: repeating-linear-gradient(
    #cccccc,           /* stripe color */
    #cccccc 2px,       /* stripe thickness */
    #f5f5f5 2px,       /* gap color */
    #f5f5f5 4px       /* gap thickness */
  );

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #bfbdbd;
  }



img {
  width: 100%;         /* fills parent width */
  height: 100%;        /* fills parent height */
  border-radius: 10px;
}

#tom {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30vh;
  width: auto;
  
}

#evth {
    height: 15vh;
    width: auto;
    border-radius: 0%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7vh;
  }







/* ----------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  
  .wii-menu {
    /*width: 960px;
    height: 400px;*/
    background: #e5edf0;
    /* border: 4px solid #cde8f5; */
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 22.1vw);
    grid-template-rows: repeat(3, 15.3vh);
    gap: 5px;
    /*padding: 20px;*/
    /* box-shadow: 0 0 20px rgba(0,0,0,0.2); */
  }

  .channel {
    height: 15vh;
    width: 22vw;
    
    background: linear-gradient(to bottom,#ffffff 0%,#f3f9fc 100%);
    border: 2px solid #a3a2a2;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.9),
                0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
  }

  .emptychannel {
    height: 15vh;
    width: 22vw;

    background: linear-gradient(to bottom,#ffffff 0%,#f3f9fc 100%);
    border: 2px solid #a3a2a2;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.9),
                0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #333;
    cursor: url('img/cursor.png') 15 0, auto;
    transition: transform 0.1s ease, box-shadow 0.2s ease;



         /* fills parent height */
  min-height: 10px;   /* optional: ensures it’s visible if parent has no height */
  
  /* Striped background */
  background: repeating-linear-gradient(
    #cccccc,           /* stripe color */
    #cccccc 2px,       /* stripe thickness */
    #f5f5f5 2px,       /* gap color */
    #f5f5f5 4px       /* gap thickness */
  );

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #bfbdbd;
  }

  #evth {
    height: 15vh;
    width: auto;
    border-radius: 0%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8vh;
  }
  

}

/* Phone */
@media (max-width: 600px) {

  .wii-menu {
    /*width: 960px;
    height: 400px;*/
    background: #e5edf0;
    /* border: 4px solid #cde8f5; */
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 22.1vw);
    grid-template-rows: repeat(3, 10.3vh);
    gap: 5px;
    /*padding: 20px;*/
    /* box-shadow: 0 0 20px rgba(0,0,0,0.2); */
  }

  .channel {
    height: 10vh;
    width: 22vw;
    
    background: linear-gradient(to bottom,#ffffff 0%,#f3f9fc 100%);
    border: 2px solid #a3a2a2;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.9),
                0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
  }

  .emptychannel {
    height: 10vh;
    width: 22vw;

    background: linear-gradient(to bottom,#ffffff 0%,#f3f9fc 100%);
    border: 2px solid #a3a2a2;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.9),
                0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #333;
    cursor: url('img/cursor.png') 15 0, auto;
    transition: transform 0.1s ease, box-shadow 0.2s ease;



         /* fills parent height */
  min-height: 10px;   /* optional: ensures it’s visible if parent has no height */
  
  /* Striped background */
  background: repeating-linear-gradient(
    #cccccc,           /* stripe color */
    #cccccc 2px,       /* stripe thickness */
    #f5f5f5 2px,       /* gap color */
    #f5f5f5 4px       /* gap thickness */
  );

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #bfbdbd;
  }

  #evth {
    height: 15vh;
    width: auto;
    border-radius: 0%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 13vh;
  }

}

