/* game-room.pro - Ultimate Collection Hub Styles */
/* ============================================= */

/* CSS Variables */
:root {
  --fuggler-purple: #4A148C;
  --fuggler-orange: #FF6F00;
  --fuggler-cream: #FAFAFA;
  --fuggler-red: #D32F2F;
  --fuggler-dark: #212121;
  --fuggler-gray: #424242;
  --fuggler-light-gray: #F5F5F5;
  --fuggler-accent: #8BC34A;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Creepster', cursive;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(74, 20, 140, 0.1);
  --shadow-md: 0 4px 16px rgba(74, 20, 140, 0.15);
  --shadow-lg: 0 8px 32px rgba(74, 20, 140, 0.2);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--fuggler-dark);
  background-color: var(--fuggler-cream);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--fuggler-purple);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--fuggler-orange);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Sections */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fuggler-purple);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-title .title-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--spacing-sm);
  animation: bounce 2s infinite;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--fuggler-gray);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Custom Cursor */
.fuggler-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--fuggler-purple);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
}

/* Navigation */
.fuggler-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fuggler-purple);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--fuggler-dark);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--fuggler-purple);
}

.cta-btn {
  background: var(--fuggler-purple);
  color: white !important;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.cta-btn:hover {
  background: var(--fuggler-orange);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--fuggler-purple);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-fuggler {
  background: linear-gradient(135deg, var(--fuggler-purple) 0%, var(--fuggler-dark) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-fuggler::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,111,0,0.1)">👹</text></svg>') repeat;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  flex: 1;
  padding: var(--spacing-2xl) var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.title-main {
  display: block;
  background: linear-gradient(45deg, #fff, var(--fuggler-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  display: block;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fuggler-orange);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--fuggler-orange);
  color: white;
}

.btn-primary:hover {
  background: #E65100;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--fuggler-purple);
}

.btn-large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fuggler-showcase {
  position: relative;
}

.featured-fuggler {
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

/* SpongeBob Banner - Laboratory Misfits Style */
.spongebob-banner {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(2px);
}

.banner-overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(247, 147, 30, 0.6) 100%);
  background-size: 50px 50px, 30px 30px, 100% 100%;
}

.banner-content-wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.warning-icons {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.warning-triangle {
  font-size: 2.5rem;
  color: #ffff00;
  animation: warning-blink 1.5s ease-in-out infinite alternate;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.warning-triangle:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes warning-blink {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.banner-main-title {
  margin-bottom: 1.5rem;
}

.collaboration-title {
  font-family: 'Creepster', cursive;
  font-size: 2.5rem;
  color: #000;
  margin: 0;
  line-height: 1;
  text-shadow: 3px 3px 0px #fff, -1px -1px 0px #fff, 1px -1px 0px #fff, -1px 1px 0px #fff;
  font-weight: bold;
}

.collaboration-title-main {
  font-family: 'Creepster', cursive;
  font-size: 4rem;
  color: #ff0000;
  margin: 0;
  line-height: 0.9;
  text-shadow: 
    4px 4px 0px #000,
    -2px -2px 0px #fff,
    2px -2px 0px #fff,
    -2px 2px 0px #fff,
    0 0 20px rgba(255, 0, 0, 0.5);
  font-weight: bold;
  animation: title-pulse 2s ease-in-out infinite alternate;
}

.collaboration-subtitle {
  font-family: 'Creepster', cursive;
  font-size: 2rem;
  color: #000;
  margin: 0.5rem 0 0 0;
  text-shadow: 2px 2px 0px #fff, -1px -1px 0px #fff, 1px -1px 0px #fff, -1px 1px 0px #fff;
  font-weight: bold;
}

@keyframes title-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.collaboration-description {
  max-width: 500px;
  margin: 0 auto;
}

.collaboration-description p {
  font-size: 1.2rem;
  color: #000;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.3);
}

/* Collection Preview */
.collection-preview {
  background: white;
  position: relative;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  justify-items: center;
  align-items: start;
}

.collection-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.collection-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: var(--fuggler-purple);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.card-content {
  padding: var(--spacing-md);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.card-content h3 {
  color: var(--fuggler-purple);
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.card-content p {
  color: var(--fuggler-gray);
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  flex: 1;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
}

.feature-tag {
  background: var(--fuggler-light-gray);
  color: var(--fuggler-dark);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.collection-cta {
  text-align: center;
}

/* About Fugglers - New Card Grid Layout */
.about-fugglers {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

/* Warning Banner */
.warning-banner {
    background: linear-gradient(135deg, var(--fuggler-orange), var(--fuggler-red));
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0 3rem;
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.3);
    animation: pulse-warning 2s ease-in-out infinite;
}

.warning-content {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.warning-icon {
    font-size: 1.5rem;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fuggler-purple), var(--fuggler-orange));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--fuggler-orange);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 2.5s; }

.feature-card h3 {
    color: var(--fuggler-purple);
    font-family: 'Creepster', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--fuggler-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Special hover effects for specific cards */
.feature-card:nth-child(1):hover { /* Teeth */
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.feature-card:nth-child(2):hover { /* Eyes */
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
}

.feature-card:nth-child(3):hover { /* Plush */
    background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
}

.feature-card:nth-child(4):hover { /* Personality */
    background: linear-gradient(135deg, #fff 0%, #f3e5f5 100%);
}

.feature-card:nth-child(5):hover { /* Collectible */
    background: linear-gradient(135deg, #fff 0%, #fff3e0 100%);
}

.feature-card:nth-child(6):hover { /* Quality */
    background: linear-gradient(135deg, #fff 0%, #e8f5e8 100%);
}

/* Featured Series Banner Styles */
.featured-series-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(74, 20, 140, 0.8) 0%,
        rgba(33, 33, 33, 0.6) 50%,
        rgba(255, 111, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.banner-title {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: var(--fuggler-orange);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--fuggler-orange), 0 0 20px var(--fuggler-orange), 0 0 30px var(--fuggler-orange);
    }
    to {
        text-shadow: 0 0 20px var(--fuggler-orange), 0 0 30px var(--fuggler-orange), 0 0 40px var(--fuggler-orange);
    }
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--fuggler-orange), var(--fuggler-red));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.5);
    color: white;
}

/* Responsive Banner */
@media (max-width: 768px) {
    .featured-series-banner {
        height: 50vh;
        min-height: 350px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
}

/* Image Gallery Styles */
.image-gallery {
    background: var(--fuggler-cream);
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Creepster', cursive;
    color: var(--fuggler-orange);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 111, 0, 0.1);
    border-radius: 15px;
    border: 2px dashed var(--fuggler-orange);
}

.gallery-note {
    margin: 0;
    font-size: 1.1rem;
    color: var(--fuggler-dark);
}

.gallery-note a {
    color: var(--fuggler-purple);
    font-weight: 600;
    text-decoration: none;
}

.gallery-note a:hover {
    color: var(--fuggler-orange);
}

/* Special Series Effects */
.collection-card[data-series="love-fugg"]:hover {
    animation: heartbeat 1.5s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.collection-card[data-series="laboratory-misfits"]:hover {
    animation: lab-shake 0.5s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.3);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes lab-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Gallery Item Special Effects */
.gallery-item:nth-child(4) img { /* Love Fugg */
    filter: hue-rotate(320deg) saturate(1.2);
}

.gallery-item:nth-child(5) img { /* Laboratory Misfits */
    filter: sepia(0.3) hue-rotate(90deg) saturate(1.1);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Breaking News Styles */
.breaking-news {
    background: linear-gradient(135deg, var(--fuggler-dark) 0%, var(--fuggler-purple) 100%);
    color: white;
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fuggler-orange), var(--fuggler-red));
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-date {
    background: var(--fuggler-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.news-card h3 {
    color: var(--fuggler-orange);
    font-family: 'Creepster', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.news-warning {
    background: rgba(255, 111, 0, 0.2);
    border-left: 4px solid var(--fuggler-orange);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Series Overview */
.series-overview {
  background: white;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.series-item {
  background: var(--fuggler-light-gray);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.series-item h3 {
  color: var(--fuggler-purple);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
}

.series-item ul {
  list-style: none;
}

.series-item li {
  margin-bottom: var(--spacing-xs);
}

.series-item a {
  color: var(--fuggler-gray);
  transition: color 0.3s ease;
}

.series-item a:hover {
  color: var(--fuggler-purple);
}

/* Footer */
.footer {
  background: var(--fuggler-dark);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--fuggler-orange);
  margin-bottom: var(--spacing-md);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--fuggler-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
  
  /* Features Grid Responsive */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-card .feature-icon {
    font-size: 2.5rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .warning-content {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
  }
  
  .series-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .title-sub {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* SpongeBob Banner Responsive */
  .spongebob-banner {
    height: 300px;
  }
  
  .collaboration-title {
    font-size: 1.8rem;
  }
  
  .collaboration-title-main {
    font-size: 2.5rem;
  }
  
  .collaboration-subtitle {
    font-size: 1.5rem;
  }
  
  .collaboration-description p {
    font-size: 1rem;
    padding: 0.8rem;
  }
  
  .warning-triangle {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
} 