/* =========================
   Base Reset
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    text-align: center;
    background-color: #fff;
    color: #111;
}


/* =========================
   Header
========================= */
.site-header {
    padding: 2rem 1rem;
}

.site-header h1 {
    margin: 0;
    letter-spacing: 0.1em;
}


/* =========================
   Layout
========================= */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem 4rem;
}

.intro {
    max-width: 600px;
}


/* =========================
   Slideshow
========================= */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.mySlides {
    display: none;
    text-align: center;
}

.mySlides video {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
}


/* =========================
   Release Image
========================= */
.release {
    position: relative; /* Required for NEW tag */
    display: inline-block;
}

.release img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    display: block;
}


/* =========================
   NEW Tag (Hover)
========================= */
.new-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff0000;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.release:hover .new-tag {
    opacity: 1;
}


/* =========================
   Navigation Buttons
========================= */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* =========================
   Caption & Slide Text
========================= */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* =========================
   Dots
========================= */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}


/* =========================
   Fade Animation
========================= */
.fade {
    animation: fade 1.5s;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}


/* =========================
   Links Section
========================= */
.links {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 1.5rem;
}

.links a {
    text-decoration: none;
    color: #777;
    font-size: 1.1rem;
}

.links a:hover {
    color: #555;
}

.links img {
    width: 175px;
    max-width: 40vw;
    height: auto;
}


/* =========================
   Ticket Form
========================= */
.ticket-form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ticket-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.ticket-form input,
.ticket-form select,
.ticket-form button {
    padding: 0.6rem;
    font-size: 1rem;
}

.ticket-form button {
    cursor: pointer;
}



#forum {
  max-width: 600px;
  margin: 3rem auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

input, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

button {
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: black;
  color: white;
}

.message {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #f3f3f3;
}

.admin-message {
  background: #111827;
  color: white;
  border-left: 5px solid #38bdf8;
}

.admin-message strong {
  color: #38bdf8;
}

.badge {
  background: #38bdf8;
  color: black;
  padding: 2px 6px;
  font-size: 0.7rem;
  border-radius: 4px;
  margin-left: 6px;
}

.credits {
  margin-top: 2rem;
}

.credits h2 {
  margin-bottom: 1rem;
}

.track {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f4f4f4;
  border-radius: 6px;
}

.track h3 {
  margin-bottom: 0.5rem;
}

.track ul {
  list-style: none;
  padding: 0;
}

.track li {
  margin-bottom: 4px;
}
/* =========================
   Payment Pages
========================= */
.payment-layout {
  max-width: 760px;
  margin: 0 auto;
}

.payment-release {
  width: 100%;
}

.payment-art {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

.payment-description {
  max-width: 700px;
  line-height: 1.6;
}

.paypal-hosted-button {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.payment-page .credits {
  width: 100%;
  max-width: 700px;
  margin: 1rem auto 0;
}

.success-message {
  max-width: 520px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 8px;
  background: #f3f3f3;
}