/* ============================================
   BIG MACS CORNER - COLLECTIONS SHARED CSS
   Purple Y2K Vibes 💜✨
   ============================================ */

/* 💜 GENERAL PAGE STYLE 💜 */
body {
  background: url('https://kennababy123.neocities.org/Collections/purple.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  font-family: "Trebuchet MS", "Comic Sans MS", sans-serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* 🌟 PAGE GRID - FULL WIDTH (no sidebar) 🌟 */
.page-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "header"
    "main"
    "footer";
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* 💜 HEADER - PURPLE DOT BACKGROUND 💜 */
header {
  grid-area: header;
  background: url('https://kennababy123.neocities.org/cute/purpledot.jpg');
  background-repeat: repeat;
  border: 6px ridge #8b00ff;
  border-radius: 0px;
  box-shadow: 8px 8px 0px #da70d6, 12px 12px 0px rgba(139, 0, 255, 0.3);
  padding: 10px;
  position: relative;
  overflow: hidden;
}

/* Chunky decorative corners */
header::before {
  content: "★";
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 2rem;
  color: #8b00ff;
  text-shadow: 2px 2px 0px #fff;
}

header::after {
  content: "★";
  position: absolute;
  top: -15px;
  right: -10px;
  font-size: 2rem;
  color: #8b00ff;
  text-shadow: 2px 2px 0px #fff;
}

header h1 { 
  font-family: "Lucida Handwriting", cursive;
  font-size: 1.6rem;
  color: #da70d6;
  text-shadow: 3px 3px 0px #8b00ff, -1px -1px 0px #fff;
  margin: 0;
}

header h1 img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================================
   💋 BRATZ PAGE - HOT PINK THEME 💋
   ============================================ */

.bratz-page header {
  background: url('https://kennababy123.neocities.org/cute/pinkdot.jpg');
  border: 6px ridge #ff1493;
  box-shadow: 8px 8px 0px #ff69b4, 12px 12px 0px rgba(255, 20, 147, 0.3);
}

.bratz-page header::before,
.bratz-page header::after {
  color: #ff1493;
}

.bratz-page header h1 {
  color: #ff69b4;
  text-shadow: 3px 3px 0px #ff1493, -1px -1px 0px #fff;
}

/* Bratz header gif row */
.bratz-header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.bratz-gif {
  height: 80px;
  width: auto;
  border: 4px solid #ff1493;
  box-shadow: 4px 4px 0px rgba(255, 20, 147, 0.5);
}

/* ============================================
   💜 STUFFIES PAGE - CUTE GIF DECORATIONS 💜
   ============================================ */

.stuffies-page header {
  background: url('https://kennababy123.neocities.org/cute/purpledot.jpg');
  border: 6px ridge #9400d3;
  box-shadow: 8px 8px 0px #da70d6, 12px 12px 0px rgba(148, 0, 211, 0.3);
}

.stuffies-page header::before,
.stuffies-page header::after {
  color: #9400d3;
}

.stuffies-page header h1 {
  color: #da70d6;
  text-shadow: 3px 3px 0px #9400d3, -1px -1px 0px #fff;
}

/* Stuffies header gif row */
.stuffies-header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.stuffies-gif {
  height: 70px;
  width: auto;
  border: 4px solid #9400d3;
  box-shadow: 4px 4px 0px rgba(148, 0, 211, 0.5);
  transition: transform 0.3s ease;
}

.stuffies-gif:hover {
  transform: scale(1.1) rotate(-5deg);
}

/* Floating decorations for stuffies page */
.stuffies-decoration {
  position: fixed;
  z-index: 100;
  pointer-events: none;
}

.stuffies-decoration.top-left {
  top: 10px;
  left: 10px;
}

.stuffies-decoration.top-right {
  top: 10px;
  right: 10px;
}

.stuffies-decoration.bottom-left {
  bottom: 10px;
  left: 10px;
}

.stuffies-decoration.bottom-right {
  bottom: 10px;
  right: 10px;
}

.stuffies-decoration img {
  width: 80px;
  height: auto;
  opacity: 0.8;
}

/* ============================================
   💜 COLLECTIONS LOBBY - CARD GRID 💜
   ============================================ */

.collections-lobby {
  padding: 10px;
}

.collections-lobby h2 {
  font-family: "Lucida Handwriting", cursive;
  font-size: 1.8em;
  color: #8b00ff;
  text-shadow: 2px 2px 0px #fff, -1px -1px 0px #da70d6;
  margin-bottom: 20px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 10px;
}

.collection-card {
  border: 6px ridge #8b00ff;
  box-shadow: 8px 8px 0px rgba(139, 0, 255, 0.3);
  border-radius: 0px;
  padding: 20px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.collection-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 10px 14px 0px rgba(139, 0, 255, 0.4);
  border-color: #da70d6;
}

.collection-card:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 4px 4px 0px rgba(139, 0, 255, 0.2);
}

.collection-card h3 {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 
    3px 3px 0px #8b00ff,
    -1px -1px 0px #fff,
    1px -1px 0px #fff,
    -1px 1px 0px #fff,
    1px 1px 0px #fff;
  color: #fff;
  margin: 0 0 10px 0;
}

.collection-card p {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.95em;
  color: #fff;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
  margin: 0;
  line-height: 1.4;
}

.collection-card .card-icon {
  font-size: 3em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

/* Sparkle on hover */
.collection-card::after {
  content: "✨";
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 1.4em;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 1px 1px 0px #fff;
}

.collection-card:hover::after {
  opacity: 1;
}

/* Individual card backgrounds */
.collection-card.bratz {
  background: linear-gradient(135deg, #e0b0ff 0%, #9932cc 100%);
}

.collection-card.musicbox {
  background: linear-gradient(135deg, #dda0dd 0%, #8b008b 100%);
}

.collection-card.stuffies {
  background: linear-gradient(135deg, #d8bfd8 0%, #9400d3 100%);
}

.collection-card.physicalmedia {
  background: linear-gradient(135deg, #ee82ee 0%, #4b0082 100%);
}

/* ============================================
   💋 BRATZ COLLECTION PAGE STYLES 💋
   ============================================ */

.bratz-collection {
  padding: 10px;
}

.bratz-collection h2 {
  font-family: "Lucida Handwriting", cursive;
  font-size: 2em;
  color: #ff1493;
  text-shadow: 2px 2px 0px #fff, -1px -1px 0px #ff69b4;
  margin-bottom: 10px;
}

.collection-desc {
  font-size: 1.1em;
  color: #ff1493;
  text-shadow: 1px 1px 0px #fff;
  margin-bottom: 20px;
}

.back-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.back-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff9ecd 0%, #ff69b4 100%);
  border: 4px ridge #ff1493;
  box-shadow: 4px 4px 0px rgba(255, 20, 147, 0.3);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
  font-family: "Impact", sans-serif;
  letter-spacing: 1px;
}

.back-link:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(255, 20, 147, 0.4);
  border-color: #ff69b4;
}

/* Bratz item cards */
.bratz-collection .item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 10px;
}

.bratz-collection .item-card {
  background: linear-gradient(135deg, #ffe6f0 0%, #ffb6c1 100%);
  border: 5px ridge #ff1493;
  box-shadow: 6px 6px 0px rgba(255, 20, 147, 0.3);
  border-radius: 0px;
  padding: 15px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bratz-collection .item-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 8px 10px 0px rgba(255, 20, 147, 0.4);
}

.bratz-collection .item-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 3px solid #ff1493;
  box-shadow: 3px 3px 0px rgba(255, 20, 147, 0.2);
  margin-bottom: 10px;
}

.bratz-collection .item-card h4 {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.3em;
  color: #ff1493;
  margin: 0 0 5px 0;
  text-shadow: 1px 1px 0px #fff;
}

.bratz-collection .item-card p {
  font-size: 0.9em;
  color: #c71585;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   💜 STUFFIES COLLECTION PAGE STYLES 💜
   ============================================ */

.stuffies-collection {
  padding: 10px;
}

.stuffies-collection h2 {
  font-family: "Lucida Handwriting", cursive;
  font-size: 2em;
  color: #9400d3;
  text-shadow: 2px 2px 0px #fff, -1px -1px 0px #da70d6;
  margin-bottom: 10px;
}

.stuffies-collection .collection-desc {
  font-size: 1.1em;
  color: #9400d3;
  text-shadow: 1px 1px 0px #fff;
  margin-bottom: 20px;
}

/* Stuffies item cards - slightly different purple theme */
.stuffies-collection .item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 10px;
}

.stuffies-collection .item-card {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  border: 5px ridge #9400d3;
  box-shadow: 6px 6px 0px rgba(148, 0, 211, 0.3);
  border-radius: 0px;
  padding: 15px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stuffies-collection .item-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 8px 10px 0px rgba(148, 0, 211, 0.4);
}

.stuffies-collection .item-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 3px solid #9400d3;
  box-shadow: 3px 3px 0px rgba(148, 0, 211, 0.2);
  margin-bottom: 10px;
}

.stuffies-collection .item-card h4 {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.3em;
  color: #9400d3;
  margin: 0 0 5px 0;
  text-shadow: 1px 1px 0px #fff;
}

.stuffies-collection .item-card p {
  font-size: 0.9em;
  color: #6a008a;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   💜 COLLECTION PAGE - SHARED ITEM GRID 💜
   ============================================ */

.collection-page {
  padding: 10px;
}

.collection-page h2 {
  font-family: "Lucida Handwriting", cursive;
  font-size: 1.8em;
  color: #8b00ff;
  text-shadow: 2px 2px 0px #fff, -1px -1px 0px #da70d6;
  margin-bottom: 15px;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 10px;
}

.item-card {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  border: 5px ridge #8b00ff;
  box-shadow: 6px 6px 0px rgba(139, 0, 255, 0.3);
  border-radius: 0px;
  padding: 12px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.item-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 8px 10px 0px rgba(139, 0, 255, 0.4);
}

.item-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 3px solid #8b00ff;
  box-shadow: 3px 3px 0px rgba(139, 0, 255, 0.2);
  margin-bottom: 10px;
}

.item-card h4 {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.2em;
  color: #4b0082;
  margin: 0 0 5px 0;
  text-shadow: 1px 1px 0px #fff;
}

.item-card p {
  font-size: 0.85em;
  color: #6a008a;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  grid-area: footer;
  background: url('https://kennababy123.neocities.org/cute/purpledot.jpg');
  border: 6px ridge #8b00ff;
  border-radius: 0px;
  color: #8b00ff;
  padding: 15px;
  box-shadow: 8px 8px 0px rgba(139, 0, 255, 0.3);
  font-weight: bold;
}

.bratz-page footer {
  background: url('https://kennababy123.neocities.org/cute/pinkdot.jpg');
  border: 6px ridge #ff1493;
  color: #ff1493;
  box-shadow: 8px 8px 0px rgba(255, 20, 147, 0.3);
}

.stuffies-page footer {
  background: url('https://kennababy123.neocities.org/cute/purpledot.jpg');
  border: 6px ridge #9400d3;
  color: #9400d3;
  box-shadow: 8px 8px 0px rgba(148, 0, 211, 0.3);
}

footer h2 {
  color: #8b00ff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px #fff;
  font-family: "Impact", sans-serif;
  letter-spacing: 2px;
}

.bratz-page footer h2 {
  color: #ff1493;
}

.stuffies-page footer h2 {
  color: #9400d3;
}

.flex-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.flex-container div {
  background: rgba(255,255,255,0.6);
  border: 3px solid #8b00ff;
  padding: 8px 12px;
  border-radius: 0px;
  box-shadow: 3px 3px 0px rgba(139, 0, 255, 0.2);
  color: #8b00ff;
  font-weight: bold;
}

.bratz-page .flex-container div {
  border: 3px solid #ff1493;
  box-shadow: 3px 3px 0px rgba(255, 20, 147, 0.2);
  color: #ff1493;
}

.stuffies-page .flex-container div {
  border: 3px solid #9400d3;
  box-shadow: 3px 3px 0px rgba(148, 0, 211, 0.2);
  color: #9400d3;
}

/* 🌟 HOVER ANIMATIONS */
img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   💿 PHYSICAL MEDIA PAGE - PURPLE THEME 💿
   ============================================ */

.physicalmedia-page header {
  background: url('https://kennababy123.neocities.org/cute/purpledot.jpg');
  border: 6px ridge #8b00ff;
  box-shadow: 8px 8px 0px #da70d6, 12px 12px 0px rgba(139, 0, 255, 0.3);
}

.physicalmedia-page header::before,
.physicalmedia-page header::after {
  color: #8b00ff;
}

.physicalmedia-page header h1 {
  color: #da70d6;
  text-shadow: 3px 3px 0px #8b00ff, -1px -1px 0px #fff;
}

.physicalmedia-page footer {
  background: url('https://kennababy123.neocities.org/cute/purpledot.jpg');
  border: 6px ridge #8b00ff;
  color: #8b00ff;
  box-shadow: 8px 8px 0px rgba(139, 0, 255, 0.3);
}

.physicalmedia-page footer h2 {
  color: #8b00ff;
}

.physicalmedia-page .flex-container div {
  border: 3px solid #8b00ff;
  box-shadow: 3px 3px 0px rgba(139, 0, 255, 0.2);
  color: #8b00ff;
}

/* ============================================
   💿 PHYSICAL MEDIA COLLECTION STYLES 💿
   ============================================ */

.physicalmedia-collection {
  padding: 10px;
}

.physicalmedia-collection h2 {
  font-family: "Lucida Handwriting", cursive;
  font-size: 2em;
  color: #8b00ff;
  text-shadow: 2px 2px 0px #fff, -1px -1px 0px #da70d6;
  margin-bottom: 10px;
}

.physicalmedia-collection .collection-desc {
  font-size: 1.1em;
  color: #8b00ff;
  text-shadow: 1px 1px 0px #fff;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   📀 MEDIA SECTIONS 📀
   ============================================ */

.media-section {
  margin-bottom: 40px;
  padding: 20px;
  border: 4px ridge #8b00ff;
  background: linear-gradient(135deg, rgba(243, 229, 245, 0.6) 0%, rgba(225, 190, 231, 0.6) 100%);
  box-shadow: 6px 6px 0px rgba(139, 0, 255, 0.2);
}

.section-title {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.6em;
  color: #fff;
  text-shadow:
    3px 3px 0px #8b00ff,
    -1px -1px 0px #fff,
    1px -1px 0px #fff,
    -1px 1px 0px #fff,
    1px 1px 0px #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  padding: 10px;
  background: linear-gradient(135deg, #dda0dd 0%, #8b008b 100%);
  border: 4px ridge #8b00ff;
  box-shadow: 4px 4px 0px rgba(139, 0, 255, 0.3);
  display: inline-block;
}

.section-coming-soon {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.2em;
  color: #8b00ff;
  text-shadow: 1px 1px 0px #fff;
  font-style: italic;
  padding: 20px;
}

/* ============================================
   🎀 MEDIA HEADER ROW (new GIFs) 🎀
   ============================================ */

.media-header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.media-gif {
  height: 70px;
  width: auto;
  border: 3px solid #8b00ff;
  box-shadow: 3px 3px 0px rgba(139, 0, 255, 0.4);
  transition: transform 0.3s ease;
}

.media-gif:hover {
  transform: scale(1.15) rotate(-3deg);
}

/* ============================================
   💿 CD STICKER GRID - FREE STANDING 💿
   ============================================ */

.cd-sticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 10px;
}

.cd-sticker {
  padding: 8px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent;
  border: none;
  box-shadow: none;
}

.cd-sticker:hover {
  transform: translateY(-8px) scale(1.08) rotate(-2deg);
  filter: drop-shadow(0px 8px 8px rgba(139, 0, 255, 0.4));
}

.cd-sticker img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE - Mobile friendly
   ============================================ */
@media (max-width: 900px) {
  .page-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "main"
      "footer";
    padding: 10px;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
  
  .bratz-collection .item-grid,
  .stuffies-collection .item-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  
  .item-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .bratz-header-row,
  .stuffies-header-row {
    gap: 10px;
  }
  
  .bratz-gif,
  .stuffies-gif {
    height: 60px;
  }
  
  header {
    border-width: 4px;
    box-shadow: 4px 4px 0px #da70d6;
    padding: 8px;
  }
  
  header h1 {
    font-size: 1.3rem;
  }
  
  .bratz-page header {
    box-shadow: 4px 4px 0px #ff69b4;
  }
  
  .stuffies-page header {
    box-shadow: 4px 4px 0px #da70d6;
  }
  
  .stuffies-decoration img {
    width: 50px;
  }

  /* Physical media mobile */
  .cd-sticker-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .media-header-row {
    gap: 8px;
  }

  .media-gif {
    height: 50px;
  }

  .section-title {
    font-size: 1.2em;
  }

  .media-section {
    padding: 10px;
  }
}

@media (max-width: 500px) {
  .cd-sticker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cd-sticker img {
    max-height: 140px;
  }
  
  .media-gif {
    height: 40px;
  }
}

.collection-page .collection-desc {
  font-size: 1.1em;
  color: #8b00ff;
  text-shadow: 1px 1px 0px #fff;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}