/* Rotating circle navigation styles */
.circle-nav-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 40px auto;
}
.circle-nav-lines {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
}
.circle-nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 500px;
  height: 500px;
  z-index: 2;
}
.circle-anchor {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 2px solid #888;
  font-family: 'Roboto Mono', monospace;
}
.circle-anchor:hover {
  background: #764ba2;
  color: #fff;
  transform: scale(1.2);
  z-index: 3;
}
.circle-nav {
  animation: rotateCircle 10s linear infinite;
}
@keyframes rotateCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
body {
  font-family: 'Roboto Mono', monospace;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #fff;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

body.landing-page {
  background: white;
}

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

main.container {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(0,0,0,0.7);
  border-radius: 16px;
  padding: 40px 30px 30px 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.container {
    max-width: 700px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 40px;
}

/* Headings */
h1 {
  font-size: 2.2em;
  margin-bottom: 0.5em;
  text-align: center;
}


.story-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    background: white;
    padding-top: 20px;
}

.story-header .subtitle {
    color: #bbb;
    font-size: 1.1em;
    margin-bottom: 2em;
    text-align: center;
}

.landing-container {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.landing-title {
  max-width: 160%;
  height: auto;
  max-height: 1200px;
  display: block;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.landing-container {
  position: relative;
  min-height: 1200px;
}

.landing-subtitle {
    font-size: 1em;
    color: #333;
    text-align: center;
    margin: 0;
    font-style: italic;
    max-width: 500px;
}

.landing-video {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 8px;
    display: block;
}

p, .note {
  margin-bottom: 2.5em;
}

/* Choices */
.choices {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 2em;
    align-items: center;
    margin-top: 2.5em;
}

.choice-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;
}

.choice-btn:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.choice-btn:active {
    transform: translateX(8px);
}

/* Buttons */
.btn {
  background: #fff;
  color: #111;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn:hover {
  background: #222;
  color: #fff;
  transform: scale(1.05);
}

.start-btn {
    background: #000;
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.3em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 2px;
}

.start-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.start-btn:active {
    transform: scale(0.95);
}

.reset-btn {
    display: block;
    margin: 0 auto;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.reset-btn:hover {
    background: #c0392b;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Utility */
.hint {
  text-align: center;
  margin-top: 2em;
  font-size: 0.95em;
}

.hint a {
  color: #aaa;
  text-decoration: underline;
}

.breadcrumb {
  color: #666;
  font-size: 0.9em;
  font-style: italic;
  margin: 0;
}

.story-header h1 {
  font-size: 2em;
}

.story-title-image {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  margin-bottom: 15px;
  display: block;
}

.title-image {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  margin-bottom: 20px;
  display: block;
}

.story-content {
  margin-bottom: 30px;
  min-height: 200px;
  animation: fadeIn 0.5s ease;
}

.story-text {
  color: #2c3e50;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.ending {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 30px;
  border-radius: 10px;
  color: white;
  text-align: center;
}

.ending h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.ending p {
  font-size: 1.1em;
  line-height: 1.6;
}

/* Animation for content entry */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }

  .story-header h1 {
    font-size: 1.8em;
  }

  .story-text {
    font-size: 1em;
  }

  .choice-btn {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}
