    /* Prevent horizontal scroll on mobile (iOS Safari) */
    html {
      overflow-x: hidden;
    }

    /* Platform filter styles */
    .platform-filter {
      margin-bottom: 2rem;
    }
    
    .platform-filter-btn {
      display: inline-flex;
      align-items: center;
      padding: 0.5rem 1rem;
      border-radius: var(--radius);
      background-color: var(--card);
      border: 1px solid var(--border);
      color: var(--muted-foreground);
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .platform-filter-btn i {
      margin-right: 0.5rem;
    }
    
    .platform-filter-btn:hover {
      background-color: var(--accent);
      color: var(--accent-foreground);
    }
    
    .platform-filter-btn.active {
      background-color: var(--primary);
      color: var(--primary-foreground);
      border-color: var(--primary);
    }
    
    .hero-section {
      padding: 8rem 0 6rem;
      background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
      z-index: 0;
    }

    .hero-section .shadcn-container {
      position: relative;
      z-index: 1;
    }

    /* Contact section styles */
    .contact-section {
      padding: 5rem 0;
      background-color: var(--secondary);
    }

    .contact-description {
      font-size: 1.1rem;
      color: var(--muted-foreground);
      margin-bottom: 2rem;
      max-width: 600px;
    }

    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-method {
      display: flex;
      align-items: center;
      padding: 1.25rem;
      border-radius: var(--radius);
      background-color: var(--card);
      text-decoration: none;
      color: var(--foreground);
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .contact-method:hover {
      transform: translateX(5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .contact-icon {
      font-size: 2rem;
      margin-right: 1.5rem;
      transition: transform 0.3s ease;
    }

    .contact-method-details {
      flex: 1;
    }

    .contact-method-title {
      font-weight: 600;
      font-size: 1.25rem;
      margin-bottom: 0.25rem;
    }

    .contact-method-description {
      color: var(--muted-foreground);
      margin-bottom: 0;
    }

    .contact-arrow {
      font-size: 1rem;
      opacity: 0.5;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .contact-method:hover .contact-arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    .contact-method:hover .contact-icon {
      transform: scale(1.1);
    }

    .contact-method.discord .contact-icon {
      color: #5865F2;
    }

    .contact-method.email .contact-icon {
      color: #ff6b6b;
    }

    /* Slim contact banner styles */
    .contact-slim-section {
      padding: 1.5rem 0;
      background-color: var(--secondary);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .contact-slim-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .contact-slim-text {
      font-size: 1rem;
      color: var(--foreground);
      font-weight: 500;
      margin-right: 1rem;
      margin-bottom: 0.5rem;
    }

    .contact-slim-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .contact-slim-btn {
      display: inline-flex;
      align-items: center;
      padding: 0.5rem 1rem;
      border-radius: var(--radius);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.2s ease;
      font-weight: 500;
    }

    .contact-slim-btn.discord {
      background-color: #5865F2;
      color: white;
    }

    .contact-slim-btn.email {
      background-color: #ff6b6b;
      color: white;
    }

    .contact-slim-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .contact-slim-btn i {
      margin-right: 0.5rem;
    }

    @media (max-width: 576px) {
      .contact-slim-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .contact-slim-text {
        margin-right: 0;
        margin-bottom: 0.5rem;
      }
    }

    .hero-title-container {
      margin-bottom: 2rem;
    }

    .hero-emojis {
      align-items: center;
    }

    .hero-emoji {
      font-size: 2.5rem;
      display: inline-block;
      animation: bounce 2s ease-in-out infinite;
      transform-origin: center;
    }

    .hero-emoji:nth-child(1) { animation-delay: 0.1s; }
    .hero-emoji:nth-child(2) { animation-delay: 0.2s; }
    .hero-emoji:nth-child(3) { animation-delay: 0.3s; }
    .hero-emoji:nth-child(4) { animation-delay: 0.4s; }
    .hero-emoji:nth-child(5) { animation-delay: 0.5s; }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }

    @media (max-width: 768px) {
      .hero-section {
        padding: 4rem 0 3rem;
      }

      .hero-title-container {
        flex-direction: column;
        gap: 1rem !important;
      }
      
      .hero-emoji {
        font-size: 2rem;
      }
      
      .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
      }

      .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
      }

      .hero-buttons .shadcn-button {
        width: 100%;
        max-width: 300px;
      }

      .hero-badge {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
      }

      .cta-title {
        font-size: 2rem;
      }

      .cta-description {
        font-size: 1.125rem;
      }

      .cta-card {
        padding: 2.5rem 1.5rem;
      }

      .platform-icon-wrapper {
        width: 44px;
        height: 44px;
      }

      .platform-icon {
        width: 20px;
        height: 20px;
      }

      .feature-card {
        margin-bottom: 1.5rem;
      }

      .feature-icon {
        width: 36px;
        height: 36px;
      }

      .service-description-home {
        -webkit-line-clamp: 2;
        font-size: 0.8rem;
      }
    }

    .hero-title {
      font-size: 4rem;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
      position: relative;
    }

    .hero-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6, #8b5cf6);
      border-radius: 2px;
    }

    .hero-description {
      font-size: 1.375rem;
      color: var(--muted-foreground);
      margin-bottom: 2.5rem;
      max-width: 800px;
      line-height: 1.7;
      font-weight: 400;
      text-align: center;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 3rem;
      justify-content: center;
    }

    .hero-buttons .shadcn-button {
      padding: 1rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 12px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .hero-buttons .shadcn-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.6s ease;
    }

    .hero-buttons .shadcn-button:hover::before {
      left: 100%;
    }

    .hero-buttons .shadcn-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .hero-image {
      width: 100%;
      max-width: 500px;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .features-section {
      padding: 5rem 0;
      background-color: var(--secondary);
    }

    .feature-card {
      height: 100%;
      background-color: var(--card);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      border: 1px solid var(--border);
    }

    .service-item .feature-card {
      padding: 0;
    }

    .service-image-wrapper {
      height: 130px;
      overflow: hidden;
    }

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

    .feature-card:hover .service-image {
      transform: scale(1.06);
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
      border-color: var(--ring);
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--foreground);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .feature-card:hover::before {
      opacity: 0.15;
    }

    .feature-icon {
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: var(--radius);
      background-color: var(--secondary);
      transition: background-color 0.2s ease;
    }

    .feature-card:hover .feature-icon {
      background-color: var(--accent);
    }

    .feature-icon svg {
      color: var(--foreground);
      width: 20px;
      height: 20px;
    }

    .feature-title {
      font-weight: 600;
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .feature-description {
      color: var(--muted-foreground);
      font-size: 0.85rem;
      line-height: 1.6;
    }



    .cta-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
      z-index: 0;
    }

    .cta-section .shadcn-container {
      position: relative;
      z-index: 1;
    }

    .cta-card {
      padding: 4rem 3rem;
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
      color: var(--primary-foreground);
      border-radius: 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

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

    .cta-title {
      font-size: 2.75rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      z-index: 1;
    }

    .cta-description {
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
      opacity: 0.9;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .cta-button {
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      color: white;
      font-weight: 700;
      font-size: 1.125rem;
      padding: 1.25rem 3rem;
      border-radius: 16px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 1;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }

    .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.6s ease;
    }

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

    .cta-button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    }

    .stats-section {
      padding: 4rem 0;
      background-color: var(--secondary);
    }

    .stat-card {
      text-align: center;
      padding: 2rem;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: var(--muted-foreground);
      font-size: 1rem;
    }

    .platforms-section {
      padding: 4rem 0;
      background-color: var(--background);
    }

    .platform-item {
      margin-bottom: 1rem;
    }

    .platform-icon-wrapper {
      width: 48px;
      height: 48px;
      border-radius: var(--radius);
      margin: 0 auto 0.625rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--secondary);
      color: var(--muted-foreground);
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .platform-item:hover .platform-icon-wrapper {
      background-color: var(--accent);
      color: var(--foreground);
    }

    .platform-icon {
      width: 22px;
      height: 22px;
    }

    .platform-name {
      font-weight: 500;
      font-size: 0.8125rem;
      color: var(--muted-foreground);
      transition: color 0.2s ease;
    }

    .platform-item:hover .platform-name {
      color: var(--foreground);
    }

    .footer {
      padding: 3rem 0 2rem;
      background-color: var(--card);
      border-top: 1px solid var(--border);
    }

    .footer-heading {
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-size: 1.125rem;
    }

    .footer-link {
      display: block;
      color: var(--muted-foreground);
      margin-bottom: 0.5rem;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-link:hover {
      color: var(--foreground);
    }

    .footer-social {
      font-size: 1.25rem;
      margin-right: 1rem;
      color: var(--muted-foreground);
      transition: color 0.2s ease;
    }

    .footer-social:hover {
      color: var(--foreground);
    }

    .footer-copyright {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-top: 2rem;
    }

    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.5rem;
      }

      .hero-image {
        margin-top: 2rem;
      }

      .cta-title {
        font-size: 1.75rem;
      }
    }

    @media (max-width: 576px) {
      .hero-section {
        padding: 3rem 0 2rem;
      }

      .hero-title {
        font-size: 2rem;
        line-height: 1.3;
      }

      .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
      }

      .hero-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      .hero-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
      }

      .cta-title {
        font-size: 1.75rem;
      }

      .cta-description {
        font-size: 1rem;
      }

      .cta-card {
        padding: 2rem 1rem;
      }

      .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
      }

      .platform-icon-wrapper {
        width: 40px;
        height: 40px;
      }

      .platform-icon {
        width: 18px;
        height: 18px;
      }

      .platform-name {
        font-size: 0.75rem;
      }

      .service-item .feature-card {
        padding: 0;
      }

      .card-body-home {
        padding: 1rem;
      }

      .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.75rem;
      }

      .feature-title {
        font-size: 1.05rem;
      }

      .feature-description {
        font-size: 0.8rem;
      }

      .price-amount-home {
        font-size: 1.125rem;
      }

      .service-pricing-home {
        padding: 0.75rem;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.75rem 1.25rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      color: var(--foreground);
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .hero-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      background: rgba(255, 255, 255, 0.15);
    }

    .hero-badge svg {
      color: #10b981;
      flex-shrink: 0;
    }

    /* Card body layout */
    .card-body-home {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .card-body-top {
      flex: 1;
    }

    .card-body-bottom {
      margin-top: auto;
    }

    .service-description-home {
      color: var(--muted-foreground);
      font-size: 0.8rem;
      line-height: 1.55;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Pricing */
    .service-pricing-home {
      padding: 0.875rem;
      background-color: var(--secondary);
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .price-main-home {
      display: flex;
      align-items: baseline;
      gap: 0.375rem;
    }

    .price-amount-home {
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--foreground);
      letter-spacing: -0.02em;
    }

    .price-per-home {
      font-size: 0.75rem;
      color: var(--muted-foreground);
      font-weight: 500;
    }

    .price-rate-home {
      font-size: 0.7rem;
      color: var(--muted-foreground);
      margin-top: 0.125rem;
    }

    /* Card actions */
    .card-actions-home {
      display: flex;
      gap: 0.5rem;
    }

    .card-actions-home .shadcn-button {
      font-size: 0.85rem;
      padding: 0.625rem 1rem;
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .card-actions-home .shadcn-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .shadcn-button.loading {
      position: relative;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .shadcn-button.loading .spinner {
      display: inline-block;
      width: 18px;
      height: 18px;
      border: 2px solid transparent;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      margin-right: 8px;
    }

    .shadcn-button.loading .button-text {
      display: none;
    }

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

    /* Twitch Clips Section Styles */
    .twitch-clips-section {
      padding: 0 0 4rem;
      margin-top: 0;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      position: relative;
      overflow: hidden;
    }

    header + .twitch-clips-section {
      margin-top: 0;
      padding-top: 0;
    }

    .twitch-clips-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 80%, rgba(198, 255, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
      z-index: 0;
    }

    .twitch-clips-section .shadcn-container {
      position: relative;
      z-index: 1;
    }

    .clips-header {
      margin-bottom: 2rem;
      max-width: 2000px;
    }
    
    .clips-header-fullwidth {
      width: 100%;
      padding: 3rem 1rem 0;
      margin-bottom: 2.5rem;
      margin-top: 0;
      box-sizing: border-box;
    }
    
    .clips-subtitle {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.15rem;
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
      font-weight: 400;
    }

    .twitch-clips-section .section-header {
      color: #c6ff1a;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 3.5rem;
    }

    .twitch-clips-section .hero-buttons {
      margin-top: 2.5rem;
      padding-top: 0;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .twitch-clips-section .hero-buttons .shadcn-button.cta-primary {
      color: #000000;
      background: #c6ff1a;
      border: none;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 1.05rem;
      padding: 0.9rem 2.25rem;
      letter-spacing: 0.05em;
      transition: all 0.3s ease;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(198, 255, 26, 0.3);
    }

    .twitch-clips-section .hero-buttons .shadcn-button.cta-primary:hover {
      background: #d4ff4d;
      box-shadow: 0 10px 30px rgba(198, 255, 26, 0.5);
      transform: translateY(-2px);
    }

    .twitch-clips-section .hero-buttons .cta-secondary-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .twitch-clips-section .hero-buttons .cta-secondary-link {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s ease;
      position: relative;
    }

    .twitch-clips-section .hero-buttons .cta-secondary-link:hover {
      color: #ffffff;
    }

    .twitch-clips-section .hero-buttons .cta-separator {
      color: rgba(255, 255, 255, 0.2);
      font-size: 0.75rem;
      user-select: none;
    }

    .clips-container-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
      max-width: 2000px;
      margin: 0 auto;
    }

    .clips-container {
      flex: 1;
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 1rem 0;
    }

    .clips-container::-webkit-scrollbar {
      display: none;
    }

    .clip-item {
      flex: 0 0 calc(100% - 2rem);
      max-width: 700px;
      min-width: 450px;
      scroll-snap-align: start;
      position: relative;
      border-radius: 1px;
      overflow: hidden;
      background-color: var(--card);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .clip-item.active {
      transform: scale(1.02);
      box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    }

    .clip-iframe-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 42.86%; /* ~21:9 aspect ratio - широкий горизонтальный формат */
      background-color: #000;
      overflow: hidden;
    }

    .clip-iframe-wrapper .clip-thumbnail {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
      transition: opacity 0.3s ease;
    }

    .clip-iframe-wrapper iframe.loaded ~ .clip-thumbnail,
    .clip-iframe-wrapper iframe.loaded + .clip-thumbnail {
      opacity: 0;
    }

    .clip-iframe-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .clip-iframe-wrapper iframe.loaded {
      opacity: 1;
    }

    .clip-iframe-wrapper .iframe-loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 0.9rem;
      z-index: 1;
    }

    .clip-iframe-wrapper .iframe-error {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 0.9rem;
      text-align: center;
      padding: 1rem;
      z-index: 2;
    }

    .clip-iframe-wrapper .iframe-error button {
      margin-top: 0.5rem;
      padding: 0.5rem 1rem;
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.85rem;
    }

    .clip-iframe-wrapper .iframe-error button:hover {
      background-color: var(--primary);
      opacity: 0.9;
    }


    .clips-nav-btn {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background-color: var(--card);
      color: var(--foreground);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }

    .clips-nav-btn:hover:not(:disabled) {
      background-color: var(--primary);
      color: var(--primary-foreground);
      transform: scale(1.1);
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .clips-nav-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .clips-loading {
      text-align: center;
      padding: 2rem;
    }

    @media (max-width: 768px) {
      .clips-header-fullwidth {
        padding: 0 1rem;
      }
      
      .twitch-clips-section .section-header {
        font-size: 2.5rem;
      }

      .clips-subtitle {
        font-size: 1rem;
      }
      
      .clips-container-wrapper {
        gap: 0.5rem;
      }

      .clips-nav-btn {
        width: 40px;
        height: 40px;
      }

      .clip-item {
        flex: 0 0 calc(100% - 1rem);
        min-width: 350px;
        max-width: 500px;
      }

      .twitch-clips-section {
        padding: 0 0 3rem;
      }
    }

    @media (max-width: 576px) {
      .clips-header-fullwidth {
        padding: 2rem 0.75rem 0;
      }
      
      .twitch-clips-section .section-header {
        font-size: 1.75rem;
        line-height: 1.2;
      }

      .clips-subtitle {
        font-size: 0.9rem;
      }

      .twitch-clips-section .hero-buttons .shadcn-button.cta-primary {
        font-size: 0.95rem;
        padding: 0.8rem 1.75rem;
      }

      .twitch-clips-section .hero-buttons .cta-secondary-links {
        gap: 1rem;
      }

      .twitch-clips-section .hero-buttons .cta-secondary-link {
        font-size: 0.8rem;
      }
      
      .clips-nav-btn {
        display: none;
      }

      .clips-container {
        padding: 0.5rem 0;
      }

      .clip-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
      }
    }

    /* How It Works Section */
    .how-it-works-section {
      padding: 4rem 0;
      background-color: var(--background);
      border-bottom: 1px solid var(--border);
    }

    .steps-container {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .step-item {
      flex: 1;
      text-align: center;
      padding: 0 1rem;
    }

    .step-number {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: var(--foreground);
      color: var(--background);
      font-weight: 700;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }

    .step-title {
      font-weight: 600;
      font-size: 1.05rem;
      margin-bottom: 0.375rem;
      color: var(--foreground);
    }

    .step-description {
      color: var(--muted-foreground);
      font-size: 0.85rem;
      line-height: 1.5;
      margin-bottom: 0;
    }

    .step-connector {
      flex: 0 0 48px;
      height: 2px;
      background-color: var(--border);
      margin-top: 23px;
      align-self: flex-start;
    }

    @media (max-width: 768px) {
      .how-it-works-section {
        padding: 3rem 0;
      }

      .steps-container {
        flex-direction: column;
        align-items: center;
      }

      .step-item {
        max-width: 280px;
        padding: 0;
      }

      .step-connector {
        flex: none;
        width: 2px;
        height: 24px;
        margin-top: 0;
        align-self: center;
      }
    }

    @media (max-width: 576px) {
      .how-it-works-section {
        padding: 2.5rem 0;
      }

      .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
      }

      .step-title {
        font-size: 0.95rem;
      }

      .step-description {
        font-size: 0.8rem;
      }

      .step-connector {
        height: 20px;
      }
    }

    /* Price label */
    .price-from-home {
      font-size: 0.8rem;
      color: var(--muted-foreground);
      font-weight: 500;
    }

    /* Trust Signals Bar */
    .trust-signals-section {
      padding: 2.5rem 0;
      background-color: var(--card);
      border-bottom: 1px solid var(--border);
    }

    .trust-signals-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .trust-signal-item {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .trust-signal-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--foreground);
    }

    .trust-signal-icon svg {
      width: 20px;
      height: 20px;
    }

    .trust-signal-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
      line-height: 1.2;
    }

    .trust-signal-label {
      font-size: 0.8rem;
      color: var(--muted-foreground);
      line-height: 1.3;
    }

    @media (max-width: 576px) {
      .trust-signals-section {
        padding: 2rem 0;
      }
      .trust-signals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
      }
      .trust-signal-value {
        font-size: 1.25rem;
      }
    }

    /* Testimonials Section */
    .testimonials-section {
      padding: 5rem 0;
      background-color: var(--background);
    }

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

    .testimonial-card {
      background-color: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .testimonial-stars {
      display: flex;
      gap: 2px;
      color: #f59e0b;
      font-size: 0.875rem;
    }

    .testimonial-text {
      color: var(--foreground);
      font-size: 0.9rem;
      line-height: 1.6;
      flex: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .testimonial-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--foreground);
      flex-shrink: 0;
    }

    .testimonial-author-info {
      display: flex;
      flex-direction: column;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--foreground);
    }

    .testimonial-platform {
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .testimonial-verified {
      font-size: 0.7rem;
      color: var(--muted-foreground);
      display: flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.5rem;
    }

    .testimonial-verified svg {
      width: 12px;
      height: 12px;
      color: #22c55e;
    }

    @media (max-width: 768px) {
      .testimonials-section {
        padding: 3rem 0;
      }
      .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
      }
    }

    /* FAQ Section */
    .faq-section {
      padding: 5rem 0;
      background-color: var(--secondary);
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background-color: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .faq-item summary {
      padding: 1rem 1.25rem;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--foreground);
      transition: background-color 0.15s ease;
    }

    .faq-item summary:hover {
      background-color: var(--accent);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--muted-foreground);
      transition: transform 0.2s ease;
      flex-shrink: 0;
      margin-left: 1rem;
    }

    .faq-item[open] summary::after {
      content: '\2212';
    }

    .faq-answer {
      padding: 0 1.25rem 1rem;
      color: var(--muted-foreground);
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (max-width: 576px) {
      .faq-section {
        padding: 3rem 0;
      }
      .faq-item summary {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
      }
      .faq-answer {
        font-size: 0.825rem;
        padding: 0 1rem 0.875rem;
      }
    }
