/* HEADDCER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.div{
  font-size:40px;
  border-style: dotted;
  }
.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent; 
  z-index: 1000;
}

.logo-container {

  padding: 10px 20px;
}

.logo-container img {
  height: 50px;
  width: auto;
  display: block;
}
.div{
  font-size: 30px;}

.site-nav {
  background-color: #ffffff;
  display: flex;
}

.site-nav a {
  color: #016a18;
  text-decoration: none;
  padding: 14px 16px;
  font-size: 20px;
}

.site-nav a:hover {
  background-color: #ddd;
  color: black;
}

.main-content {
  padding-top: 80px;
}

.site-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.page-container {
  display: flex;
  gap: 10px; 
}

.sidebar {
  flex: 0 0 20%; 
}

.main-content {
  flex: 1;
}

.right-column {
  display: flex;
  flex-direction: column;
  flex: 0 0 20%;
  gap: 10px;
}
.sidebar {
  background-color: white;
  padding: 16px;
}
.main-content {
  background-color: white;
  padding: 16px;
}
.updates {
  background-color: white;
  padding: 16px;
  height: 220px;      
  width: 100%;        
  overflow: auto;     
  box-sizing: border-box;
}
.updates h1 {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
  margin-top: -16px; 
  margin-left: -16px;
  margin-right: -16px;
  padding: 16px;
}
.contact {
  background-color: white;
  padding: 16px;
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!interests SCROLLING*/
.text-track {
  width: 1100px;            
  overflow: hidden;
  background: #fff;
}

.text-slide {
  display: inline-block;     
  white-space: nowrap;   
  animation: scroll 30s linear infinite;
  font-size: 24px;    
  padding-left: 100%;   
}

.text-slide span {
  margin: 0 50px;          
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!TV*/

.tv-frame {
    position: relative;
    width: 800px; 
    height: 450px;
}

.tv-video {
    position: absolute;
    top: 50%;
    left: 40%;
    width: 470px;
    height: 320px;
    transform: translate(-50%, -50%); 
    border: none;
}

.tv-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 450px;
    pointer-events: none;
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!TAMAGOCHI*/
.tamagotchi-wrapper {
    position: relative; 
    display: inline-block;
}

.tamagotchi-img {
    display: block;
}

.giphy-pet {
    position: absolute;
    top: 400px; 
    left: 210px;
    width: 250px;
    height: 250px;
    z-index: 2;
    background: transparent;
}

.card {
  background: lightblue;
  padding: 20px;
  margin: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  background: skyblue;
}
a {
  text-decoration: none; 
  color: inherit;        
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!GALLERY*/
#gallery {

  flex-wrap: wrap;
  gap: 10px;
}
#gallery img {
  width: 20%;
  transition: opacity 0.3s ease;}
.hidden {
  display: none;}


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!CLOVER*/
.sticky-image {
  position: fixed;
  bottom: 0px;  
  right: 1200px;    
  width: 900px;  
  height: auto;
  animation: bounce 1s ease-in-out infinite; 
  animation-iteration-count: infinite;
  animation-play-state: running;
  pointer-events: none; }

@keyframes bounce {0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-15px);}
  60% {transform: translateY(-8px);}}
  
  
  #categories-container {
  display: flex;
  flex-direction: column;
  gap: 10px;   
}
#categories {
  width: 100%;         
}

.sidebar #categories {
  max-width: 100%;
  box-sizing: border-box;
}


/*N!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!EWS*/

.news-section {
  max-height: 200px;  
  overflow-y: auto;  
  padding: 10px;
  border: 1px solid #ccc; /* optional, for visibility */
  background-color: rgba(255,255,255,0.9); /* optional */
}
