* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /*cursor: none; /* Hide default cursor */
}

body {
    min-height: 100vh;
    background-color: #050908;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    padding: 20px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 12px;
    background-color: #050908;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    text-align: center;
    padding: 5px;
  }

.container {
    max-width: 800px;
    margin: auto;
}

.container1 {
    max-width: 400px;
    margin: auto;
}

h1 {
    font-size: 24px;
    text-transform: uppercase;
}

hr {
    margin: 10px 0;
}

nav a {
    color: #9999ff;
    text-decoration: none;
    margin: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

p, h3 {
    margin: 10px 0;
}

a {
    color: #9999ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.bio-photo-container {
    display: flex;
    justify-content: space-between;
}
.bio {
    width: 60%;
    text-align: left;
}

.photo {
    width: 35%;
    text-align: right;
}

.photo img {
    width: 100%;
    border-radius: 5px;
}

/* Default Custom Cursor */
.circle {
    --circle-size: 40px;
    position: fixed;
    height: var(--circle-size);
    width: var(--circle-size);
    border: 2px solid rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 
                0 0 20px rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    pointer-events: none;
    transition: transform 0.1s ease-out, background 0.3s;
}

/* Change Cursor When Hovering Over Links */
nav a:hover ~ .circle {
    background: yellow;
    border-color: yellow;
}

/* Change Cursor When Hovering Over Content Sections */
.content:hover ~ .circle {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.section {
    width: 48%;
    padding: 10px;
}

.divider {
    border-right: 2px dotted white;
    height: 100%;
    width: 2px;
    margin: 0 10px;
}



.tooltip {
        position: absolute;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        display: none;
        pointer-events: none;
}

.trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
    transition: transform 0.1s, opacity 0.3s;
}

.news-section {
  /* make the whole block left-aligned */
  text-align: left;
  width: 100%;
  margin: auto;
  padding: 20px;
  background: #050908;
  border-radius: 5px;
}

.contact {
  /* make the whole block left-aligned */
  text-align: left;
  width: 100%;
  margin: 30px auto;
  padding: 15px;
  background: #050908;
  border-radius: 5px;
}


.news-section {
  text-align: left;
  margin: 30px auto;
  padding: 15px;
  background:#050908;
  border-radius: 5px;
}

.news-section h3 {
  text-align: center;
  margin-bottom: 10px;
  color: #F8E231;
}

.news-list {
  list-style: disc inside;
  margin: 0 0 10px;
  padding-left: 1em;
}

/* Make summary line look like a list item */
.more-news summary {
  display: list-item;       /* gives you a bullet */
  list-style-position: inside;
  margin: 5px 0;            /* same vertical spacing as your lis */
  padding-left: 1.2em;      /* same indent as your list items */
}

/* And ensure the extra items keep the same indent */
.more-news .extra {
  margin-left: 1.2em;       /* match the padding-left above */
}

.more-news[open] .extra {
  opacity: 1;
  transform: translateY(0);
}
