@charset "utf-8";
/* Base reset and typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

/* Section containers */
header,
section {
  max-width: 900px;
  margin: auto 1rem 1rem;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #555;
}

/* Lists */
ul {
  padding-left: 1.2rem;
}

/* Highlight boxes */
.tier,
.note,
.cheat {
  background: #f0f4f8;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
}

.tier {
  border-left: 4px solid #007acc;
}

.note,
.cheat {
  border-left: 4px solid #f0c000;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

table th,
table td {
  padding: 0.75rem;
  border: 1px solid #ccc;
  text-align: left;
}

table th {
  background: #f0f0f0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #999;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  background: #fff;
  border-bottom: 2px solid #ddd;
}

.tab-button {
  padding: 1rem 2rem;
  cursor: pointer;
  background: #fff;
  border: none;
  font-weight: bold;
  border-bottom: 4px solid transparent;
}

.tab-button.active {
  border-bottom-color: #007acc;
  color: #007acc;
}

.tab-content {
  max-width: 1000px;
  margin: 1rem auto;
  padding: 2rem;
  display: none;
  background: #fff;
}

.tab-content.active {
  display: block;
}

/* Call-to-button styles */
.cbc {
  float: right;
  background: #db4c4c;
  margin: 12px 20px 12px 0;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}

.cbc:hover {
  background: #444;
}

.cbc:active {
  background: #cdadae;
}

/* Form element focus */
input.largerCheckbox {
  width: 26px;
  height: 26px;
  vertical-align: middle;
  margin-bottom: 10px;
  box-shadow: 2px 2px 8px rgba(50, 50, 50, 0.5);
}

input:focus,
textarea:focus {
  outline: none;
}

/* Canvas element */
canvas {
  border: none;
  margin: 0;
}

/* Help tooltip */
#help {
  position: absolute;
  background: #f9f2d5;
  width: 300px;
  height: 200px;
  display: none;
  padding: 20px;
  font-size: 13px;
  line-height: 18px;
  filter: drop-shadow(-5px 5px 13px #846262);
}

.err {
  background: red;
  color: #fff;
  padding: 2px 6px;
  display: none;
}

/* Responsive content wrapper */
.formats {
  width: 90%;
  margin: 1rem auto;
  text-align: left;
}

@media only screen and (min-width: 800px) {
  .formats {
    max-width: 600px;
    margin-top: 30px;
  }
}

/* Intro section styles */
.intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
  background-color: #f9f9f9;
  text-align: left;
}

.intro-title {
  font-family: 'Hind', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.intro-tagline {
  font-family: 'Droid Sans', 'Arial', sans-serif;
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 1rem;
}

.intro-description {
  font-family: 'Droid Sans', 'Arial', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #666;
  margin: 0;
}

.card-description {
  font-family: 'Droid Sans', Arial, sans-serif;
}


