/* Base styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
    padding-top: 0;
  }
  
  /* Floating decorative elements */
  .floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }
  
  .floating-star {
    position: absolute;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
  }
  
  @keyframes float {
    0%, 100% { 
      transform: translateY(0px) rotate(0deg); 
      opacity: 0.7;
    }
    50% { 
      transform: translateY(-20px) rotate(180deg); 
      opacity: 1;
    }
  }
  
  /* Hero section */
  .hero-section {
    margin-top: 2rem;
  }
  
  .logo-container {
    margin-bottom: 1.5rem;
  }
  
  .floating-star.paw {
      color: transparent;
      text-shadow: 0 0 0 #f7c7ca;
  }
  .floating-star.paw::before {
      position: absolute;
      content: "🐾";
      text-shadow: 0 0 10px #ff8488;
  }
  
  .logo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(255, 154, 158, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
  }
  
  .logo-placeholder i {
    font-size: 2rem;
    color: #fff;
  }
  
  .gradient-text {
    background: linear-gradient(45deg, #ff6b71 0%, #fad0c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
  }
  
  .kawaii-text {
    display: inline-block;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* Badge styling */
  .badge-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .cute-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  /* Card styling */
  .main-card, .try-now-card, .info-card {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .main-card .card-body,
  .info-card .card-body {
    padding: 2.5rem;
  }
  
  /* Instruction steps */
  .instruction-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
  }
  
  .step-content h5 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  /* URL example styling */
  .url-example {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
  }
  
  .url-before, .url-after {
    margin: 0.5rem 0;
  }
  
  .url-before .label, .url-after .label {
    font-weight: 600;
    color: #667eea;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
  }
  
  .url-example code {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
  }
  
  .arrow-down {
    text-align: center;
    color: #667eea;
    font-size: 1.5rem;
    margin: 1rem 0;
  }
  
  /* Feature cards */
  .feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
  
  .feature-icon i {
    font-size: 1.5rem;
    color: white;
  }
  
  .feature-card h5 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  /* Try now card */
  .try-now-card , .main-card , .info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
  }
  
  .try-now-card .card-body {
    padding: 2.5rem;
  }
  
  
  /* Input styling */
  .kawaii-input {
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .kawaii-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  }
  
  .kawaii-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }
  
  .kawaii-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(45deg, #5a67d8, #6b46c1);
  }
  
  /* Links */
  .cute-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .cute-link:hover {
    color: #5a67d8;
    text-decoration: none;
  }
  
  .cute-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
  }
  
  .cute-link:hover::after {
    width: 100%;
  }
  
  /* Bottom mascot */
  .bottom-mascot {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 160px;
    height: auto;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
  
  .bottom-mascot:hover {
    opacity: 1;
  }
  
  /* Footer */
  footer {
    color: rgba(255, 255, 255, 0.8);
  }
  
  footer .cute-link {
    color: rgba(255, 255, 255, 0.9);
  }
  
  footer .cute-link:hover {
    color: white;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    body {
      padding: 1rem 0;
    }
    
    .hero-section {
      margin-top: 1rem;
    }
    
    .instruction-step {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    
    .main-card .card-body,
    .try-now-card .card-body,
    .info-card .card-body {
      padding: 1.5rem;
    }
    
    .badge-container {
      gap: 0.5rem;
    }
    
    .cute-badge {
      font-size: 0.75rem;
      padding: 0.4rem 0.8rem;
    }
    
    .bottom-mascot {
      width: 80px;
      bottom: 10px;
      left: 10px;
    }
  } 