/* ========== VARIABLES ========== */
:root {
  --pink-primary: #ff33cc;
  --pink-light: #ff99ff;
  --pink-bg: #ffe0f0;
  --pink-ultra-light: #fff0ff;a
  --purple-dark: #4b0b5b;
  --purple-accent: #990066;
  --white: #ffffff;
  --text-color: #4b0b5b;
}

/* Dark mode variables */
body[data-theme="dark"] {
  --pink-primary: #ff66dd;
  --pink-light: #ff99ff;
  --pink-bg: #1a0a1f;
  --pink-ultra-light: #2d1a3d;
  --purple-dark: #e0c0ff;
  --purple-accent: #ff99cc;
  --white: #2d1a3d;
  --text-color: #e0c0ff;
}

body[data-theme="dark"]::before {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
}

/* ========== BASE STYLES ========== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--pink-bg);
  font-family: 'Special Elite', monospace;
  color: var(--text-color);
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Add a repeating pattern background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
  pointer-events: none;
  z-index: -1;
}



.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
header {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  background: var(--pink-ultra-light);
  border: 3px dashed var(--pink-primary);
  border-radius: 15px;
  box-shadow: 5px 5px 0 var(--pink-light);
  margin-bottom: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.header-link {
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.header-link:hover {
  transform: scale(1.02);
}

.header-link:hover .glitter-title {
  animation: glitter 1s ease infinite;
}

.theme-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--pink-primary);
  border: 2px solid var(--pink-light);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 3px 3px 0 var(--pink-light);
  transition: all 0.2s ease;
  z-index: 10;
}

.theme-toggle:hover {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 5px 5px 0 var(--pink-light);
}

.theme-toggle:active {
  transform: rotate(15deg) scale(0.95);
  box-shadow: 1px 1px 0 var(--pink-light);
}

.glitter-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1.2rem, 4vw, 2rem);
  color: var(--pink-primary);
  background: linear-gradient(45deg, #ff33cc, #ff99ff, #ffd6f0, #ff33cc);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glitter 3s ease infinite;
  margin: 0;
  line-height: 1.4;
  padding: 0 60px;
}

@keyframes glitter {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  margin: 10px 0 0;
  color: var(--purple-accent);
}

/* ========== NAVIGATION ========== */
nav {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

nav a {
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 16px;
  color: var(--pink-primary);
  border: 2px dotted var(--pink-light);
  background: var(--pink-ultra-light);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--pink-light);
  transition: all 0.2s ease;
  position: relative;
}

nav a:hover {
  background: #ffccff;
  color: var(--purple-accent);
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 5px 5px 0 var(--pink-light);
}

nav a:active {
  transform: rotate(-2deg) scale(0.98);
  box-shadow: 1px 1px 0 var(--pink-light);
}

/* Add cursor trail effect on hover for links */
nav a::before {
  content: '✨';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s;
}

nav a:hover::before {
  opacity: 1;
}

/* ========== MAIN CONTENT ========== */
main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

section {
  background: rgba(255, 240, 255, 0.5);
  padding: 20px;
  border: 2px dashed var(--pink-primary);
  border-radius: 10px;
  transform: rotate(-0.5deg);
}

section:nth-child(even) {
  transform: rotate(0.5deg);
}

section h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.3rem;
  color: var(--pink-primary);
  margin-top: 0;
  text-shadow: 2px 2px 0 var(--pink-light);
}

/* ========== SCROLLABLE CONTAINERS ========== */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 15px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
.scroll-container::-webkit-scrollbar {
  height: 12px;
}

.scroll-container::-webkit-scrollbar-track {
  background: var(--pink-ultra-light);
  border-radius: 10px;
  border: 1px dashed var(--pink-light);
}

.scroll-container::-webkit-scrollbar-thumb {
  background: var(--pink-primary);
  border-radius: 10px;
  border: 2px solid var(--pink-ultra-light);
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--purple-accent);
}

//* ========== ART WALL / PINTEREST STYLE ========== */

.scroll-container {
  display: flex;
  gap: 24px;
  padding: 20px 10px;
}

/* --- Art print card --- */
.art-entry {
  background: white;
  padding: 12px;
  min-width: 200px;
  width: 200px;
  position: relative;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* subtle imperfection */
.art-entry:nth-child(odd) {
  transform: rotate(-2deg);
}

.art-entry:nth-child(even) {
  transform: rotate(2deg);
}

/* hover lift */
.art-entry:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  z-index: 10;
}

/* --- Artwork image --- */
.art-entry img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  border-radius: 1px;
}

/* --- Optional masking tape --- */
.art-entry .tape {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 70px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
}

/* --- Sticker (like button) --- */
.art-entry .sticker {
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  transition: transform 0.15s ease;
  z-index: 3;
}

.art-entry .sticker:hover {
  transform: scale(1.2) rotate(-8deg);
}

/* --- Floating hearts --- */
.floating-heart {
  position: fixed;
  font-size: 20px;
  pointer-events: none;
  z-index: 9999;
  animation: floatUp 3.2s ease-out forwards;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(-160px) scale(1.6);
    opacity: 0;
  }
}

/* --- Caption --- */
.caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-top: 6px;
  text-align: center;
  color: #666;
}

/* --- Section heading link --- */
.section-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.section-link h2 {
  text-decoration: none;
  color: inherit;
}


.section-link h2:hover {
  cursor: pointer;
  text-shadow: 3px 3px 0 var(--pink-light);
}




/* ========== MOVIE POSTERS ========== */
.poster-entry {
  position: relative;
  min-width: 180px;
  width: 180px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.poster-entry img {
  width: 100%;
  border: 3px solid var(--white);
  box-shadow: 4px 4px 0 var(--pink-light);
  transform: rotate(-1deg);
  transition: all 0.2s ease;
}

.poster-entry:nth-child(even) img {
  transform: rotate(1deg);
}

.poster-entry:hover img {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 6px 6px 0 var(--pink-light);
}

.poster-entry .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.poster-entry .tape {
  position: absolute;
  width: 60px;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  opacity: 0.9;
}

/* ========== SIDEBAR ========== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
  position: sticky;
  top: 20px;
}

.status-box {
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--pink-ultra-light) 100%);
  padding: 15px;
  border: 2px dashed var(--pink-primary);
  border-radius: 10px;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  transform: rotate(-1deg);
  box-shadow: 4px 4px 0 var(--pink-light);
}

.status-box h4 {
  margin: 0 0 10px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.9rem;
  color: var(--pink-primary);
}

.music-widget {
  margin-top: 10px;
  width: 100%;
}

.music-widget iframe {
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--pink-light);
}

.blinkies-section {
  background: var(--pink-ultra-light);
  padding: 15px;
  border: 2px dashed var(--pink-primary);
  border-radius: 10px;
  transform: rotate(1deg);
  box-shadow: 4px 4px 0 var(--pink-light);
}

.blinkies-section h4 {
  margin: 0 0 10px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.9rem;
  color: var(--pink-primary);
}

.blinkies {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.blinkies img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ========== FOOTER ========== */
footer {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  font-size: 1rem;
  color: var(--purple-accent);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  border-top: 2px dashed var(--pink-light);
}

/* ========== MOVIE DETAIL PAGE ========== */
.movie-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  grid-column: 1 / -1;
}

.movie-detail .poster {
  position: relative;
  max-width: 400px;
}

.movie-detail .poster img {
  width: 100%;
  border: 4px solid var(--white);
  box-shadow: 6px 6px 0 var(--pink-light);
}

.review {
  background: var(--pink-ultra-light);
  padding: 20px;
  border: 2px dashed var(--pink-primary);
  border-radius: 10px;
}

.review h2, .review h3 {
  font-family: 'Press Start 2P', cursive;
  color: var(--pink-primary);
}

.review p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.movie-gifs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.movie-gifs img {
  width: 100%;
  border: 2px dashed var(--pink-primary);
  border-radius: 5px;
}

/* ========== SCRAPBOOK MAIN ========== */
.scrapbook-main {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    grid-column: 1;
  }
  
  .movie-detail {
    grid-template-columns: 1fr;
  }
  
  .glitter-title {
    font-size: 1.2rem;
    padding: 0 50px;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  .theme-toggle {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    top: 8px;
    right: 8px;
  }
}

/* ========== GUESTBOOK STYLES ========== */
.guestbook-form {
  background: var(--pink-ultra-light);
  padding: 25px;
  border: 2px dashed var(--pink-primary);
  border-radius: 10px;
  transform: rotate(-0.5deg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
  color: var(--pink-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px dashed var(--pink-light);
  background: var(--white);
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--text-color);
  border-radius: 5px;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink-primary);
  box-shadow: 3px 3px 0 var(--pink-light);
  transform: rotate(-1deg);
}

.submit-btn {
  background: var(--pink-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--pink-light);
  transition: all 0.2s ease;
  transform: rotate(-1deg);
}

.submit-btn:hover {
  background: var(--purple-accent);
  transform: rotate(1deg) scale(1.05);
  box-shadow: 6px 6px 0 var(--pink-light);
}

.submit-btn:active {
  transform: rotate(1deg) scale(0.98);
  box-shadow: 2px 2px 0 var(--pink-light);
}

.guestbook-entries {
  background: rgba(255, 240, 255, 0.5);
  padding: 25px;
  border: 2px dashed var(--pink-primary);
  border-radius: 10px;
  transform: rotate(0.5deg);
}

.guestbook-entry {
  background: var(--white);
  padding: 15px;
  border: 2px dashed var(--pink-light);
  border-radius: 8px;
  margin-bottom: 20px;
  transform: rotate(-1deg);
  box-shadow: 3px 3px 0 var(--pink-light);
  transition: all 0.2s ease;
}

.guestbook-entry:nth-child(even) {
  transform: rotate(1deg);
}

.guestbook-entry:hover {
  transform: rotate(0deg);
  box-shadow: 5px 5px 0 var(--pink-light);
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--pink-light);
}

.entry-name {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.9rem;
  color: var(--pink-primary);
}

.entry-date {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--purple-accent);
}

.entry-message {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 10px 0;
  color: var(--text-color);
}

.entry-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--pink-light);
}

.entry-footer a {
  font-family: 'Special Elite', monospace;
  font-size: 0.9rem;
  color: var(--pink-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.entry-footer a:hover {
  color: var(--purple-accent);
  text-decoration: underline;
}

/* ========== BLOG STYLES ========== */
.blog-post {
  background: var(--white);
  padding: 25px;
  border: 2px dashed var(--pink-primary);
  border-radius: 10px;
  margin-bottom: 30px;
  transform: rotate(-0.5deg);
  box-shadow: 4px 4px 0 var(--pink-light);
  transition: all 0.2s ease;
}

.blog-post:nth-child(even) {
  transform: rotate(0.5deg);
}

.blog-post:hover {
  transform: rotate(0deg);
  box-shadow: 6px 6px 0 var(--pink-light);
}

.post-header h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.2rem;
  color: var(--pink-primary);
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px dashed var(--pink-light);
}

.post-date,
.post-mood {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--purple-accent);
}

.post-content {
  font-family: 'Special Elite', monospace;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.post-content p {
  margin: 15px 0;
}

.post-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.post-content li {
  margin: 8px 0;
}

.post-image {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 20px auto;
  border: 2px dashed var(--pink-primary);
  border-radius: 8px;
}

.blog-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.blog-images img {
  width: 100%;
  border: 2px dashed var(--pink-primary);
  border-radius: 8px;
}

.post-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px dashed var(--pink-light);
}

.post-tags {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--purple-accent);
  font-style: italic;
}

/* ========== EXTRA EARLY 2000S TOUCHES ========== */
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
  
  
/* ========== VOTE BOOTH ========== */
#vote-booth {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 220px;
  background: var(--pink-ultra-light);
  border: 2px dashed var(--pink-primary);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--pink-light);
  font-family: 'Press Start 2P', cursive;
  transition: all 0.3s ease;
  z-index: 999;
}

#vote-booth.closed {
  transform: translateY(110%);
  opacity: 0.7;
}

#booth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  border-bottom: 2px dashed var(--pink-primary);
  cursor: grab;
}

#booth-header span {
  font-size: 0.8rem;
}

#toggle-booth {
  background: var(--pink-primary);
  border: 2px solid var(--pink-light);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
  color: white;
  padding: 0;
}

#vote-card {
  margin: 10px auto;
  width: 180px;
  height: 270px;
  overflow: hidden;
  border: 2px dashed var(--pink-primary);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--pink-light);
  transition: transform 0.4s ease;
}

#vote-card.swipe-left {
  transform: translateX(-150%) rotate(-20deg);
  opacity: 0;
}

#vote-card.swipe-right {
  transform: translateX(150%) rotate(20deg);
  opacity: 0;
}

#vote-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vote-buttons {
  display: flex;
  justify-content: space-around;
  margin: 8px 0;
}

.vote-buttons button {
  font-size: 1.5rem;
  cursor: pointer;
  background: var(--pink-primary);
  color: white;
  border: 2px dashed var(--pink-light);
  border-radius: 8px;
  width: 50px;
  height: 50px;
  transition: all 0.2s ease;
}

.vote-buttons button:hover {
  transform: scale(1.2) rotate(-5deg);
  box-shadow: 3px 3px 0 var(--pink-light);
}

#vote-results {
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 6px;
}


  
