@charset "UTF-8";
/*
Theme Name: Minimal Theme
Author: Your Name
Description: 最小構成のシンプルなテーマ
Version: 1.0
*/
:root {
  --primary: #000;
  --accent: #000;
  --bg: #fff;
  --grid: rgba(0, 0, 0, 0.05);
  --ease: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  background: var(--bg);
  color: var(--primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}

#cursor {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
  display: none;
}

@media (min-width: 1024px) {
  #cursor {
    display: block;
  }
}
.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

nav {
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: solid 1px #999;
}
@media screen and (max-width: 768px) {
  nav {
    padding: 15px 5%;
  }
}

.nav-logo {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: inherit;
}

.quiz-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

#quiz-content {
  max-width: 1000px;
}

.q-number {
  font-family: "Inter", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary);
  opacity: 0.3;
}

.q-text {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.ans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--primary);
  border: 1px solid var(--primary);
}
@media screen and (max-width: 768px) {
  .ans-grid.grid-2-cols-sp {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .ans-grid.grid-2-cols-sp * {
    font-size: 0.9em;
  }
}

.ans-item {
  padding: 30px 40px;
  background: var(--bg);
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .ans-item {
    padding: 20px 10px;
  }
}
.ans-item span {
  font-size: 1.1rem;
  font-weight: 900;
}

.ans-item:hover {
  background: var(--primary);
  color: var(--bg);
}

#loading-screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-text {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.5em;
  margin-top: 20px;
}

.loading-bar-container {
  width: 300px;
  height: 2px;
  background: #eee;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.loading-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #000;
  width: 0;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05), transparent);
  background-size: 100% 4px;
  animation: scan 2s linear infinite;
}

@keyframes scan {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}
#result-screen {
  display: none;
  padding: 180px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

#result-screen.reveal {
  opacity: 1;
  transform: translateY(0);
}

.res-label {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  text-transform: uppercase;
}

.res-label:before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--primary);
}

.res-main-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 60px;
}
.res-main-title.long {
  font-size: clamp(1.5rem, 2vw, 4rem);
}

.res-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  margin-bottom: 150px;
  align-items: center;
}

.res-visual {
  width: 100%;
  aspect-ratio: 3/3;
  background: #f0f0f0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.res-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--ease);
}

.res-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.tag {
  font-size: 0.65rem;
  font-weight: 900;
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f8f8f8;
}

.sub-results {
  border-top: 1px solid var(--primary);
  padding-top: 100px;
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.sub-item {
  background: transparent;
  display: flex;
  flex-direction: column;
  transition: var(--ease);
}

.sub-img {
  width: 100%;
  aspect-ratio: 3/3;
  background: #eee;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sub-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--ease);
}

.sub-item h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}

.sub-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-rounded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--primary);
  color: var(--bg);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
  gap: 12px;
  border-radius: 100px;
}

.btn-rounded.outline {
  background: transparent;
  color: var(--primary);
}

.btn-rounded:hover {
  background: var(--bg);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  width: 0;
  transition: width 0.5s ease;
}

@media (max-width: 1024px) {
  .ans-grid,
  .res-hero,
  .sub-grid {
    grid-template-columns: 1fr;
  }
  .q-number {
    font-size: 5rem;
  }
  .res-hero {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 100px;
  }
}
.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* Side Menu Links */
.side-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-nav-links li {
  margin-bottom: 25px;
}
.side-nav-links li a {
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.side-nav-links li a:hover {
  opacity: 0.6;
}

/* Hamburger Animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Ranking Page */
.ranking-section {
  max-width: 1200px;
  margin: 0 auto;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.ranking-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--ease);
  gap: 40px;
}
.ranking-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.ranking-item .rank-number {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  width: 80px;
  flex-shrink: 0;
  opacity: 0.8;
}
.ranking-item .rank-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.ranking-item .rank-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ranking-item .rank-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ranking-item .rank-meta {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}
.ranking-item .rank-title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
}
.ranking-item .rank-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.ranking-item .btn-rounded.mini {
  padding: 10px 25px;
  font-size: 0.7rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .ranking-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
  }
  .ranking-item .rank-number {
    font-size: 2rem;
    width: auto;
  }
  .ranking-item .rank-img {
    width: 100%;
    height: 200px;
  }
  .ranking-item .rank-actions {
    flex-direction: column;
    width: 100%;
  }
  .ranking-item .rank-actions .btn-rounded {
    width: 100%;
  }
}

.search-container {
  position: relative;
  margin-bottom: 100px;
  display: flex;
  gap: 15px;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
.search-container #work-search-input {
  flex: 1;
  height: 70px;
  padding: 0 35px;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  outline: none;
  transition: var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.search-container #work-search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.search-container #work-search-input::placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.search-container #work-search-input:focus {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.search-container #search-results {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: calc(100% - 195px);
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 12px;
  z-index: 100;
  display: none;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .search-container #search-results {
    width: 100%;
    top: 100%;
  }
}
.search-container #search-results .search-item {
  padding: 18px 25px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.search-container #search-results .search-item:last-child {
  border-bottom: none;
}
.search-container #search-results .search-item:hover {
  background: #f8f8f8;
  color: var(--primary);
}
.search-container .btn-rounded {
  width: 180px;
  height: 70px;
  padding: 0;
  font-size: 1rem;
  border-radius: 12px;
  border-width: 2px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .search-container {
    flex-direction: column;
    padding: 0;
  }
  .search-container #search-results {
    width: 100%;
    left: 0;
  }
  .search-container #work-search-input {
    width: 100%;
  }
  .search-container .btn-rounded {
    width: 100%;
  }
}

#selected-work-info {
  margin-bottom: 120px;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#selected-work-info:before {
  content: "SELECTED";
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.03;
  pointer-events: none;
}
#selected-work-info #selected-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  margin: 20px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
#selected-work-info #selected-desc {
  font-size: 1.2rem;
  line-height: 2;
  opacity: 0.7;
  max-width: 900px;
  margin: 0 auto;
}

#loading-spinner {
  text-align: center;
  margin: 100px 0;
}
#loading-spinner .loading-text {
  font-size: 1.2rem;
  letter-spacing: 0.4em;
}
#loading-spinner .loading-bar-container {
  width: 400px;
  max-width: 90%;
}

/* Tags Page */
.tags-all-section {
  max-width: 1200px;
  margin: 0 auto;
}

.tag-cloud-wrapper {
  margin-top: 60px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.tag-item {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  color: var(--primary);
  transition: var(--ease);
  gap: 10px;
}
.tag-item:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.tag-item:hover .tag-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.tag-item .tag-name {
  font-weight: 900;
  font-size: 1rem;
}
.tag-item .tag-count {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 8px;
  border-radius: 100px;
  color: rgba(0, 0, 0, 0.4);
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  border-radius: 50%;
  text-decoration: none;
  color: var(--primary);
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--ease);
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
  text-align: left;
}

p.min {
  font-size: 0.9rem;
  color: #555;
}

.related-item {
  display: flex;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  gap: 50px;
  transition: var(--ease);
  opacity: 1;
  animation-fill-mode: forwards;
}
.related-item:hover {
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}
.related-item .related-img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.related-item .related-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-item .related-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-item .related-content h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}
.related-item .related-content .related-desc-text {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-item .related-content .related-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .related-item {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }
  .related-item .related-img {
    width: 100%;
    height: 250px;
  }
  .related-item .related-content h3 {
    font-size: 1.5rem;
  }
  .related-item .related-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .related-item .related-actions .btn-rounded {
    width: 100%;
  }
}

/* Front Page Styles */
.front-page-wrapper section {
  padding: 150px 0;
}

.hero-full {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 !important;
}
.hero-full .hero-main-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.hero-full .hero-sub-text {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}
.hero-full .hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.hero-full .accent-text {
  color: var(--primary);
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
}

.feature-section {
  background: rgba(0, 0, 0, 0.02);
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--primary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}
.feature-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--primary);
}
.feature-card:hover .card-link {
  padding-left: 10px;
  color: var(--primary);
}
.feature-card .card-num {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  opacity: 0.05;
}
.feature-card .card-icon {
  font-size: 3rem;
  margin-bottom: 30px;
  opacity: 0.8;
  transition: all 0.5s ease;
}
.feature-card h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.feature-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.6;
  margin-bottom: 40px;
}
.feature-card .card-link {
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.recent-section .sub-grid {
  gap: 60px 40px;
}
.recent-section .sub-item h3 {
  font-size: 1.4rem;
}

/* Footer Styles */
.site-footer {
  background: #fff;
  padding: 100px 0 50px;
  border-top: 1px solid var(--primary);
  margin-top: 100px;
  position: relative;
  z-index: 10;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.site-footer .footer-brand .footer-logo {
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 20px;
}
.site-footer .footer-brand .footer-tagline {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
  opacity: 0.6;
}
.site-footer .footer-links-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.site-footer .footer-links-group h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  color: var(--primary);
  opacity: 0.4;
  text-transform: uppercase;
}
.site-footer .footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links-group ul li {
  margin-bottom: 15px;
}
.site-footer .footer-links-group ul li a {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}
.site-footer .footer-links-group ul li a:hover {
  opacity: 0.5;
  padding-left: 5px;
}
.site-footer .footer-info {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-info {
    text-align: left;
  }
}
.site-footer .footer-info .amazon-disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.4;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 300px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-info .amazon-disclaimer {
    margin-left: 0;
  }
}
.site-footer .footer-info .copyright {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  .hero-full .hero-btns {
    flex-direction: column;
  }
  .hero-full .hero-btns .btn-rounded {
    width: 100%;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 40px;
  }
}/*# sourceMappingURL=style.css.map */