* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --input-focus: #2d8cf0;
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --main-color: #323232;
  --success-color: #16a34a;
  --danger-color: #ef4444;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--font-color);
  min-height: 100vh;
  line-height: 1.5;
  /* Grid Pattern Background */
  width: 100%;
  height: 100%;
  --color: #E1E1E1;
  background-color: #F3F3F3;
  background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent),
      linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent);
  background-size: 55px 55px;
  position: relative;
  overflow-x: hidden;
}

/* Page layout */
.page-layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 160px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px 24px;
}

.sidebar {
  position: sticky;
  top: 16px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ad-left-item {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-top,
.ad-bottom {
  max-width: 1400px;
  margin: 16px auto;
  padding: 0 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Hero Header */
.hero-header {
  text-align: center;
  padding: 30px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-animated {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  border: 4px solid var(--main-color);
  box-shadow: 5px 5px 0 var(--main-color);
  animation: none;
  transition: all 0.15s ease;
}

.logo-animated:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--main-color);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.logo-animated svg {
  width: 40px;
  height: 40px;
  color: white;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--main-color);
  margin: 0;
  line-height: 1;
  letter-spacing: -1px;
}

.hero-text p {
  color: var(--font-color-sub);
  font-size: 14px;
  margin: 4px 0 0;
  font-weight: 600;
}

.apology-gif {
  width: 280px;
  height: auto;
  border-radius: 8px;
  border: 4px solid var(--main-color);
  box-shadow: 5px 5px 0 var(--main-color);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.apology-gif:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--main-color);
}

.apology-gif:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--main-color);
}

.gif-wrapper {
  position: relative;
  display: inline-block;
}

.gif-tooltip {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-color);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}

.gif-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--main-color);
}

.gif-wrapper:hover .gif-tooltip {
  opacity: 1;
  top: -60px;
}

/* Split Layout */
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
  align-items: start;
}

/* Action Panel Top - Video Converter Card (Üstte) */
.action-panel-top {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 10px 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.action-panel-top .card-main {
  flex: 0 1 600px;
}

.converter-side-ad {
  flex: 0 1 280px;
  min-height: 600px;
  display: none;
}

@media (min-width: 1200px) {
  .converter-side-ad {
    display: block;
  }
}

/* Info Panel Bottom - Platforms and Info (Altta) */
.info-panel-bottom {
  margin-top: 25px;
  margin-bottom: 25px;
}

/* Info Panel */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  background: #ffffff;
  backdrop-filter: none;
  border: 3px solid #323232;
  border-radius: 12px;
  padding: 20px;
  box-shadow: none;
  animation: none;
  transition: all 0.2s ease;
}

.info-card:hover {
  transform: none;
  background: #fafafa;
  box-shadow: none;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.info-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--main-color);
  margin: 0 0 20px;
}

.platforms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--bg-color);
  border: 3px solid var(--main-color);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--main-color);
  transition: all 0.15s;
  cursor: pointer;
}

.platform-item:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px var(--main-color);
}

.platform-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.platform-item span {
  font-weight: 600;
  color: var(--font-color);
}

.platform-item.youtube { color: #ff0000; }
.platform-item.tiktok { color: #000000; }
.platform-item.instagram { color: #e4405f; }
.platform-item.twitter { color: #1da1f2; }
.platform-item.facebook { color: #1877f2; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 2px solid var(--main-color);
  box-shadow: 3px 3px var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.step-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--main-color);
  margin: 0 0 4px;
}

.step-item p {
  font-size: 13px;
  color: var(--font-color-sub);
  margin: 0;
  line-height: 1.4;
}

.info-card.disclaimer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 245, 230, 0.9);
  padding: 16px;
}

.info-card.disclaimer svg {
  width: 24px;
  height: 24px;
  color: #f59e0b;
  flex-shrink: 0;
}

.info-card.disclaimer p {
  margin: 0;
  font-size: 13px;
  color: var(--font-color);
}



.card-main {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  background: #e5e5e5;
  padding: 50px 40px;
  border-radius: 20px;
  border: 5px solid #323232;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: none;
  box-shadow: none;
}

.card-main::before {
  display: none;
}

.card-main:hover {
  transform: none;
  box-shadow: none;
}



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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-header {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.step-icon {
  display: none;
}

.step-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.step-description {
  display: none;
}

.step-content {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.step-content.active {
  display: flex;
}

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

.title {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  color: #323232;
  margin: 0 0 20px;
  line-height: 1;
  letter-spacing: -1px;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(10deg); }
}

.subtitle-small {
  text-align: center;
  color: #666;
  margin: 0 0 25px;
  font-size: 15px;
  font-weight: 500;
}

.card-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.input-group {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  color: #323232;
  z-index: 2;
  pointer-events: none;
  transition: none;
}

.card-input:focus ~ .input-icon,
.card-input:hover ~ .input-icon {
  transform: translateY(-50%);
}

.input-icon svg {
  width: 24px;
  height: 24px;
}

.card-input {
  width: 100%;
  height: 65px;
  border-radius: 12px;
  border: 4px solid #323232;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  color: #323232;
  padding: 0 20px 0 50px;
  outline: none;
  transition: none;
  position: relative;
}

.card-input::placeholder {
  color: #999;
  font-weight: 500;
}

.card-input:hover {
  border-color: #323232;
  background-color: #ffffff;
}

.card-input:focus {
  border-color: #323232;
  background-color: #ffffff;
  box-shadow: none;
  transform: none;
}





.card-btn {
  width: 100%;
  height: 52px;
  border-radius: 8px;
  border: none;
  background-color: #f5f5f5;
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-btn:hover:not(:disabled) {
  background-color: #ececec;
  transform: translateY(-1px);
}

.card-btn:active:not(:disabled) {
  transform: translateY(0);
}

.card-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.card-btn.primary-btn {
  background: #ffffff;
  color: #323232;
  height: 65px;
  font-size: 20px;
  font-weight: 900;
  border: 4px solid #323232;
  border-radius: 12px;
  box-shadow: none;
  position: relative;
  overflow: visible;
  margin: 10px auto 0;
  max-width: 250px;
}

.card-btn.primary-btn::before {
  display: none;
}

.card-btn.primary-btn:hover::before {
  display: none;
}

.card-btn.primary-btn:hover {
  background: #f5f5f5;
  box-shadow: none;
  transform: none;
}

.card-btn.primary-btn:active {
  transform: none;
  box-shadow: none;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-content svg {
  width: 20px;
  height: 20px;
}





.card-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.format-badges {
  margin-top: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  padding: 8px 16px;
  background: #ffffff;
  border: 3px solid #323232;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #323232;
  display: inline-block;
  transition: none;
  position: relative;
  overflow: hidden;
}

.badge::before {
  display: none;
}

.badge:hover::before {
  display: none;
}

.badge:hover {
  background: #f5f5f5;
  color: #323232;
  border-color: #323232;
  transform: none;
  box-shadow: none;
}

.card-btn.success {
  background-color: #d4f8d4;
  border-color: var(--success-color);
  box-shadow: 4px 4px var(--success-color);
}

.card-btn.success:hover:not(:disabled) {
  box-shadow: 2px 2px var(--success-color);
}

.card-btn.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  border: none;
  height: 58px;
  font-size: 17px;
  font-weight: 800;
  width: 100%;
}

.card-btn.success svg {
  width: 18px;
  height: 18px;
}

.card-btn.success:hover:not(:disabled) {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.card-btn.success:active:not(:disabled) {
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  transform: translateY(0);
}

.card-btn.secondary {
  background: #ffffff;
  color: #323232;
  border: 3px solid #323232;
  height: 58px;
  font-size: 17px;
  font-weight: 800;
  width: 100%;
}

.card-btn.secondary svg {
  width: 18px;
  height: 18px;
}

.card-btn.secondary:hover {
  background: #f5f5f5;
  border-color: #323232;
}

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--main-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.error-msg {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fee;
  border: 2px solid var(--danger-color);
  border-radius: 5px;
  color: var(--danger-color);
  font-weight: 600;
  box-shadow: 4px 4px var(--danger-color);
}

.error-msg svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Hamster Loader */
.wheel-and-hamster {
  --dur: 1s;
  position: relative;
  width: 12em;
  height: 12em;
  font-size: 14px;
  margin: 40px 0;
}

.wheel,
.hamster,
.hamster div,
.spoke {
  position: absolute;
}

.wheel,
.spoke {
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wheel {
  background: radial-gradient(100% 100% at center,hsla(0,0%,60%,0) 47.8%,hsl(0,0%,60%) 48%);
  z-index: 2;
}

.hamster {
  animation: hamster var(--dur) ease-in-out infinite;
  top: 50%;
  left: calc(50% - 3.5em);
  width: 7em;
  height: 3.75em;
  transform: rotate(4deg) translate(-0.8em,1.85em);
  transform-origin: 50% 0;
  z-index: 1;
}

.hamster__head {
  animation: hamsterHead var(--dur) ease-in-out infinite;
  background: hsl(30,90%,55%);
  border-radius: 70% 30% 0 100% / 40% 25% 25% 60%;
  box-shadow: 0 -0.25em 0 hsl(30,90%,80%) inset,
    0.75em -1.55em 0 hsl(30,90%,90%) inset;
  top: 0;
  left: -2em;
  width: 2.75em;
  height: 2.5em;
  transform-origin: 100% 50%;
}

.hamster__ear {
  animation: hamsterEar var(--dur) ease-in-out infinite;
  background: hsl(0,90%,85%);
  border-radius: 50%;
  box-shadow: -0.25em 0 hsl(30,90%,55%) inset;
  top: -0.25em;
  right: -0.25em;
  width: 0.75em;
  height: 0.75em;
  transform-origin: 50% 75%;
}

.hamster__eye {
  animation: hamsterEye var(--dur) linear infinite;
  background-color: hsl(0,0%,0%);
  border-radius: 50%;
  top: 0.375em;
  left: 1.25em;
  width: 0.5em;
  height: 0.5em;
}

.hamster__nose {
  background: hsl(0,90%,75%);
  border-radius: 35% 65% 85% 15% / 70% 50% 50% 30%;
  top: 0.75em;
  left: 0;
  width: 0.2em;
  height: 0.25em;
}

.hamster__body {
  animation: hamsterBody var(--dur) ease-in-out infinite;
  background: hsl(30,90%,90%);
  border-radius: 50% 30% 50% 30% / 15% 60% 40% 40%;
  box-shadow: 0.1em 0.75em 0 hsl(30,90%,55%) inset,
    0.15em -0.5em 0 hsl(30,90%,80%) inset;
  top: 0.25em;
  left: 2em;
  width: 4.5em;
  height: 3em;
  transform-origin: 17% 50%;
  transform-style: preserve-3d;
}

.hamster__limb--fr,
.hamster__limb--fl {
  clip-path: polygon(0 0,100% 0,70% 80%,60% 100%,0% 100%,40% 80%);
  top: 2em;
  left: 0.5em;
  width: 1em;
  height: 1.5em;
  transform-origin: 50% 0;
}

.hamster__limb--fr {
  animation: hamsterFRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,80%) 80%,hsl(0,90%,75%) 80%);
  transform: rotate(15deg) translateZ(-1px);
}

.hamster__limb--fl {
  animation: hamsterFLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,90%) 80%,hsl(0,90%,85%) 80%);
  transform: rotate(15deg);
}

.hamster__limb--br,
.hamster__limb--bl {
  border-radius: 0.75em 0.75em 0 0;
  clip-path: polygon(0 0,100% 0,100% 30%,70% 90%,70% 100%,30% 100%,40% 90%,0% 30%);
  top: 1em;
  left: 2.8em;
  width: 1.5em;
  height: 2.5em;
  transform-origin: 50% 30%;
}

.hamster__limb--br {
  animation: hamsterBRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,80%) 90%,hsl(0,90%,75%) 90%);
  transform: rotate(-25deg) translateZ(-1px);
}

.hamster__limb--bl {
  animation: hamsterBLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,90%) 90%,hsl(0,90%,85%) 90%);
  transform: rotate(-25deg);
}

.hamster__tail {
  animation: hamsterTail var(--dur) linear infinite;
  background: hsl(0,90%,85%);
  border-radius: 0.25em 50% 50% 0.25em;
  box-shadow: 0 -0.2em 0 hsl(0,90%,75%) inset;
  top: 1.5em;
  right: -0.5em;
  width: 1em;
  height: 0.5em;
  transform: rotate(30deg) translateZ(-1px);
  transform-origin: 0.25em 0.25em;
}

.spoke {
  animation: spoke var(--dur) linear infinite;
  background: radial-gradient(100% 100% at center,hsl(0,0%,60%) 4.8%,hsla(0,0%,60%,0) 5%),
    linear-gradient(hsla(0,0%,55%,0) 46.9%,hsl(0,0%,65%) 47% 52.9%,hsla(0,0%,65%,0) 53%) 50% 50% / 99% 99% no-repeat;
}

/* Hamster Animations */
@keyframes hamster {
  from, to {
    transform: rotate(4deg) translate(-0.8em,1.85em);
  }
  50% {
    transform: rotate(0) translate(-0.8em,1.85em);
  }
}

@keyframes hamsterHead {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(8deg);
  }
}

@keyframes hamsterEye {
  from, 90%, to {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0);
  }
}

@keyframes hamsterEar {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(12deg);
  }
}

@keyframes hamsterBody {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-2deg);
  }
}

@keyframes hamsterFRLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(50deg) translateZ(-1px);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-30deg) translateZ(-1px);
  }
}

@keyframes hamsterFLLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(-30deg);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(50deg);
  }
}

@keyframes hamsterBRLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(-60deg) translateZ(-1px);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(20deg) translateZ(-1px);
  }
}

@keyframes hamsterBLLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(20deg);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-60deg);
  }
}

@keyframes hamsterTail {
  from, 25%, 50%, 75%, to {
    transform: rotate(30deg) translateZ(-1px);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(10deg) translateZ(-1px);
  }
}

@keyframes spoke {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-1turn);
  }
}

.loading-text {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--font-color);
  margin-top: 20px;
}

/* Success Icon */
.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  animation: successPop 0.5s ease-out;
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon svg {
  width: 50px;
  height: 50px;
  color: white;
  stroke-width: 3;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Video Preview */
.video-preview {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 3px solid #323232;
  border-radius: 12px;
  box-shadow: none;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 25px;
  transition: all 0.2s ease;
}

.video-preview:hover {
  background: #fafafa;
}

.video-thumb {
  width: 140px;
  height: 105px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #323232;
  flex-shrink: 0;
  background: #e5e5e5;
}

.video-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.video-title {
  font-weight: 800;
  font-size: 16px;
  color: #323232;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.video-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.video-meta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #323232;
}

/* Button Group */
.btn-group {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-group form {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

/* How it works */
.how-it-works {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--main-color);
  border-radius: 8px;
  box-shadow: 4px 4px var(--main-color);
  flex-wrap: wrap;
}

.how-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.how-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--main-color);
  box-shadow: 3px 3px var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--main-color);
  flex-shrink: 0;
}

.how-step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 4px;
}

.how-step-content p {
  font-size: 13px;
  color: var(--font-color-sub);
}

.how-arrow {
  font-size: 24px;
  font-weight: 700;
  color: var(--main-color);
}

/* Policy */
.policy {
  margin: 40px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--main-color);
  border-radius: 8px;
  box-shadow: 4px 4px var(--main-color);
}

.policy h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 12px;
}

.policy p {
  font-size: 13px;
  color: var(--font-color-sub);
  line-height: 1.6;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 0;
  color: var(--font-color-sub);
  font-size: 13px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  background: var(--bg-color);
  border: 2px solid var(--main-color);
  border-radius: 8px;
  box-shadow: 6px 6px var(--main-color);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.cookie-text {
  font-size: 14px;
  color: var(--font-color);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background: var(--bg-color);
  box-shadow: 3px 3px var(--main-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px var(--main-color);
}

.cookie-btn:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 var(--main-color);
}

.cookie-btn.primary {
  background: #d4f8d4;
  border-color: var(--success-color);
  box-shadow: 3px 3px var(--success-color);
}

.cookie-btn.primary:hover {
  box-shadow: 2px 2px var(--success-color);
}

.cookie-btn.primary:active {
  box-shadow: 0 0 var(--success-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    display: none;
  }
  
  .split-container {
    grid-template-columns: 1fr;
  }
  
  .info-panel {
    position: static;
  }
  
  .action-panel-top {
    max-width: 100%;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .split-container {
    gap: 20px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .card-main {
    padding: 30px 20px;
    min-height: 400px;
  }
  
  .title {
    font-size: 24px;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    transform: none;
    max-width: none;
  }
  
  .video-preview {
    flex-direction: column;
  }
  
  .video-thumb {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }
  
  .card-input,
  .card-btn {
    max-width: 100%;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group form {
    width: 100%;
  }
  
  .btn-group .card-btn {
    width: 100%;
  }
  
  .platform-item {
    padding: 10px;
  }
  
  .platform-item svg {
    width: 24px;
    height: 24px;
  }
}
