/* Existing background styles */
body {
    margin: 0;
    padding: 0;
    background-color: #0e0e0e;
    background-image: url("https://www.transparenttextures.com/patterns/45-degree-fabric-dark.png");
    background-repeat: repeat;
    background-size: auto;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

/* Concentric circle aura */
body::after {
    content: "";
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 40%,
    transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Gold concentric rings */
.gold-circles {
    position: fixed;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
}

.content-box {
    background-color: rgba(255, 215, 0, 0.1); /* transparent gold */
    border: 1px solid rgba(255, 215, 0, 0.53);
    padding: 30px;
    margin: 60px auto;
    width: fit-content;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Optional: style headings and links inside the box */
.content-box h1, .content-box h2 {
    color: #FFD700;
    margin-top: 0;
}

.content-box a {
    color: #ffffff;
    text-decoration: none;
}

.content-box a:hover {
    text-decoration: underline;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

