@charset "UTF-8";

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

:root {
  --lavender: #A591C2;
  --teal: #49BCBD;
  --yellow: #F8D86C;
  --pink: #E8A0B4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Roboto Condensed', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Sticky card system */
.sticky-card {
  position: sticky;
  top: -1px;
  width: 100%;
  height: calc(100vh + 1px);
  overflow: hidden;
}

/* PC card wrapper */
.pc-card {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* SP card container */
.sp-card {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Logo overlay */
.logo-overlay {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  pointer-events: none;
}

.logo-overlay svg {
  transition: fill 0.3s ease;
}

/* Image styles */
img {
  max-width: 100%;
  height: auto;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video styles */
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

/* Band styles */
.band {
  display: flex;
  align-items: center;
  justify-content: center;
}

.band-top {
  align-items: flex-start;
  padding-top: 7.5%;
}

/* Product credit text */
.product-credit {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  color: #000;
}

.product-credit .name {
  font-weight: 700;
}

.product-credit a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.product-credit a:hover {
  text-decoration: underline;
}

/* Footer credits */
.footer-credits {
  text-align: center;
  color: #000;
  font-family: 'Roboto Condensed', sans-serif;
}

.footer-credits p {
  font-size: 14px;
  margin: 4px 0;
}

.footer-credits .copyright {
  margin-top: 32px;
}

/* Season text */
.season-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #000;
}

/* Utility classes */
.hidden {
  display: none !important;
}

/* Desktop styles (768px+) */
@media (min-width: 768px) {
  .pc-card {
    display: block;
  }
  
  .sp-card {
    display: none;
  }
  
  .sp-only {
    display: none !important;
  }
  
  .logo-overlay {
    top: 50%;
  }
  
  .logo-overlay .logo-sp {
    display: none;
  }
  
  .logo-overlay .logo-pc {
    display: block;
  }
  
  .footer-credits p {
    font-size: 14px;
    margin: 8px 0;
  }
  
  .footer-credits .copyright {
    margin-top: 40px;
  }
  
  .band-top-pc {
    align-items: flex-start;
    padding-top: 5.6%;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  
  .logo-overlay .logo-pc {
    display: none;
  }
  
  .logo-overlay .logo-sp {
    display: block;
  }
}
