:root {
    --bg: #000000;
    --surface: #1e1e1e;
    --accent: #3f8cff;
    --text: #f0f0f0;
    --text-muted: #bbb;
    --border-radius: 1rem;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.2s;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 2rem;
    line-height: 1.6;
}

h1 {
    text-align: center;
    margin-bottom: 0rem;
    font-size: 2.5rem;
}

.dropdown {
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropdown summary {
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    list-style: none;
    user-select: none;
}

.dropdown-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    flex-wrap: wrap;
}

.dropdown-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  margin: 1rem 0;
  max-width: 100%;
  object-fit: contain;
}



.dropdown p {
    color: var(--text-muted);
    font-size: 1rem;
    flex: 1 1 300px;
}

.dropdown img {
    max-width: 400px;
    max-height: 400px;
    border-radius: 0.5rem;
    flex-shrink: 0;
    object-fit: cover;
}

@media (max-width: 768px) {
    .dropdown-content {
    flex-direction: column;
    align-items: flex-start;
    }
}

a {
    text-shadow: 0 0 10px #1d8aff;
    text-decoration: none;
    color:#1d8aff
}
/* Image modal overlay */
#image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#image-modal:target {
  display: flex;
}

#image-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
}
.dropdown,.dropdown-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
#line-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.line {
    position: absolute;
    left: -100%;
    height: 5px;
    background: #1977b6;
    opacity: 0.4;
    animation: moveLine linear forwards;
}

@keyframes moveLine {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(200vw);
    }
}
.dropdown summary {
  position: relative;
  padding-left: 2rem; /* space for arrow */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown summary .arrow {
  content: '';
  display: inline-block;
  border: solid var(--text);
  border-width: 0 2px 2px 0;
  padding: 6px;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-right: 0.5rem;
}

.dropdown[open] summary .arrow {
  transform: rotate(45deg);
}
footer > p{
  display: inline-block;
  background: rgba(145, 145, 145, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: fit-content; 
  padding: 1rem;
  border-radius: 16px;
}