 .ruffle-button {
    /* Layout & Alignment */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    
    /* Styling */
    background-color: #0000FF; /* Ruffle Orange */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    
    /* Effects */
    box-shadow: 0 4px 15px rgba(255, 173, 51, 0.3);
    transition: all 0.3s ease;
  }

  .button-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  /* Hover & Active States */
  .ruffle-button:hover {
    background-color: #ff9900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
  }

  .ruffle-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 153, 0, 0.2);
  }
  