/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #007AFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    background: #007AFF;
    border-radius: 1px;
}

/* Chat Bubbles Background (behind text) */
.chat-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; /* Behind everything */
}

.bubble {
    position: absolute;
    animation: fadeInBubble 1.5s ease-out forwards, float 8s ease-in-out infinite;
    animation-delay: inherit;
    opacity: 0; /* Start invisible for fade-in */
}

.bubble img {
    width: 500px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 122, 255, 0.15));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Hello! - Links weit außen */
.bubble-1 {
    top: 12%;
    left: 2%;
    animation: fadeInBubble 1.5s ease-out forwards, float1 6s ease-in-out infinite;
    animation-delay: 0.2s;
}

/* Yo - Rechts nah zur Mitte */
.bubble-2 {
    top: 8%;
    right: 25%;
    animation: fadeInBubble 1.5s ease-out forwards, float2 7s ease-in-out infinite;
    animation-delay: 0.6s;
}

/* Hey! - Rechts weit außen */
.bubble-3 {
    top: 45%;
    right: 1%;
    animation: fadeInBubble 1.5s ease-out forwards, float3 9s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* Nice work - Ganz links */
.bubble-4 {
    top: 35%;
    left: 5%;
    animation: fadeInBubble 1.5s ease-out forwards, float4 8s ease-in-out infinite;
    animation-delay: 0.4s;
}

/* Heart - Links sehr weit außen */
.bubble-5 {
    top: 55%;
    left: 1%;
    animation: fadeInBubble 1.5s ease-out forwards, float5 10s ease-in-out infinite;
    animation-delay: 1.0s;
}

/* THE CLIMB! - Rechts mittlere Position */
.bubble-6 {
    top: 22%;
    right: 15%;
    animation: fadeInBubble 1.5s ease-out forwards, float6 5s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Float Animation 1 - Hello */
@keyframes float1 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-15px) translateX(5px) rotate(1deg) scale(1.02); }
    66% { transform: translateY(-8px) translateX(-3px) rotate(-0.5deg) scale(0.98); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

/* Float Animation 2 - Yo */
@keyframes float2 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-12px) translateX(-4px) rotate(-0.8deg) scale(1.015); }
    75% { transform: translateY(-6px) translateX(2px) rotate(0.6deg) scale(0.985); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

/* Float Animation 3 - Hey */
@keyframes float3 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    20% { transform: translateY(-18px) translateX(6px) rotate(1.2deg) scale(1.025); }
    50% { transform: translateY(-10px) translateX(-2px) rotate(-0.4deg) scale(0.975); }
    80% { transform: translateY(-14px) translateX(3px) rotate(0.7deg) scale(1.01); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

/* Float Animation 4 - Nice work */
@keyframes float4 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    30% { transform: translateY(-8px) translateX(4px) rotate(0.9deg) scale(1.008); }
    70% { transform: translateY(-16px) translateX(-5px) rotate(-0.7deg) scale(0.992); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

/* Float Animation 5 - Heart */
@keyframes float5 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    40% { transform: translateY(-20px) translateX(-3px) rotate(-1deg) scale(1.03); }
    60% { transform: translateY(-5px) translateX(7px) rotate(0.8deg) scale(0.97); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

/* Float Animation 6 - THE CLIMB */
@keyframes float6 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-22px) translateX(8px) rotate(1.5deg) scale(1.035); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

@keyframes fadeInBubble {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 0.6;
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.98) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2; /* Above chat bubbles */
    padding: 0 2rem;
}

.hero-content {
    max-width: 100%;
    width: 100%;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    opacity: 1;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    white-space: nowrap;
}

/* Responsive für kleinere Bildschirme */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
        white-space: normal;
    }
}

@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #86868b;
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.cta-button {
    background: #007AFF;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.3);
    animation: bounceIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #0056CC;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Hero Qualification Badge */
.hero-qualification {
    margin: 20px 0;
}

.qualification-badge {
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #007AFF;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #86868b;
    margin-top: 5px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #007AFF;
    color: #007AFF;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.2);
}

.cta-button.secondary:hover {
    background: #007AFF;
    color: white;
    transform: translateY(-3px) scale(1.02);
}

/* Content Creation Section */
.content-creation {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.title-with-star {
    position: relative;
    display: inline-block;
}

.title-star {
    position: absolute;
    top: -10px;
    left: -15px;
    width: 30px;
    height: 30px;
    opacity: 0.8;
    transform: rotate(-15deg);
    animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
    0% {
        opacity: 0.6;
        transform: rotate(-15deg) scale(1);
    }
    100% {
        opacity: 1;
        transform: rotate(-15deg) scale(1.1);
    }
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.client-card:hover {
transform: translateY(-4px) scale(0.98) rotate(-1deg);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
border-color: rgba(0, 0, 0, 0.08);
}

.client-logo {
    margin-bottom: 2rem;
}

.client-profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(0, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.client-card:hover .client-profile-pic {
    border-color: rgba(0, 122, 255, 0.3);
    transform: scale(1.05);
}

.nav-logo {
display: flex;
align-items: center;
font-size: 1.5rem;
font-weight: 700;
color: #1d1d1f;
gap: 0.75rem;
}

.logo-image {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
border: 2px solid rgba(0, 122, 255, 0.2);
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.logo-text {
    color: #1d1d1f;
    font-weight: 700;
    font-size: 1.2rem;
}

.client-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.client-stats {
    color: #007AFF;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.client-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.client-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.youtube-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF0000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}

.youtube-button:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.youtube-button svg {
    flex-shrink: 0;
}

/* Featured Work Section */
.featured-work-section {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    padding: 0 2rem;
}

.featured-work-container {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(255, 107, 53, 0.05));
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(0, 122, 255, 0.1);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 1rem 0 2rem 0;
    letter-spacing: -0.02em;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1d1d1f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.badge-icon {
    font-size: 1rem;
}

.featured-project {
    margin-top: 1rem;
}

/* Brand Showcase Layout */
.brand-showcase {
    margin-bottom: 2rem;
    text-align: center;
}

.showcase-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 1.5rem 0;
}

/* Large Brand Logos Slider */
.brand-logos-slider-large {
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(255, 107, 53, 0.05));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 122, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logos-track-large {
    display: flex;
    align-items: center;
    height: 100%;
    animation: slideLogosLarge 8s linear infinite;
    gap: 3rem;
    width: 200%;
}

.brand-logo-large {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin: 0 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.brand-logo-large[alt="HP"] {
    height: 65px;
}

@keyframes slideLogosLarge {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Animated Button (Hero Section) */
.button {
  --white: #ffe7ff;
  --purple-100: #f4b1fd;
  --purple-200: #d190ff;
  --purple-300: #c389f2;
  --purple-400: #8e26e2;
  --purple-500: #5e2b83;
  --radius: 18px;

  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  font-size: 23px;
  font-family: Arial;
  background: transparent;
  letter-spacing: -1px;
  border: 0;
  position: relative;
  width: 220px;
  height: 80px;
  transform: rotate(353deg) skewX(4deg);
}

.bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  filter: blur(1px);
}
.bg::before,
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 1.1);
  background: var(--purple-500);
}
.bg::before {
  filter: blur(5px);
  transition: all 0.3s ease;
  box-shadow:
    -7px 6px 0 0 rgb(115 75 155 / 40%),
    -14px 12px 0 0 rgb(115 75 155 / 30%),
    -21px 18px 4px 0 rgb(115 75 155 / 25%),
    -28px 24px 8px 0 rgb(115 75 155 / 15%),
    -35px 30px 12px 0 rgb(115 75 155 / 12%),
    -42px 36px 16px 0 rgb(115 75 155 / 8%),
    -56px 42px 20px 0 rgb(115 75 155 / 5%);
}

.wrap {
  border-radius: inherit;
  overflow: hidden;
  height: 100%;
  transform: translate(6px, -6px);
  padding: 3px;
  background: linear-gradient(
    to bottom,
    var(--purple-100) 0%,
    var(--purple-400) 100%
  );
  position: relative;
  transition: all 0.3s ease;
}

.outline {
  position: absolute;
  overflow: hidden;
  inset: 0;
  opacity: 0;
  outline: none;
  border-radius: inherit;
  transition: all 0.4s ease;
}
.outline::before {
  content: "";
  position: absolute;
  inset: 2px;
  width: 120px;
  height: 300px;
  margin: auto;
  background: linear-gradient(
    to right,
    transparent 0%,
    white 50%,
    transparent 100%
  );
  animation: spin 3s linear infinite;
  animation-play-state: paused;
}

.content {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  height: 100%;
  gap: 16px;
  border-radius: calc(var(--radius) * 0.85);
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(
    to bottom,
    var(--purple-300) 0%,
    var(--purple-400) 100%
  );
  box-shadow:
    inset -2px 12px 11px -5px var(--purple-200),
    inset 1px -3px 11px 0px rgb(0 0 0 / 35%);
}
.content::before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 10;
  width: 80%;
  top: 45%;
  bottom: 35%;
  opacity: 0.7;
  margin: auto;
  background: linear-gradient(to bottom, transparent, var(--purple-400));
  filter: brightness(1.3) blur(5px);
}

.char {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.char span {
  display: block;
  color: transparent;
  position: relative;
}
.char span:nth-child(5) {
  margin-left: 5px;
}
.char.state-1 span:nth-child(5) {
  margin-right: -3px;
}
.char.state-1 span {
  animation: charAppear 1.2s ease backwards calc(var(--i) * 0.03s);
}
.char.state-1 span::before,
.char span::after {
  content: attr(data-label);
  position: absolute;
  color: var(--white);
  text-shadow: -1px 1px 2px var(--purple-500);
  left: 0;
}
.char span::before {
  opacity: 0;
  transform: translateY(-100%);
}
.char.state-2 {
  position: absolute;
  left: 80px;
}
.char.state-2 span::after {
  opacity: 1;
}

.icon {
  animation: resetArrow 0.8s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
  z-index: 10;
}
.icon div,
.icon div::before,
.icon div::after {
  height: 3px;
  border-radius: 1px;
  background-color: var(--white);
}
.icon div::before,
.icon div::after {
  content: "";
  position: absolute;
  right: 0;
  transform-origin: center right;
  width: 14px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.icon div {
  position: relative;
  width: 24px;
  box-shadow: -2px 2px 5px var(--purple-400);
  transform: scale(0.9);
  background: linear-gradient(to bottom, var(--white), var(--purple-100));
  animation: swingArrow 1s ease-in-out infinite;
  animation-play-state: paused;
}
.icon div::before {
  transform: rotate(44deg);
  top: 1px;
  box-shadow: 1px -2px 3px -1px var(--purple-400);
  animation: rotateArrowLine 1s linear infinite;
  animation-play-state: paused;
}
.icon div::after {
  bottom: 1px;
  transform: rotate(316deg);
  box-shadow: -2px 2px 3px 0 var(--purple-400);
  background: linear-gradient(200deg, var(--white), var(--purple-100));
  animation: rotateArrowLine2 1s linear infinite;
  animation-play-state: paused;
}

.path {
  position: absolute;
  z-index: 12;
  bottom: 0;
  left: 0;
  right: 0;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  pointer-events: none;
}

.splash {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  stroke-dasharray: 60 60;
  stroke-dashoffset: 60;
  transform: translate(-17%, -31%);
  stroke: var(--purple-300);
}

/** STATES */

.button:hover .words {
  opacity: 1;
}
.button:hover .words span {
  animation-play-state: running;
}

.button:hover .char.state-1 span::before {
  animation: charAppear 0.7s ease calc(var(--i) * 0.03s);
}

.button:hover .char.state-1 span::after {
  opacity: 1;
  animation: charDisappear 0.7s ease calc(var(--i) * 0.03s);
}

.button:hover .wrap {
  transform: translate(8px, -8px);
}

.button:hover .outline {
  opacity: 1;
}

.button:hover .outline::before,
.button:hover .icon div::before,
.button:hover .icon div::after,
.button:hover .icon div {
  animation-play-state: running;
}

.button:active .bg::before {
  filter: blur(5px);
  opacity: 0.7;
  box-shadow:
    -7px 6px 0 0 rgb(115 75 155 / 40%),
    -14px 12px 0 0 rgb(115 75 155 / 25%),
    -21px 18px 4px 0 rgb(115 75 155 / 15%);
}
.button:active .content {
  box-shadow:
    inset -1px 12px 8px -5px rgba(71, 0, 137, 0.4),
    inset 0px -3px 8px 0px var(--purple-200);
}

.button:active .words,
.button:active .outline {
  opacity: 0;
}

.button:active .wrap {
  transform: translate(3px, -3px);
}

.button:active .splash {
  animation: splash 0.8s cubic-bezier(0.3, 0, 0, 1) forwards 0.05s;
}

.button:focus .path {
  animation: path 1.6s ease forwards 0.2s;
}

.button:focus .icon {
  animation: arrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.5) forwards;
}

.char.state-2 span::after,
.button:focus .char.state-1 span {
  animation: charDisappear 0.5s ease forwards calc(var(--i) * 0.03s);
}

.button:focus .char.state-2 span::after {
  animation: charAppear 1s ease backwards calc(var(--i) * 0.03s);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes charAppear {
  0% {
    transform: translateY(50%);
    opacity: 0;
    filter: blur(20px);
  }
  20% {
    transform: translateY(70%);
    opacity: 1;
  }
  50% {
    transform: translateY(-15%);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes charDisappear {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-70%);
    opacity: 0;
    filter: blur(3px);
  }
}

@keyframes arrow {
  0% {
    opacity: 1;
  }
  50% {
    transform: translateX(60px);
    opacity: 0;
  }
  51% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(-128px);
    opacity: 1;
  }
}

@keyframes swingArrow {
  50% {
    transform: translateX(5px) scale(0.9);
  }
}

@keyframes rotateArrowLine {
  50% {
    transform: rotate(30deg);
  }
  80% {
    transform: rotate(55deg);
  }
}

@keyframes rotateArrowLine2 {
  50% {
    transform: rotate(330deg);
  }
  80% {
    transform: rotate(300deg);
  }
}

@keyframes resetArrow {
  0% {
    transform: translateX(-128px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes path {
  from {
    stroke: white;
  }
  to {
    stroke-dashoffset: -480;
    stroke: #f9c6fe;
  }
}

@keyframes splash {
  to {
    stroke-dasharray: 2 60;
    stroke-dashoffset: -60;
  }
}

/* Brand Logos Slider */
.brand-logos-slider {
    max-width: 200px;
    overflow: hidden;
    position: relative;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.logos-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: slideLogos 8s linear infinite;
    gap: 2rem;
}

.brand-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.featured-description {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007AFF;
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Impressum Styles */
.impressum-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.impressum-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 2rem;
    text-align: center;
}

.impressum-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #007AFF;
    padding-bottom: 0.5rem;
}

.impressum-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}

.back-button {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #0056CC;
    transform: translateY(-2px);
}

.imprint-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.imprint-link:hover {
    color: #007AFF;
}

/* Scroll Animations Disabled for Performance */
.fade-in-element {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-element.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
}

/* SRW Callout */
.srw-callout {
    background: linear-gradient(135deg, #007AFF 0%, #00d4aa 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    color: white;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.3);
}

.srw-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.srw-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.reason-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reason-item span:last-child {
    font-weight: 500;
    line-height: 1.4;
}

.projects-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

/* Regular Video Gallery (16:9) */
.regular-video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.regular-video-item {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.regular-video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.regular-video-container {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.regular-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.regular-video-item:hover .regular-video {
    transform: scale(1.02);
}

/* Shorts Gallery (9:16) */
.shorts-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    justify-items: center;
}

@media (max-width: 768px) {
    .shorts-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.short-video-item {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

.short-video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.short-video-container {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.short-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: #000;
    display: block;
}

.short-video-item:hover .short-video {
    transform: scale(1.02);
}

.video-item {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-item:hover .project-video {
    transform: scale(1.02);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.video-item:hover .play-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-item:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-button svg {
    margin-left: 3px;
    width: 28px;
    height: 28px;
}

.video-info {
    padding: 1.5rem;
    background: white;
    border-radius: 0 0 15px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-info p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.video-category {
    display: inline-block;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

/* TikTok Category Styling */
.tiktok-category {
    background: linear-gradient(135deg, #FF0050, #E91E63) !important;
    box-shadow: 0 2px 8px rgba(255, 0, 80, 0.3) !important;
}

/* Gaming Category Styling */
.gaming-category {
    background: linear-gradient(135deg, #007AFF, #0056CC) !important;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3) !important;
}

/* Commercial Category Styling */
.commercial-category {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3) !important;
}

/* Motion Graphics Category Styling */
.motion-category {
    background: linear-gradient(135deg, #6f42c1, #8e44ad) !important;
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.3) !important;
}

/* Video.js Custom Styling */
.video-js {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-js .vjs-big-play-button {
    background: rgba(0, 122, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video-js .vjs-big-play-button:hover {
    background: rgba(0, 122, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-js .vjs-control-bar {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 0 0 15px 15px;
}

.video-js .vjs-progress-control .vjs-progress-holder .vjs-play-progress {
    background: #007AFF;
}

.video-js .vjs-volume-level {
    background: #007AFF;
}

.video-js .vjs-playback-rate .vjs-playback-rate-value {
    color: #007AFF;
    font-weight: 600;
}

/* Responsive Video.js */
@media (max-width: 768px) {
    .video-js .vjs-big-play-button {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.5rem;
    }
}

/* Streamable Player Styling */
.streamable-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin: 0 auto;
}

.streamable-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* YouTube Container in Regular Video Gallery */
.regular-video-item .youtube-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.regular-video-item .youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.regular-video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1600px;
    margin: 0 auto;
}

.regular-video-item {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regular-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1400px) {
    .regular-video-gallery {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .regular-video-gallery {
        grid-template-columns: 1fr;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .streamable-container {
        border-radius: 15px;
        max-width: 100%;
        padding-bottom: 56.25%;
    }
    
    .regular-video-gallery {
        padding: 1rem 0;
    }
}

/* Contact Popup Styling */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.3s ease;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
}

.popup-header h3 {
    margin: 0;
    color: #1d1d1f;
    font-size: 1.5rem;
    font-weight: 700;
}

.popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
}

.popup-body {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 122, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 122, 255, 0.1);
    transform: translateY(-2px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.contact-value {
    font-size: 1.1rem;
    color: #007AFF;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #0056CC;
}

.popup-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.popup-footer p {
    margin: 0;
    color: #666;
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .popup-header,
    .popup-body {
        padding: 1.5rem;
    }
    
    .popup-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
}

/* Minecraft Category Styling */
.minecraft-category {
    background: linear-gradient(135deg, #00C851, #007E33) !important;
    box-shadow: 0 2px 8px rgba(0, 200, 81, 0.3) !important;
}

/* TikTok Button Styling */
.tiktok-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF0050, #000000);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3);
}

.tiktok-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 80, 0.4);
    background: linear-gradient(135deg, #FF0050, #FF0050);
}

.tiktok-button svg {
    flex-shrink: 0;
}

/* TikTok Actions Container */
.tiktok-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

/* Video Actions Buttons */
.video-actions {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tiktok-action {
    background: linear-gradient(135deg, #FF0050, #000000);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 0, 80, 0.3);
}

.tiktok-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 80, 0.4);
    background: linear-gradient(135deg, #FF0050, #FF0050);
}

.youtube-action {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.youtube-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #FF0000, #FF0000);
}

.action-button svg {
    flex-shrink: 0;
}

/* YouTube Container Styling - Optimized */
.youtube-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    contain: layout style paint;
    will-change: auto;
}

.youtube-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    contain: layout style;
}

/* For shorts (9:16 aspect ratio) */
.short-video-item .youtube-container {
    aspect-ratio: 9/16;
    max-width: 300px;
    max-height: 533px;
}

/* TikTok Player Container */
.tiktok-player-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    contain: layout style paint;
}

.tiktok-player {
    width: 350px;
    height: 622px;
    border: none;
    border-radius: 15px;
    aspect-ratio: 9/16;
}

.tiktok-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.tiktok-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.tiktok-play-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tiktok-play-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}


/* For regular videos (16:9 aspect ratio) */
.stream-transition-container .youtube-container {
    aspect-ratio: 16/9;
}

/* Success Stats Section */
.success-stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.success-stats-section::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-single {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.stat-item-single {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item-single:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item-single .stat-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.stat-item:nth-child(even) .stat-proof {
    order: 2;
}

.stat-item:nth-child(even) .stat-info {
    order: 1;
}

.stat-proof {
    position: relative;
}

/* Analytics Slideshow */
.analytics-slideshow {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.analytics-slide.active {
    display: block;
}

.slideshow-dots {
    text-align: center;
    padding: 1rem 0;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active,
.dot:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.2);
    border: 2px solid rgba(255, 255, 255, 1);
}

.analytics-slide {
    width: 100%;
    height: auto;
    display: none;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #ff6b6b;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CHECK-U Section */
.checku-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.checku-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* CHECK-U Title mit Logo */
.checku-title-container {
    position: relative;
    text-align: center;
    padding-top: 4rem;
}

.arbeitsagentur-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 90px;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

.section-title {
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .arbeitsagentur-logo {
        height: 80px;
    }
    
    .checku-title-container {
        padding-top: 5rem;
    }
}

/* Hauptergebnis */
.checku-main-result {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #007AFF;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.result-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.result-text h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.job-title {
    font-size: 2rem;
    font-weight: 800;
    color: #007AFF;
    margin-bottom: 0.5rem;
}

.match-badge {
    background: #007AFF;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Stärken Sektion */
.strengths-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.strengths-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1d1d1f;
    font-size: 1.8rem;
    font-weight: 700;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.strength-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 122, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #007AFF;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.15);
}

.strength-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.strength-card h4 {
    font-size: 1.2rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.strength-score {
    color: #007AFF;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strength-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.strength-fill {
    height: 100%;
    background: #007AFF;
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 122, 255, 0.3);
}

@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strengths-section {
        padding: 2rem;
    }
    
    .strength-card {
        padding: 1.5rem;
    }
}

/* PDF Sektion */
.pdf-section {
    text-align: center;
}

.pdf-cta {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pdf-cta h3 {
    color: #1d1d1f;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pdf-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pdf-button {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.3);
}

.pdf-button:hover {
    background: #0056CC;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .result-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .job-title {
        font-size: 1.6rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .pdf-container iframe {
        height: 400px;
    }
}

.proof-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px dashed rgba(255, 255, 255, 0.3);
}

.proof-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.proof-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.4;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.stat-info p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stat-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: #007AFF;
    border-radius: 15px;
    color: white;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stat-item-single {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 2rem;
    }
    
    .stat-item-single .stat-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .proof-placeholder {
        min-height: 200px;
        padding: 2rem 1rem;
    }
}

/* Application Note Section */
.application-note {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.note-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.note-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.note-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Platform Links Styling */
.video-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 140px;
    justify-content: center;
}

.tiktok-link {
    background: linear-gradient(135deg, #FF0050, #E91E63);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 0, 80, 0.2);
}

.tiktok-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3);
}

.youtube-link {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}

.youtube-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .video-stats {
        flex-direction: row;
        gap: 0.75rem;
    }
}

/* Stream Transition Styling */
.stream-transition-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stream-transition-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.stream-transition-container .regular-video-item {
    flex: 0 0 50%;
}

.stream-transition-container .regular-video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
}

.stream-transition-container .regular-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: contrast(1.1) saturate(1.1);
    background: #000;
}

.stream-transition-info {
    flex: 1;
    padding-left: 1rem;
}

.stream-transition-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1d1d1f;
}

.stream-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.stream-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stream-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.stream-tag:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-1px);
}

.transition-category {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important;
}

@media (max-width: 768px) {
    .stream-transition-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stream-transition-container .regular-video-item {
        flex: none;
        width: 100%;
    }
    
    .stream-transition-info {
        padding-left: 0;
    }
    
    .stream-transition-info h3 {
        font-size: 1.25rem;
    }
    
    .stream-description {
        font-size: 0.9rem;
    }
    
    .stream-tags {
        justify-content: center;
    }
}

.project-item:hover {
transform: translateY(-6px);
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.project-preview {
position: relative;
overflow: hidden;
}

.project-preview img {
width: 100%;
height: 250px;
object-fit: cover;
transition: all 0.4s ease;
}

.project-item:hover .project-preview img {
transform: scale(1.1);
}

.project-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: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-item:hover .project-overlay {
transform: translateY(0);
}

.project-overlay h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.5rem;
}

.project-overlay p {
font-size: 1rem;
opacity: 0.9;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
    padding: 0 2rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 122, 255, 0.2);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-image {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}

/* Laptop Mockup */
.laptop-mockup {
    width: 300px;
    height: 200px;
    background: #2d2d2d;
    border-radius: 10px 10px 0 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.laptop-screen {
    width: 280px;
    height: 175px;
    background: #1e1e1e;
    border-radius: 5px;
    margin: 10px auto;
    overflow: hidden;
}

.code-editor {
    height: 100%;
    background: #1e1e1e;
}

.editor-header {
    background: #2d2d2d;
    padding: 8px 12px;
    border-bottom: 1px solid #3d3d3d;
}

.editor-dots {
    display: flex;
    gap: 6px;
}

.editor-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.editor-dots span:first-child {
    background: #ff5f57;
}

.editor-dots span:nth-child(2) {
    background: #ffbd2e;
}

.editor-dots span:nth-child(3) {
    background: #28ca42;
}

.editor-content {
    padding: 12px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 11px;
}

.code-line {
    display: flex;
    margin-bottom: 4px;
    color: #e6e6e6;
}

.line-number {
    color: #666;
    margin-right: 12px;
    width: 20px;
}

.code {
    color: #e6e6e6;
}

/* Phone Mockup */
.phone-mockup {
    width: 180px;
    height: 320px;
    background: #000;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 160px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin: 10px auto;
    overflow: hidden;
}

.app-interface {
    height: 100%;
    color: white;
    padding: 20px 15px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 20px;
}

.signal-icons {
    display: flex;
    gap: 5px;
}

.app-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

/* Project Info */
.project-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-button {
    background: #007AFF;
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.project-button:hover {
    background: #0056CC;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.project-button:active {
    transform: translateY(0) scale(0.95);
    transition: all 0.1s ease;
}

.project-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.project-button:hover::before {
    left: 100%;
}

/* Projects CTA */
.projects-cta {
    text-align: center;
}

.projects-button {
    background: #007AFF;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.projects-button:hover {
    background: #0056CC;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.4);
}

.projects-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.projects-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.projects-button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007AFF;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.application-cta {
    background: #007AFF;
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
}

.application-cta p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.application-cta p:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .bubble img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: white;
    color: #1d1d1f;
    padding: 1.5rem;
    z-index: 10000;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 380px;
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.cookie-btn.accept {
    background: #007AFF;
    color: white;
}

.cookie-btn.accept:hover {
    background: #0056CC;
    transform: translateY(-1px);
}

.cookie-btn.info {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
}

.cookie-btn.info:hover {
    background: #e8e8e8;
    color: #333;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .short-video-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease;
        margin-bottom: 2rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 8rem 0 4rem 0;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 3rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #007AFF;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #333;
}

/* Back to Home Button */
.back-to-home {
    margin-bottom: 2rem;
    text-align: center;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #007AFF;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.back-button:hover {
    background: #0056CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.4);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-2px);
}
