@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&family=Jost:wght@400;500;600;700;800&display=swap');

:root {
  --the-knud-com-primary: #e74c3c;
  --the-knud-com-secondary: #9b59b6;
  --the-knud-com-accent: #f39c12;
  --the-knud-com-accent-hover: #f1c40f;
  --the-knud-com-light: #3498db;
  --the-knud-com-light-alt: #1abc9c;
  --the-knud-com-background: #1c1c1c;
  --the-knud-com-background-alt: #2d2d2d;
  --the-knud-com-border: #444;
  --the-knud-com-text: #ecf0f1;
  --the-knud-com-text-muted: #bdc3c7;
  
  --the-knud-com-gradient-primary: linear-gradient(45deg, #e74c3c 0%, #9b59b6 50%, #3498db 100%);
  --the-knud-com-gradient-secondary: linear-gradient(45deg, #f39c12 0%, #e74c3c 100%);
  --the-knud-com-gradient-dark: linear-gradient(45deg, #1c1c1c 0%, #2d2d2d 100%);
  --the-knud-com-gradient-card: linear-gradient(45deg, rgba(231, 76, 60, 0.9) 0%, rgba(155, 89, 182, 0.7) 100%);
  
  --the-knud-com-font-primary: "Rubik", sans-serif;
  --the-knud-com-font-heading: "Jost", sans-serif;
  --the-knud-com-font-ui: "Rubik", sans-serif;
  --the-knud-com-font-size-base: 17px;
  --the-knud-com-font-weight-light: 300;
  --the-knud-com-font-weight-normal: 400;
  --the-knud-com-font-weight-medium: 500;
  --the-knud-com-font-weight-semibold: 600;
  --the-knud-com-font-weight-bold: 700;
  --the-knud-com-font-weight-extrabold: 800;
  
  --the-knud-com-spacing-xs: 8px;
  --the-knud-com-spacing-sm: 16px;
  --the-knud-com-spacing-md: 24px;
  --the-knud-com-spacing-lg: 32px;
  --the-knud-com-spacing-xl: 48px;
  --the-knud-com-spacing-xxl: 64px;
  
  --the-knud-com-radius-sm: 4px;
  --the-knud-com-radius: 8px;
  --the-knud-com-radius-lg: 12px;
  --the-knud-com-radius-xl: 16px;
  --the-knud-com-radius-xxl: 20px;
  --the-knud-com-radius-round: 50%;
  --the-knud-com-radius-pill: 25px;
  
  --the-knud-com-shadow-sm: 0 1px 3px rgba(231, 76, 60, 0.2);
  --the-knud-com-shadow: 0 3px 6px rgba(231, 76, 60, 0.25);
  --the-knud-com-shadow-lg: 0 6px 12px rgba(231, 76, 60, 0.3);
  --the-knud-com-shadow-accent: 0 3px 8px rgba(243, 156, 18, 0.4);
  --the-knud-com-shadow-glow: 0 0 15px rgba(231, 76, 60, 0.5);
  
  --the-knud-com-transition-fast: 0.2s ease;
  --the-knud-com-transition: 0.3s ease;
  --the-knud-com-transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  font-size: 15px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-width: 360px;
  background: var(--the-knud-com-background);
  color: var(--the-knud-com-text);
  font-family: var(--the-knud-com-font-primary);
  font-size: var(--the-knud-com-font-size-base);
  line-height: 1.5;
  overflow-x: hidden;
  background-image: 
    linear-gradient(45deg, rgba(231, 76, 60, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, rgba(155, 89, 182, 0.05) 50%, transparent 100%);
}

.the-knud-com-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--the-knud-com-spacing-md);
}

.the-knud-com-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(28, 28, 28, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 3px solid var(--the-knud-com-accent);
  z-index: 1000;
  transition: var(--the-knud-com-transition);
  padding: 0;
  height: 105px;
}

.the-knud-com-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--the-knud-com-spacing-sm) 0;
  min-height: 85px;
}

.the-knud-com-logo {
  display: flex;
  align-items: center;
}

.the-knud-com-logo-img {
  height: 85px;
  width: auto;
  transition: var(--the-knud-com-transition-fast);
  filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.6));
}

.the-knud-com-logo-img:hover {
  transform: scale(1.08) rotate(0deg);
}

.the-knud-com-desktop-nav {
  display: flex;
  gap: var(--the-knud-com-spacing-xs);
  align-items: center;
}

.the-knud-com-nav-link {
  color: var(--the-knud-com-text);
  text-decoration: none;
  font-family: var(--the-knud-com-font-ui);
  font-weight: var(--the-knud-com-font-weight-medium);
  font-size: 15px;
  padding: 10px 20px;
  border-radius: var(--the-knud-com-radius-pill);
  transition: var(--the-knud-com-transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
}

.the-knud-com-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--the-knud-com-accent);
  transition: var(--the-knud-com-transition);
  transform: translateX(-50%);
}

.the-knud-com-nav-link:hover {
  color: var(--the-knud-com-accent);
  transform: translateY(-1px);
  background: rgba(243, 156, 18, 0.1);
}

.the-knud-com-nav-link:hover::after {
  width: 80%;
}

.the-knud-com-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--the-knud-com-radius);
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid transparent;
  transition: var(--the-knud-com-transition);
}

.the-knud-com-mobile-toggle:hover {
  border-color: var(--the-knud-com-accent);
  transform: scale(1.05);
}

.the-knud-com-mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--the-knud-com-text);
  transition: var(--the-knud-com-transition);
  transform-origin: center;
}

.the-knud-com-mobile-toggle:hover span {
  background: var(--the-knud-com-accent);
}

.the-knud-com-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--the-knud-com-transition);
  backdrop-filter: blur(5px);
}

.the-knud-com-overlay-active {
  opacity: 1;
  visibility: visible;
}

.the-knud-com-mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  background: var(--the-knud-com-background);
  z-index: 1000;
  transition: var(--the-knud-com-transition);
  border-bottom: 3px solid var(--the-knud-com-accent);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: var(--the-knud-com-spacing-md) 0;
}

.the-knud-com-menu-active {
  top: 85px;
}

.the-knud-com-mobile-header {
  display: none;
}

.the-knud-com-mobile-close {
  display: none;
}

.the-knud-com-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 var(--the-knud-com-spacing-md);
}

.the-knud-com-mobile-link {
  color: var(--the-knud-com-text);
  text-decoration: none;
  font-family: var(--the-knud-com-font-ui);
  font-weight: var(--the-knud-com-font-weight-medium);
  padding: 16px 20px;
  border-radius: var(--the-knud-com-radius);
  transition: var(--the-knud-com-transition);
  border: 1px solid transparent;
  background: rgba(231, 76, 60, 0.05);
  text-align: left;
  border-left: 3px solid transparent;
}

.the-knud-com-mobile-link:hover {
  background: rgba(243, 156, 18, 0.1);
  border-left-color: var(--the-knud-com-accent);
  transform: translateX(5px);
  color: var(--the-knud-com-accent);
}

.the-knud-com-main {
  padding-top: 100px;
  min-height: 100vh;
}

.the-knud-com-hero,
.the-knud-com-profile-hero,
.the-knud-com-gallery-hero,
.the-knud-com-map-hero {
  text-align: center;
  position: relative;
  padding: var(--the-knud-com-spacing-xl) 0;
}

.the-knud-com-hero::before,
.the-knud-com-profile-hero::before,
.the-knud-com-gallery-hero::before,
.the-knud-com-map-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(155, 89, 182, 0.1) 50%, transparent 100%);
  z-index: -1;
}

.the-knud-com-hero-title,
.the-knud-com-profile-title,
.the-knud-com-gallery-title,
.the-knud-com-map-title {
  font-family: var(--the-knud-com-font-heading);
  font-size: 2.8rem;
  font-weight: var(--the-knud-com-font-weight-bold);
  margin-bottom: var(--the-knud-com-spacing-md);
  position: relative;
  color: var(--the-knud-com-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.the-knud-com-hero-title::after,
.the-knud-com-profile-title::after,
.the-knud-com-gallery-title::after,
.the-knud-com-map-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--the-knud-com-accent);
  border-radius: var(--the-knud-com-radius-pill);
}

.the-knud-com-gallery-subtitle,
.the-knud-com-map-description {
  font-size: 1.2rem;
  color: var(--the-knud-com-text-muted);
  max-width: 600px;
  margin: var(--the-knud-com-spacing-md) auto 0;
  font-weight: var(--the-knud-com-font-weight-normal);
}

.the-knud-com-image-grid {
  columns: 4 280px;
  column-gap: var(--the-knud-com-spacing-lg);
  padding: var(--the-knud-com-spacing-lg) 0;
}

.the-knud-com-card {
  break-inside: avoid;
  margin-bottom: var(--the-knud-com-spacing-lg);
  background: var(--the-knud-com-background-alt);
  border-radius: var(--the-knud-com-radius);
  overflow: hidden;
  transition: var(--the-knud-com-transition);
  border: 1px solid var(--the-knud-com-border);
  position: relative;
  box-shadow: var(--the-knud-com-shadow-sm);
}

.the-knud-com-card:hover {
  transform: translateY(-5px);
  border-color: var(--the-knud-com-accent);
  box-shadow: var(--the-knud-com-shadow-lg);
}

.the-knud-com-image-container {
  position: relative;
  overflow: hidden;
}

.the-knud-com-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--the-knud-com-transition-slow);
}

.the-knud-com-card:hover .the-knud-com-image {
  transform: scale(1.05);
}

.the-knud-com-card-footer {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(28, 28, 28, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--the-knud-com-radius-pill);
  border: 1px solid rgba(243, 156, 18, 0.3);
  box-shadow: var(--the-knud-com-shadow-sm);
  z-index: 2;
  max-width: calc(100% - 24px);
}

.the-knud-com-model-name {
  color: var(--the-knud-com-accent);
  font-family: var(--the-knud-com-font-heading);
  font-weight: var(--the-knud-com-font-weight-semibold);
  font-size: 0.8rem;
  text-decoration: none;
  transition: var(--the-knud-com-transition-fast);
  display: block;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.the-knud-com-model-name:hover {
  color: var(--the-knud-com-accent-hover);
  transform: scale(1.05);
}

.the-knud-com-model-stats {
  display: none;
}

.the-knud-com-masonry-grid {
  columns: 4 280px;
  column-gap: var(--the-knud-com-spacing-lg);
}

.the-knud-com-masonry-item {
  break-inside: avoid;
  margin-bottom: var(--the-knud-com-spacing-lg);
}

.the-knud-com-card-v2 {
  background: var(--the-knud-com-background-alt);
  border-radius: var(--the-knud-com-radius);
  overflow: hidden;
  transition: var(--the-knud-com-transition);
  border: 1px solid var(--the-knud-com-border);
  box-shadow: var(--the-knud-com-shadow-sm);
}

.the-knud-com-card-v2:hover {
  transform: translateY(-5px);
  border-color: var(--the-knud-com-accent);
  box-shadow: var(--the-knud-com-shadow-lg);
}

.the-knud-com-masonry-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--the-knud-com-transition-slow);
}

.the-knud-com-card-v2:hover .the-knud-com-masonry-image {
  transform: scale(1.05);
}

.the-knud-com-photo-grid {
  columns: 4 280px;
  column-gap: var(--the-knud-com-spacing-lg);
  padding: var(--the-knud-com-spacing-lg) 0;
}

.the-knud-com-photo-item {
  break-inside: avoid;
  margin-bottom: var(--the-knud-com-spacing-lg);
}

.the-knud-com-photo-card {
  background: var(--the-knud-com-background-alt);
  border-radius: var(--the-knud-com-radius);
  overflow: hidden;
  transition: var(--the-knud-com-transition);
  border: 1px solid var(--the-knud-com-border);
  position: relative;
  box-shadow: var(--the-knud-com-shadow-sm);
}

.the-knud-com-photo-card:hover {
  transform: translateY(-3px);
  border-color: var(--the-knud-com-accent);
}

.the-knud-com-photo-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--the-knud-com-transition-slow);
}

.the-knud-com-photo-card:hover .the-knud-com-photo-image {
  transform: scale(1.05);
}

.the-knud-com-pagination-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: var(--the-knud-com-spacing-lg) 0;
}

.the-knud-com-page-link {
  background: var(--the-knud-com-background-alt);
  color: var(--the-knud-com-text);
  padding: 10px 18px;
  border-radius: var(--the-knud-com-radius);
  text-decoration: none;
  font-family: var(--the-knud-com-font-ui);
  font-weight: var(--the-knud-com-font-weight-medium);
  border: 1px solid var(--the-knud-com-border);
  transition: var(--the-knud-com-transition);
  position: relative;
  overflow: hidden;
}

.the-knud-com-page-link:hover {
  color: var(--the-knud-com-accent);
  border-color: var(--the-knud-com-accent);
  transform: translateY(-2px);
  background: rgba(243, 156, 18, 0.1);
}

.the-knud-com-premium-grid {
  columns: 4 280px;
  column-gap: var(--the-knud-com-spacing-lg);
  padding: var(--the-knud-com-spacing-lg) 0;
}

.the-knud-com-premium-card {
  break-inside: avoid;
  margin-bottom: var(--the-knud-com-spacing-lg);
  background: var(--the-knud-com-background-alt);
  border-radius: var(--the-knud-com-radius);
  overflow: hidden;
  transition: var(--the-knud-com-transition);
  border: 1px solid var(--the-knud-com-border);
  position: relative;
  box-shadow: var(--the-knud-com-shadow-sm);
}

.the-knud-com-premium-card:hover {
  transform: translateY(-5px);
  border-color: var(--the-knud-com-accent);
  box-shadow: var(--the-knud-com-shadow-lg);
}

.the-knud-com-premium-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.the-knud-com-premium-image {
  position: relative;
  overflow: hidden;
}

.the-knud-com-premium-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--the-knud-com-transition-slow);
}

.the-knud-com-premium-card:hover .the-knud-com-premium-image img {
  transform: scale(1.05);
}

.the-knud-com-premium-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--the-knud-com-accent);
  color: var(--the-knud-com-background);
  padding: 6px 12px;
  border-radius: var(--the-knud-com-radius-pill);
  font-size: 0.75rem;
  font-weight: var(--the-knud-com-font-weight-bold);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--the-knud-com-shadow-sm);
  z-index: 2;
}

.the-knud-com-premium-content {
  padding: var(--the-knud-com-spacing-md);
}

.the-knud-com-premium-name {
  color: var(--the-knud-com-text);
  font-family: var(--the-knud-com-font-heading);
  font-weight: var(--the-knud-com-font-weight-semibold);
  font-size: 1.1rem;
  margin-bottom: var(--the-knud-com-spacing-xs);
  color: var(--the-knud-com-accent);
}

.the-knud-com-premium-desc {
  color: var(--the-knud-com-text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--the-knud-com-spacing-md);
  line-height: 1.4;
  font-weight: var(--the-knud-com-font-weight-normal);
}

.the-knud-com-premium-stats {
  display: flex;
  gap: var(--the-knud-com-spacing-md);
}

.the-knud-com-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--the-knud-com-text-muted);
  font-size: 0.75rem;
  font-weight: var(--the-knud-com-font-weight-medium);
}

.the-knud-com-stat .material-icons {
  font-size: 14px;
}

.the-knud-com-category-grid {
  columns: 4 280px;
  column-gap: var(--the-knud-com-spacing-lg);
  padding: var(--the-knud-com-spacing-lg) 0;
}

.the-knud-com-category-card {
  break-inside: avoid;
  margin-bottom: var(--the-knud-com-spacing-lg);
  background: var(--the-knud-com-background-alt);
  border-radius: var(--the-knud-com-radius);
  overflow: hidden;
  transition: var(--the-knud-com-transition);
  border: 1px solid var(--the-knud-com-border);
  box-shadow: var(--the-knud-com-shadow-sm);
}

.the-knud-com-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--the-knud-com-accent);
  box-shadow: var(--the-knud-com-shadow);
}

.the-knud-com-category-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.the-knud-com-category-image {
  height: 100px;
  overflow: hidden;
}

.the-knud-com-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--the-knud-com-transition);
}

.the-knud-com-category-card:hover .the-knud-com-category-image img {
  transform: scale(1.1);
}

.the-knud-com-category-info {
  padding: var(--the-knud-com-spacing-sm);
}

.the-knud-com-category-name {
  color: var(--the-knud-com-text);
  font-family: var(--the-knud-com-font-heading);
  font-weight: var(--the-knud-com-font-weight-semibold);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.the-knud-com-category-count {
  color: var(--the-knud-com-accent);
  font-size: 0.75rem;
  font-weight: var(--the-knud-com-font-weight-medium);
}

.the-knud-com-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: var(--the-knud-com-spacing-lg) 0;
}

.the-knud-com-tag {
  background: var(--the-knud-com-background-alt);
  color: var(--the-knud-com-text);
  padding: 8px 16px;
  border-radius: var(--the-knud-com-radius-pill);
  text-decoration: none;
  font-family: var(--the-knud-com-font-ui);
  font-weight: var(--the-knud-com-font-weight-medium);
  font-size: 0.85rem;
  border: 1px solid var(--the-knud-com-border);
  transition: var(--the-knud-com-transition-fast);
  position: relative;
  overflow: hidden;
}

.the-knud-com-tag:hover {
  color: var(--the-knud-com-accent);
  border-color: var(--the-knud-com-accent);
  transform: translateY(-1px);
  background: rgba(243, 156, 18, 0.1);
}

.the-knud-com-profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--the-knud-com-spacing-xl);
  padding: var(--the-knud-com-spacing-xl) 0;
}

.the-knud-com-profile-info {
  background: var(--the-knud-com-background-alt);
  padding: var(--the-knud-com-spacing-xl);
  border-radius: var(--the-knud-com-radius);
  border: 1px solid var(--the-knud-com-border);
  box-shadow: var(--the-knud-com-shadow);
}

.the-knud-com-profile-stats {
  font-size: 1rem;
  color: var(--the-knud-com-accent);
  font-weight: var(--the-knud-com-font-weight-semibold);
  margin-bottom: var(--the-knud-com-spacing-md);
}

.the-knud-com-profile-bio {
  color: var(--the-knud-com-text);
  line-height: 1.6;
  margin-bottom: var(--the-knud-com-spacing-xl);
  font-weight: var(--the-knud-com-font-weight-normal);
}

.the-knud-com-quick-info h3 {
  color: var(--the-knud-com-text);
  font-family: var(--the-knud-com-font-heading);
  font-weight: var(--the-knud-com-font-weight-semibold);
  margin-bottom: var(--the-knud-com-spacing-md);
  font-size: 1.2rem;
  color: var(--the-knud-com-accent);
}

.the-knud-com-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--the-knud-com-spacing-md);
}

.the-knud-com-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--the-knud-com-border);
  align-items: center;
}

.the-knud-com-info-label {
  color: var(--the-knud-com-text-muted);
  font-weight: var(--the-knud-com-font-weight-medium);
  font-size: 0.85rem;
}

.the-knud-com-info-value {
  color: var(--the-knud-com-accent);
  font-weight: var(--the-knud-com-font-weight-semibold);
  font-size: 0.9rem;
}

.the-knud-com-profile-sidebar {
  position: sticky;
  top: 110px;
  height: fit-content;
}

.the-knud-com-profile-card {
  background: var(--the-knud-com-background-alt);
  border-radius: var(--the-knud-com-radius);
  overflow: hidden;
  border: 1px solid var(--the-knud-com-border);
  box-shadow: var(--the-knud-com-shadow);
}

.the-knud-com-profile-image-main {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.the-knud-com-profile-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--the-knud-com-transition);
}

.the-knud-com-profile-card:hover .the-knud-com-profile-image-main img {
  transform: scale(1.05);
}

.the-knud-com-profile-actions {
  padding: var(--the-knud-com-spacing-md);
}

.the-knud-com-view-gallery {
  width: 100%;
  background: var(--the-knud-com-accent);
  color: var(--the-knud-com-background);
  border: none;
  padding: 14px;
  border-radius: var(--the-knud-com-radius);
  font-family: var(--the-knud-com-font-ui);
  font-weight: var(--the-knud-com-font-weight-semibold);
  cursor: pointer;
  transition: var(--the-knud-com-transition);
  position: relative;
  overflow: hidden;
}

.the-knud-com-view-gallery:hover {
  background: var(--the-knud-com-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--the-knud-com-shadow-accent);
}

.the-knud-com-section-title {
  font-family: var(--the-knud-com-font-heading);
  font-size: 2.2rem;
  font-weight: var(--the-knud-com-font-weight-bold);
  text-align: center;
  margin-bottom: var(--the-knud-com-spacing-xl);
  color: var(--the-knud-com-text);
  position: relative;
}

.the-knud-com-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--the-knud-com-accent);
  border-radius: var(--the-knud-com-radius-pill);
}

.the-knud-com-section-title-v2 {
  font-family: var(--the-knud-com-font-heading);
  font-size: 2rem;
  font-weight: var(--the-knud-com-font-weight-bold);
  text-align: center;
  margin-bottom: var(--the-knud-com-spacing-xl);
  position: relative;
  padding-bottom: var(--the-knud-com-spacing-md);
  color: var(--the-knud-com-text);
}

.the-knud-com-section-title-v2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--the-knud-com-accent);
  border-radius: var(--the-knud-com-radius-pill);
}

.the-knud-com-content,
.the-knud-com-map-content {
  padding: var(--the-knud-com-spacing-xl) 0;
}

.the-knud-com-text-content,
.the-knud-com-rich-content,
.the-knud-com-map-text {
  background: var(--the-knud-com-background-alt);
  padding: var(--the-knud-com-spacing-xl);
  border-radius: var(--the-knud-com-radius);
  border: 1px solid var(--the-knud-com-border);
  line-height: 1.6;
  box-shadow: var(--the-knud-com-shadow);
}

.the-knud-com-text-content p,
.the-knud-com-rich-content p,
.the-knud-com-map-text p {
  margin-bottom: var(--the-knud-com-spacing-md);
  font-weight: var(--the-knud-com-font-weight-normal);
}

.the-knud-com-text-content p:last-child,
.the-knud-com-rich-content p:last-child,
.the-knud-com-map-text p:last-child {
  margin-bottom: 0;
}

.the-knud-com-related-links {
  padding: var(--the-knud-com-spacing-xl) 0;
}

.the-knud-com-scroll-grid {
  display: flex;
  gap: var(--the-knud-com-spacing-md);
  overflow-x: auto;
  padding: var(--the-knud-com-spacing-lg) 0;
  scrollbar-width: thin;
  scrollbar-color: var(--the-knud-com-accent) var(--the-knud-com-background-alt);
}

.the-knud-com-scroll-grid::-webkit-scrollbar {
  height: 6px;
}

.the-knud-com-scroll-grid::-webkit-scrollbar-track {
  background: var(--the-knud-com-background-alt);
  border-radius: var(--the-knud-com-radius-pill);
}

.the-knud-com-scroll-grid::-webkit-scrollbar-thumb {
  background: var(--the-knud-com-accent);
  border-radius: var(--the-knud-com-radius-pill);
}

.the-knud-com-scroll-item {
  flex: 0 0 180px;
  background: var(--the-knud-com-background-alt);
  border-radius: var(--the-knud-com-radius);
  overflow: hidden;
  transition: var(--the-knud-com-transition);
  border: 1px solid var(--the-knud-com-border);
  box-shadow: var(--the-knud-com-shadow-sm);
}

.the-knud-com-scroll-item:hover {
  transform: translateY(-3px);
  border-color: var(--the-knud-com-accent);
}

.the-knud-com-scroll-image {
  height: 120px;
  overflow: hidden;
}

.the-knud-com-scroll-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--the-knud-com-transition);
}

.the-knud-com-scroll-item:hover .the-knud-com-scroll-image img {
  transform: scale(1.1);
}

.the-knud-com-scroll-info {
  padding: var(--the-knud-com-spacing-sm);
}

.the-knud-com-scroll-name {
  color: var(--the-knud-com-text);
  font-family: var(--the-knud-com-font-heading);
  font-weight: var(--the-knud-com-font-weight-medium);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.the-knud-com-scroll-badge {
  background: var(--the-knud-com-accent);
  color: var(--the-knud-com-background);
  padding: 4px 8px;
  border-radius: var(--the-knud-com-radius-pill);
  font-size: 0.65rem;
  font-weight: var(--the-knud-com-font-weight-bold);
  display: inline-block;
}

.the-knud-com-photo-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: var(--the-knud-com-transition);
}

.the-knud-com-photo-card:hover .the-knud-com-photo-actions {
  opacity: 1;
}

.the-knud-com-like-btn,
.the-knud-com-zoom-btn {
  background: rgba(28, 28, 28, 0.8);
  border: none;
  color: var(--the-knud-com-text);
  width: 32px;
  height: 32px;
  border-radius: var(--the-knud-com-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--the-knud-com-transition-fast);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.the-knud-com-like-btn:hover,
.the-knud-com-zoom-btn:hover {
  background: var(--the-knud-com-accent);
  color: var(--the-knud-com-background);
  transform: scale(1.1);
}

.the-knud-com-category-carousel {
  display: flex;
  gap: var(--the-knud-com-spacing-md);
  overflow-x: auto;
  padding: var(--the-knud-com-spacing-lg) 0;
  scrollbar-width: none;
  cursor: grab;
}

.the-knud-com-category-carousel::-webkit-scrollbar {
  display: none;
}

.the-knud-com-category-carousel.active {
  cursor: grabbing;
}

.the-knud-com-category-slide {
  flex: 0 0 120px;
  text-align: center;
}

.the-knud-com-category-link-v2 {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--the-knud-com-transition);
}

.the-knud-com-category-link-v2:hover {
  transform: translateY(-3px);
}

.the-knud-com-category-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 8px;
  border-radius: var(--the-knud-com-radius-round);
  overflow: hidden;
  border: 2px solid var(--the-knud-com-border);
  transition: var(--the-knud-com-transition);
  box-shadow: var(--the-knud-com-shadow-sm);
}

.the-knud-com-category-link-v2:hover .the-knud-com-category-icon {
  border-color: var(--the-knud-com-accent);
  transform: scale(1.1);
}

.the-knud-com-category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.the-knud-com-category-label {
  color: var(--the-knud-com-text);
  font-family: var(--the-knud-com-font-ui);
  font-weight: var(--the-knud-com-font-weight-medium);
  font-size: 0.8rem;
}

.the-knud-com-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: var(--the-knud-com-spacing-lg) 0;
}

.the-knud-com-cloud-link {
  background: var(--the-knud-com-background-alt);
  color: var(--the-knud-com-text);
  padding: 8px 16px;
  border-radius: var(--the-knud-com-radius-pill);
  text-decoration: none;
  font-family: var(--the-knud-com-font-ui);
  font-weight: var(--the-knud-com-font-weight-medium);
  border: 1px solid var(--the-knud-com-border);
  transition: var(--the-knud-com-transition);
  position: relative;
  overflow: hidden;
}

.the-knud-com-cloud-link:hover {
  color: var(--the-knud-com-accent);
  border-color: var(--the-knud-com-accent);
  transform: translateY(-1px);
  background: rgba(243, 156, 18, 0.1);
}

.the-knud-com-advanced-pagination {
  padding: var(--the-knud-com-spacing-xl) 0;
}

.the-knud-com-pagination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--the-knud-com-spacing-md);
}

.the-knud-com-pagination-card {
  background: var(--the-knud-com-background-alt);
  padding: var(--the-knud-com-spacing-md);
  border-radius: var(--the-knud-com-radius);
  text-decoration: none;
  color: var(--the-knud-com-text);
  border: 1px solid var(--the-knud-com-border);
  transition: var(--the-knud-com-transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--the-knud-com-shadow-sm);
}

.the-knud-com-pagination-card:hover {
  transform: translateY(-3px);
  border-color: var(--the-knud-com-accent);
  box-shadow: var(--the-knud-com-shadow);
}

.the-knud-com-page-number {
  font-family: var(--the-knud-com-font-heading);
  font-weight: var(--the-knud-com-font-weight-semibold);
  font-size: 1rem;
  color: var(--the-knud-com-accent);
}

.the-knud-com-page-arrow {
  color: var(--the-knud-com-accent);
  font-size: 1.1rem;
  transition: var(--the-knud-com-transition-fast);
}

.the-knud-com-pagination-card:hover .the-knud-com-page-arrow {
  transform: translateX(3px);
}

.the-knud-com-footer {
  background: var(--the-knud-com-background-alt);
  border-top: 3px solid var(--the-knud-com-accent);
  margin-top: var(--the-knud-com-spacing-xxl);
  position: relative;
  overflow: hidden;
}

.the-knud-com-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, rgba(231, 76, 60, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, rgba(155, 89, 182, 0.05) 50%, transparent 100%);
  z-index: 0;
}

.the-knud-com-footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--the-knud-com-spacing-xl);
  padding: var(--the-knud-com-spacing-xl) 0;
  position: relative;
  z-index: 1;
}

.the-knud-com-footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.the-knud-com-footer-logo {
  height: 60px;
  margin-bottom: var(--the-knud-com-spacing-md);
  filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.6));
}

.the-knud-com-footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--the-knud-com-spacing-xl);
}

.the-knud-com-footer-section h3 {
  color: var(--the-knud-com-text);
  font-family: var(--the-knud-com-font-heading);
  font-weight: var(--the-knud-com-font-weight-semibold);
  margin-bottom: var(--the-knud-com-spacing-md);
  font-size: 1.1rem;
  color: var(--the-knud-com-accent);
}

.the-knud-com-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.the-knud-com-footer-links a {
  color: var(--the-knud-com-text-muted);
  text-decoration: none;
  transition: var(--the-knud-com-transition-fast);
  padding: 6px 0;
  font-weight: var(--the-knud-com-font-weight-normal);
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
}

.the-knud-com-footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--the-knud-com-accent);
  font-size: 1rem;
  transition: var(--the-knud-com-transition-fast);
}

.the-knud-com-footer-links a:hover {
  color: var(--the-knud-com-accent);
  transform: translateX(5px);
}

.the-knud-com-footer-bottom {
  border-top: 1px solid var(--the-knud-com-border);
  padding: var(--the-knud-com-spacing-xl) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.the-knud-com-warning {
  margin-bottom: var(--the-knud-com-spacing-lg);
}

.the-knud-com-warning p {
  color: var(--the-knud-com-text-muted);
  margin-bottom: var(--the-knud-com-spacing-sm);
  font-size: 0.85rem;
  font-weight: var(--the-knud-com-font-weight-normal);
}

.the-knud-com-warning p:last-child {
  margin-bottom: 0;
}

.the-knud-com-copyright p {
  color: var(--the-knud-com-text-muted);
  font-size: 0.85rem;
  font-weight: var(--the-knud-com-font-weight-normal);
}

.the-knud-com-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--the-knud-com-spacing-xl);
  backdrop-filter: blur(5px);
}

.the-knud-com-lightbox-active {
  display: flex;
}

.the-knud-com-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.the-knud-com-lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--the-knud-com-accent);
  border: none;
  color: var(--the-knud-com-background);
  width: 40px;
  height: 40px;
  border-radius: var(--the-knud-com-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--the-knud-com-transition);
  z-index: 10001;
  box-shadow: var(--the-knud-com-shadow);
}

.the-knud-com-lightbox-close:hover {
  background: var(--the-knud-com-accent-hover);
  transform: scale(1.1);
}

.the-knud-com-lightbox-navigation {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--the-knud-com-spacing-md);
}

.the-knud-com-lightbox-prev,
.the-knud-com-lightbox-next {
  background: var(--the-knud-com-accent);
  border: none;
  color: var(--the-knud-com-background);
  width: 45px;
  height: 45px;
  border-radius: var(--the-knud-com-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--the-knud-com-transition);
  z-index: 10001;
  box-shadow: var(--the-knud-com-shadow);
}

.the-knud-com-lightbox-prev:hover,
.the-knud-com-lightbox-next:hover {
  background: var(--the-knud-com-accent-hover);
  transform: scale(1.1);
}

.the-knud-com-lightbox-image-container {
  max-width: calc(90vw - 180px);
  max-height: calc(90vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.the-knud-com-lightbox-image {
  max-height: 100%;
  border-radius: var(--the-knud-com-radius);
  object-fit: contain;
  box-shadow: var(--the-knud-com-shadow-lg);
}

.the-knud-com-lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: var(--the-knud-com-font-ui);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: var(--the-knud-com-radius-pill);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.the-knud-com-loaded {
  animation: theKnud12FadeIn 0.4s ease;
}

@keyframes theKnud12FadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.the-knud-com-profile-image-main {
    height: 280px;
    overflow: visible;
    position: relative;
    margin-bottom: 45px;
}

.the-knud-com-profile-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--the-knud-com-transition);
    border-radius: var(--the-knud-com-radius);
}

.the-knud-com-profile-thumbnail {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: var(--the-knud-com-radius-round);
    overflow: hidden;
    border: 3px solid var(--the-knud-com-accent);
    background: var(--the-knud-com-background);
    box-shadow: var(--the-knud-com-shadow-lg);
    z-index: 2;
    transition: var(--the-knud-com-transition);
}

.the-knud-com-profile-thumbnail:hover {
    transform: translateX(-50%) scale(1.1);
    border-color: var(--the-knud-com-accent-hover);
}

.the-knud-com-profile-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
  .the-knud-com-image-grid,
  .the-knud-com-masonry-grid,
  .the-knud-com-photo-grid,
  .the-knud-com-premium-grid,
  .the-knud-com-category-grid {
    columns: 3 280px;
  }
}

@media (max-width: 768px) {
  .the-knud-com-hero-title,
  .the-knud-com-profile-title,
  .the-knud-com-gallery-title,
  .the-knud-com-map-title {
    font-size: 2.2rem;
  }
  
  .the-knud-com-section-title,
  .the-knud-com-section-title-v2 {
    font-size: 1.8rem;
  }
  
  .the-knud-com-image-grid,
  .the-knud-com-masonry-grid,
  .the-knud-com-photo-grid,
  .the-knud-com-premium-grid,
  .the-knud-com-category-grid {
    columns: 2 200px;
    column-gap: var(--the-knud-com-spacing-md);
  }
  
  .the-knud-com-lightbox-navigation {
    flex-direction: column;
  }
  
  .the-knud-com-lightbox-prev,
  .the-knud-com-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .the-knud-com-lightbox-prev {
    left: 10px;
  }
  
  .the-knud-com-lightbox-next {
    right: 10px;
  }
  
  .the-knud-com-profile-thumbnail {
    width: 80px;
    height: 80px;
    bottom: -30px;
  }
  
  .the-knud-com-profile-image-main {
    height: 240px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .the-knud-com-container {
    padding: 0 var(--the-knud-com-spacing-sm);
  }
  
  .the-knud-com-image-grid,
  .the-knud-com-masonry-grid,
  .the-knud-com-photo-grid,
  .the-knud-com-premium-grid,
  .the-knud-com-category-grid {
    columns: 1 280px;
  }
  
  .the-knud-com-footer-nav {
    grid-template-columns: 1fr;
  }
  
  .the-knud-com-profile-thumbnail {
    width: 70px;
    height: 70px;
    bottom: -25px;
  }
  
  .the-knud-com-profile-image-main {
    height: 200px;
    margin-bottom: 35px;
  }
  
  .the-knud-com-hero-title,
  .the-knud-com-profile-title,
  .the-knud-com-gallery-title,
  .the-knud-com-map-title {
    font-size: 1.8rem;
  }
  
  .the-knud-com-section-title,
  .the-knud-com-section-title-v2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .the-knud-com-desktop-nav {
    display: none;
  }
  
  .the-knud-com-mobile-toggle {
    display: flex;
  }
  
  .the-knud-com-profile-layout {
    grid-template-columns: 1fr;
    gap: var(--the-knud-com-spacing-lg);
  }
  
  .the-knud-com-profile-sidebar {
    position: static;
  }
  
  .the-knud-com-footer-main {
    grid-template-columns: 1fr;
    gap: var(--the-knud-com-spacing-lg);
    text-align: center;
  }
}

@media (max-width: 992px) {
  .the-knud-com-profile-layout {
    display: flex;
    flex-direction: column;
    gap: var(--the-knud-com-spacing-lg);
  }
  
  .the-knud-com-profile-sidebar {
    order: -1;
  }
  
  .the-knud-com-profile-main {
    order: 1;
  }
}

.the-knud-com-card::before,
.the-knud-com-card-v2::before,
.the-knud-com-photo-card::before,
.the-knud-com-premium-card::before,
.the-knud-com-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--the-knud-com-gradient-primary);
  opacity: 0;
  transition: var(--the-knud-com-transition);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.the-knud-com-card:hover::before,
.the-knud-com-card-v2:hover::before,
.the-knud-com-photo-card:hover::before,
.the-knud-com-premium-card:hover::before,
.the-knud-com-category-card:hover::before {
  opacity: 0.05;
}

@keyframes theKnud12Pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(243, 156, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
  }
}

.the-knud-com-nav-link:focus,
.the-knud-com-tag:focus,
.the-knud-com-page-link:focus {
  animation: theKnud12Pulse 1.5s infinite;
}