body {
    background-color: black;
    color: orange;
    font-family: "Courier New", Courier, monospace;
    margin: 0;
	padding: 0;
}

header {
    background-color: black;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
	margin-bottom: 20px;
}

footer {
	background-color: black;
    color: orange;
    font-family: "Courier New", Courier, monospace;
}

#headerImage {
    width: 100%;
    height: auto;
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

nav {
    background-color: black;
    display: flex;
    justify-content: center;
    padding: 1em 0;
    width: 100%;
	flex-shrink: 0;
	margin-bottom: 0;
	z-index: 0;
	border-top: 1px dotted orange;
    border-bottom: 1px dotted orange;
}

nav img {
    margin: 0 1em;
    cursor: pointer;
}

.nav-button {
    max-width: 130px;
    width: 100%;
    height: auto;
	transition: background-image 0.3s ease-in-out;
}


#nav4:hover {
    content: url('../../NAV/RETURN_on.png');
}


main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
	padding: 0;
    margin: 0;
}

.text-section {
    max-width: 800px;
    margin: 0 auto;
}

.archive-list {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    color: orange;
    font-family: "Courier New", Courier, monospace;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.6;
}

.archive-list a {
    color: orange;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-list a:hover {
    color: yellow;
    text-decoration: underline;
}

.hall-title {
  text-align: center;
  margin-top: 40px;
}

.hall-title img {
  width: 240px;
  height: auto;
}


.ring-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.ring-card {
  text-align: center;
  text-decoration: none;
  color: orange;
  background-color: transparent;
  transition: transform 0.3s ease;
}

.ring-card:hover {
  transform: scale(1.03);
}

.ring-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid orange;
  box-shadow: 0 0 15px orange;
  transition: box-shadow 0.3s ease;
}

.ring-card:hover img {
  box-shadow: 0 0 25px yellow;
}

.ring-info {
  margin-top: 15px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.ring-info h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: yellow;
}

.badge-highlight {
  color: yellow;
  font-weight: bold;
}

.blogger-stage {
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.blogger-stage h2 {
  color: yellow;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 10px;
}

.blogger-stage h4 {
  color: orange;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: normal;
  margin-bottom: 30px;
}

.blogger-text {
  font-size: 1rem;
  line-height: 1.6;
  color: orange;
  margin-bottom: 30px;
}

.rating-stars {
  color: gold;
  font-size: 1.2rem;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

video {
  width: 100%;
  max-width: 600px;
  border: 2px solid orange;
  box-shadow: 0 0 10px orange;
  border-radius: 8px;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  color: orange;
  text-decoration: none;
  font-weight: bold;
}

.back-link:hover {
  color: yellow;
  text-decoration: underline;
}


footer {
    background-color: black;
    padding: 5px;
    text-align: center;
    border-top: 1px solid orange;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer-links a {
    text-decoration: none;
    color: orange;
    font-size: 0.875rem;
    font-weight: normal;
}

.footer-links a:hover {
    color: yellow;
    text-decoration: underline;
}

@media (max-width: 768px) {
	
	#headerImage {
		max-width: 350px;
		margin-top: 10px;
	}
	
	.nav-button {
        max-width: 90px;
		height: auto;
		cursor: pointer;
		transition: background-image 0.3s ease-in-out;
		margin: 0 2px;
    }
	
	main p {
        text-align: center;
		margin-bottom: 50px;
	}
	
	.ring-gallery {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
	}

	.ring-card img {
		width: 150px;
		height: 150px;
	}
	
	    .footer-links {
        flex-wrap: wrap;
        gap: 1em;
    }
	
	video {
		width: 100%;
		height: auto;
		border: 1px solid orange;
		box-shadow: 0 0 5px orange;
		border-radius: 8px;
	}
    
    .footer-links a {
        white-space: nowrap;
    }
}

