@font-face {
  font-family: VHS;
  src: url("https://peachyvoid.com/fonts/VT323-Regular.ttf");
  font-family: Texturina;
  src: url("https://peachyvoid.com/fonts/Texturina.ttf")
}

body {
    
    background: 
    url('https://peachyvoid.com/graphics/shrines/spn/bg.png');
    background-size: cover;    
    background-attachment: fixed;
}

.shrine-container {
    max-width: 1160px;
    max-height: 820px;
    margin: 1% auto;
    background: rgba(17, 13, 11, 0.925); 
    border: 8px double #000000; 
    padding: 25px;
    position: relative;
    z-index: 2;
    color:#fff8dc;
    font-family: Texturina;
}


.header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.header h1 {
    font-size: 3.5em;
    color: #fff8dc; 
    text-shadow: 
        0 0 10px #584122,
        3px 3px 0 #b9ac9a,
        -3px -3px 0 #6b3535;
    letter-spacing: 4px;
    margin: 10px 0;
    font-family: Texturina;
}

.top-nav {
    max-width: 880px;
    margin: 0 auto 25px auto;
    background: rgba(58, 41, 22, 0.863);
    border: 6px double #000000;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 0 15px #000000;
}

.top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.top-nav li {
    display: inline;
}

.top-nav a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    padding: 6px 12px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px #ffdd88;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
}

a {
    color: #b87676;
    text-decoration: underline;
    font-weight: bold;
}
a:hover {
    color: #e7df93;
    text-shadow: 0 0 8px #ff0000;
}

#middle-column {
    height: 520px;
    overflow-y: scroll;  
    overflow-x: hidden;   
    padding-right: 15px;
    scrollbar-width: none;      
    -ms-overflow-style: none;      
}

#middle-column::-webkit-scrollbar {
    display: none;                
}
    #middle-column::-webkit-scrollbar-thumb {
        background: #d4af37;     
        border-radius: 10px;
    }
    #middle-column::-webkit-scrollbar-track {
        background: rgba(30, 15, 15, 0.6);
    }


    .tab-content {
        min-height: 100%;        
    }

    .side-scroll {
    height: 520px;         
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 10px;
    scrollbar-width: none;      
    -ms-overflow-style: none;   
}

.side-scroll::-webkit-scrollbar {
    display: none;
}

.hover-img {
  position: relative;
  display: inline-block;
}

.hover-img img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease; 
}

.hover-img .hover-text {
  position: absolute;
  bottom: 5px;         
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  padding: 3px 6px;
  font-size: 14px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; 
}

.hover-img:hover .hover-text {
  opacity: 1;
}

.hover-img:hover img {
  transform: scale(1.08); 
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  z-index: 1000;
  transition: background 0.2s ease;
}

.back-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.back-home {
  position: fixed;
  top: 60px;
  left: 20px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  z-index: 1000;
  transition: background 0.2s ease;
}

.back-home:hover {
  background: rgba(0, 0, 0, 0.8);
}